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
3fbec701
Kaydet (Commit)
3fbec701
authored
Kas 21, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
issubset() and issuperset() to work with general iterables
üst
82d73dd4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
5 deletions
+19
-5
test_set.py
Lib/test/test_set.py
+4
-0
setobject.c
Objects/setobject.c
+15
-5
No files found.
Lib/test/test_set.py
Dosyayı görüntüle @
3fbec701
...
...
@@ -143,6 +143,10 @@ class TestJointOps(unittest.TestCase):
self
.
failIf
(
q
<=
r
)
self
.
failIf
(
q
>
r
)
self
.
failIf
(
q
>=
r
)
self
.
assert_
(
set
(
'a'
)
.
issubset
(
'abc'
))
self
.
assert_
(
set
(
'abc'
)
.
issuperset
(
'a'
))
self
.
failIf
(
set
(
'a'
)
.
issubset
(
'cbs'
))
self
.
failIf
(
set
(
'cbs'
)
.
issuperset
(
'a'
))
def
test_pickling
(
self
):
p
=
pickle
.
dumps
(
self
.
s
)
...
...
Objects/setobject.c
Dosyayı görüntüle @
3fbec701
...
...
@@ -588,11 +588,15 @@ set_ixor(PySetObject *so, PyObject *other)
static
PyObject
*
set_issubset
(
PySetObject
*
so
,
PyObject
*
other
)
{
PyObject
*
otherdata
,
*
it
,
*
item
;
PyObject
*
otherdata
,
*
it
,
*
item
,
*
tmp
,
*
result
;
if
(
!
PyAnySet_Check
(
other
))
{
PyErr_SetString
(
PyExc_TypeError
,
"can only compare to a set"
);
return
NULL
;
tmp
=
make_new_set
(
&
PySet_Type
,
other
);
if
(
tmp
==
NULL
)
return
NULL
;
result
=
set_issubset
(
so
,
tmp
);
Py_DECREF
(
tmp
);
return
result
;
}
if
(
set_len
(
so
)
>
set_len
((
PySetObject
*
)
other
))
Py_RETURN_FALSE
;
...
...
@@ -621,9 +625,15 @@ PyDoc_STRVAR(issubset_doc, "Report whether another set contains this set.");
static
PyObject
*
set_issuperset
(
PySetObject
*
so
,
PyObject
*
other
)
{
PyObject
*
tmp
,
*
result
;
if
(
!
PyAnySet_Check
(
other
))
{
PyErr_SetString
(
PyExc_TypeError
,
"can only compare to a set"
);
return
NULL
;
tmp
=
make_new_set
(
&
PySet_Type
,
other
);
if
(
tmp
==
NULL
)
return
NULL
;
result
=
set_issuperset
(
so
,
tmp
);
Py_DECREF
(
tmp
);
return
result
;
}
return
set_issubset
((
PySetObject
*
)
other
,
(
PyObject
*
)
so
);
}
...
...
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