Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
1f11cf95
Unverified
Kaydet (Commit)
1f11cf95
authored
Haz 11, 2019
tarafından
Raymond Hettinger
Kaydeden (comit)
GitHub
Haz 11, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-37219: Remove erroneous optimization for differencing an empty set (GH-13965)
üst
408a2ef1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
8 deletions
+7
-8
test_set.py
Lib/test/test_set.py
+6
-0
2019-06-10-23-18-31.bpo-37219.jPSufq.rst
...ore and Builtins/2019-06-10-23-18-31.bpo-37219.jPSufq.rst
+1
-0
setobject.c
Objects/setobject.c
+0
-8
No files found.
Lib/test/test_set.py
Dosyayı görüntüle @
1f11cf95
...
...
@@ -895,6 +895,12 @@ class TestBasicOps:
self
.
assertEqual
(
self
.
set
,
copy
,
"
%
s !=
%
s"
%
(
self
.
set
,
copy
))
def
test_issue_37219
(
self
):
with
self
.
assertRaises
(
TypeError
):
set
()
.
difference
(
123
)
with
self
.
assertRaises
(
TypeError
):
set
()
.
difference_update
(
123
)
#------------------------------------------------------------------------------
class
TestBasicOpsEmpty
(
TestBasicOps
,
unittest
.
TestCase
):
...
...
Misc/NEWS.d/next/Core and Builtins/2019-06-10-23-18-31.bpo-37219.jPSufq.rst
0 → 100644
Dosyayı görüntüle @
1f11cf95
Remove errorneous optimization for empty set differences.
Objects/setobject.c
Dosyayı görüntüle @
1f11cf95
...
...
@@ -1456,10 +1456,6 @@ PyDoc_STRVAR(isdisjoint_doc,
static
int
set_difference_update_internal
(
PySetObject
*
so
,
PyObject
*
other
)
{
if
(
PySet_GET_SIZE
(
so
)
==
0
)
{
return
0
;
}
if
((
PyObject
*
)
so
==
other
)
return
set_clear_internal
(
so
);
...
...
@@ -1534,10 +1530,6 @@ set_difference(PySetObject *so, PyObject *other)
Py_ssize_t
pos
=
0
,
other_size
;
int
rv
;
if
(
PySet_GET_SIZE
(
so
)
==
0
)
{
return
set_copy
(
so
,
NULL
);
}
if
(
PyAnySet_Check
(
other
))
{
other_size
=
PySet_GET_SIZE
(
other
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment