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
0e7a632f
Kaydet (Commit)
0e7a632f
authored
Şub 08, 2007
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bypass set specific optimizations for set and frozenset subclasses.
üst
6d121f16
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
setobject.c
Objects/setobject.c
+7
-7
No files found.
Objects/setobject.c
Dosyayı görüntüle @
0e7a632f
...
...
@@ -912,7 +912,7 @@ set_update_internal(PySetObject *so, PyObject *other)
{
PyObject
*
key
,
*
it
;
if
(
PyAnySet_Check
(
other
))
if
(
PyAnySet_Check
Exact
(
other
))
return
set_merge
(
so
,
other
);
if
(
PyDict_CheckExact
(
other
))
{
...
...
@@ -1190,7 +1190,7 @@ set_intersection(PySetObject *so, PyObject *other)
if
(
result
==
NULL
)
return
NULL
;
if
(
PyAnySet_Check
(
other
))
{
if
(
PyAnySet_Check
Exact
(
other
))
{
Py_ssize_t
pos
=
0
;
setentry
*
entry
;
...
...
@@ -1314,7 +1314,7 @@ set_difference_update_internal(PySetObject *so, PyObject *other)
if
((
PyObject
*
)
so
==
other
)
return
set_clear_internal
(
so
);
if
(
PyAnySet_Check
(
other
))
{
if
(
PyAnySet_Check
Exact
(
other
))
{
setentry
*
entry
;
Py_ssize_t
pos
=
0
;
...
...
@@ -1363,7 +1363,7 @@ set_difference(PySetObject *so, PyObject *other)
setentry
*
entry
;
Py_ssize_t
pos
=
0
;
if
(
!
PyAnySet_Check
(
other
)
&&
!
PyDict_CheckExact
(
other
))
{
if
(
!
PyAnySet_Check
Exact
(
other
)
&&
!
PyDict_CheckExact
(
other
))
{
result
=
set_copy
(
so
);
if
(
result
==
NULL
)
return
NULL
;
...
...
@@ -1472,7 +1472,7 @@ set_symmetric_difference_update(PySetObject *so, PyObject *other)
Py_RETURN_NONE
;
}
if
(
PyAnySet_Check
(
other
))
{
if
(
PyAnySet_Check
Exact
(
other
))
{
Py_INCREF
(
other
);
otherset
=
(
PySetObject
*
)
other
;
}
else
{
...
...
@@ -1555,7 +1555,7 @@ set_issubset(PySetObject *so, PyObject *other)
setentry
*
entry
;
Py_ssize_t
pos
=
0
;
if
(
!
PyAnySet_Check
(
other
))
{
if
(
!
PyAnySet_Check
Exact
(
other
))
{
PyObject
*
tmp
,
*
result
;
tmp
=
make_new_set
(
&
PySet_Type
,
other
);
if
(
tmp
==
NULL
)
...
...
@@ -1584,7 +1584,7 @@ set_issuperset(PySetObject *so, PyObject *other)
{
PyObject
*
tmp
,
*
result
;
if
(
!
PyAnySet_Check
(
other
))
{
if
(
!
PyAnySet_Check
Exact
(
other
))
{
tmp
=
make_new_set
(
&
PySet_Type
,
other
);
if
(
tmp
==
NULL
)
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