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
7759a0cd
Kaydet (Commit)
7759a0cd
authored
Ock 28, 2008
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Factor-out common code with a new macro
üst
52716c94
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
setobject.h
Include/setobject.h
+2
-0
setobject.c
Objects/setobject.c
+4
-4
No files found.
Include/setobject.h
Dosyayı görüntüle @
7759a0cd
...
...
@@ -73,6 +73,8 @@ PyAPI_DATA(PyTypeObject) PyFrozenSet_Type;
(Py_TYPE(ob) == &PySet_Type || Py_TYPE(ob) == &PyFrozenSet_Type || \
PyType_IsSubtype(Py_TYPE(ob), &PySet_Type) || \
PyType_IsSubtype(Py_TYPE(ob), &PyFrozenSet_Type))
#define PySet_Check(ob) \
(Py_TYPE(ob) == &PySet_Type || PyType_IsSubtype(Py_TYPE(ob), &PySet_Type))
PyAPI_FUNC
(
PyObject
*
)
PySet_New
(
PyObject
*
);
PyAPI_FUNC
(
PyObject
*
)
PyFrozenSet_New
(
PyObject
*
);
...
...
Objects/setobject.c
Dosyayı görüntüle @
7759a0cd
...
...
@@ -2158,7 +2158,7 @@ PySet_Size(PyObject *anyset)
int
PySet_Clear
(
PyObject
*
set
)
{
if
(
!
Py
Type_IsSubtype
(
Py_TYPE
(
set
),
&
PySet_Type
))
{
if
(
!
Py
Set_Check
(
set
))
{
PyErr_BadInternalCall
();
return
-
1
;
}
...
...
@@ -2178,7 +2178,7 @@ PySet_Contains(PyObject *anyset, PyObject *key)
int
PySet_Discard
(
PyObject
*
set
,
PyObject
*
key
)
{
if
(
!
Py
Type_IsSubtype
(
Py_TYPE
(
set
),
&
PySet_Type
))
{
if
(
!
Py
Set_Check
(
set
))
{
PyErr_BadInternalCall
();
return
-
1
;
}
...
...
@@ -2229,7 +2229,7 @@ _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, long *hash)
PyObject
*
PySet_Pop
(
PyObject
*
set
)
{
if
(
!
Py
Type_IsSubtype
(
Py_TYPE
(
set
),
&
PySet_Type
))
{
if
(
!
Py
Set_Check
(
set
))
{
PyErr_BadInternalCall
();
return
NULL
;
}
...
...
@@ -2239,7 +2239,7 @@ PySet_Pop(PyObject *set)
int
_PySet_Update
(
PyObject
*
set
,
PyObject
*
iterable
)
{
if
(
!
Py
Type_IsSubtype
(
Py_TYPE
(
set
),
&
PySet_Type
))
{
if
(
!
Py
Set_Check
(
set
))
{
PyErr_BadInternalCall
();
return
-
1
;
}
...
...
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