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
f11b25b0
Kaydet (Commit)
f11b25b0
authored
Mar 04, 2016
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
properly use the ObjArgs variant of CallMethod in dictview binary operations (closes #26478)
üst
25c0ef51
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
5 deletions
+11
-5
test_dictviews.py
Lib/test/test_dictviews.py
+4
-0
NEWS
Misc/NEWS
+3
-0
dictobject.c
Objects/dictobject.c
+4
-5
No files found.
Lib/test/test_dictviews.py
Dosyayı görüntüle @
f11b25b0
...
...
@@ -97,6 +97,7 @@ class DictSetTest(unittest.TestCase):
self
.
assertEqual
(
d1
.
keys
()
&
set
(
d1
.
keys
()),
{
'a'
,
'b'
})
self
.
assertEqual
(
d1
.
keys
()
&
set
(
d2
.
keys
()),
{
'b'
})
self
.
assertEqual
(
d1
.
keys
()
&
set
(
d3
.
keys
()),
set
())
self
.
assertEqual
(
d1
.
keys
()
&
tuple
(
d1
.
keys
()),
{
'a'
,
'b'
})
self
.
assertEqual
(
d1
.
keys
()
|
d1
.
keys
(),
{
'a'
,
'b'
})
self
.
assertEqual
(
d1
.
keys
()
|
d2
.
keys
(),
{
'a'
,
'b'
,
'c'
})
...
...
@@ -105,6 +106,7 @@ class DictSetTest(unittest.TestCase):
self
.
assertEqual
(
d1
.
keys
()
|
set
(
d2
.
keys
()),
{
'a'
,
'b'
,
'c'
})
self
.
assertEqual
(
d1
.
keys
()
|
set
(
d3
.
keys
()),
{
'a'
,
'b'
,
'd'
,
'e'
})
self
.
assertEqual
(
d1
.
keys
()
|
(
1
,
2
),
{
'a'
,
'b'
,
1
,
2
})
self
.
assertEqual
(
d1
.
keys
()
^
d1
.
keys
(),
set
())
self
.
assertEqual
(
d1
.
keys
()
^
d2
.
keys
(),
{
'a'
,
'c'
})
...
...
@@ -113,6 +115,7 @@ class DictSetTest(unittest.TestCase):
self
.
assertEqual
(
d1
.
keys
()
^
set
(
d2
.
keys
()),
{
'a'
,
'c'
})
self
.
assertEqual
(
d1
.
keys
()
^
set
(
d3
.
keys
()),
{
'a'
,
'b'
,
'd'
,
'e'
})
self
.
assertEqual
(
d1
.
keys
()
^
tuple
(
d2
.
keys
()),
{
'a'
,
'c'
})
self
.
assertEqual
(
d1
.
keys
()
-
d1
.
keys
(),
set
())
self
.
assertEqual
(
d1
.
keys
()
-
d2
.
keys
(),
{
'a'
})
...
...
@@ -120,6 +123,7 @@ class DictSetTest(unittest.TestCase):
self
.
assertEqual
(
d1
.
keys
()
-
set
(
d1
.
keys
()),
set
())
self
.
assertEqual
(
d1
.
keys
()
-
set
(
d2
.
keys
()),
{
'a'
})
self
.
assertEqual
(
d1
.
keys
()
-
set
(
d3
.
keys
()),
{
'a'
,
'b'
})
self
.
assertEqual
(
d1
.
keys
()
-
(
0
,
1
),
{
'a'
,
'b'
})
self
.
assertFalse
(
d1
.
keys
()
.
isdisjoint
(
d1
.
keys
()))
self
.
assertFalse
(
d1
.
keys
()
.
isdisjoint
(
d2
.
keys
()))
...
...
Misc/NEWS
Dosyayı görüntüle @
f11b25b0
...
...
@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins
-----------------
- Issue #26478: Fix semantic bugs when using binary operators with dictionary
views and tuples.
- Issue #26171: Fix possible integer overflow and heap corruption in
zipimporter.get_data().
...
...
Objects/dictobject.c
Dosyayı görüntüle @
f11b25b0
...
...
@@ -3394,7 +3394,7 @@ dictviews_sub(PyObject* self, PyObject *other)
if
(
result
==
NULL
)
return
NULL
;
tmp
=
_PyObject_CallMethodId
(
result
,
&
PyId_difference_update
,
"O"
,
other
);
tmp
=
_PyObject_CallMethodId
ObjArgs
(
result
,
&
PyId_difference_update
,
other
,
NULL
);
if
(
tmp
==
NULL
)
{
Py_DECREF
(
result
);
return
NULL
;
...
...
@@ -3414,7 +3414,7 @@ dictviews_and(PyObject* self, PyObject *other)
if
(
result
==
NULL
)
return
NULL
;
tmp
=
_PyObject_CallMethodId
(
result
,
&
PyId_intersection_update
,
"O"
,
other
);
tmp
=
_PyObject_CallMethodId
ObjArgs
(
result
,
&
PyId_intersection_update
,
other
,
NULL
);
if
(
tmp
==
NULL
)
{
Py_DECREF
(
result
);
return
NULL
;
...
...
@@ -3434,7 +3434,7 @@ dictviews_or(PyObject* self, PyObject *other)
if
(
result
==
NULL
)
return
NULL
;
tmp
=
_PyObject_CallMethodId
(
result
,
&
PyId_update
,
"O"
,
other
);
tmp
=
_PyObject_CallMethodId
ObjArgs
(
result
,
&
PyId_update
,
other
,
NULL
);
if
(
tmp
==
NULL
)
{
Py_DECREF
(
result
);
return
NULL
;
...
...
@@ -3454,8 +3454,7 @@ dictviews_xor(PyObject* self, PyObject *other)
if
(
result
==
NULL
)
return
NULL
;
tmp
=
_PyObject_CallMethodId
(
result
,
&
PyId_symmetric_difference_update
,
"O"
,
other
);
tmp
=
_PyObject_CallMethodIdObjArgs
(
result
,
&
PyId_symmetric_difference_update
,
other
,
NULL
);
if
(
tmp
==
NULL
)
{
Py_DECREF
(
result
);
return
NULL
;
...
...
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