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
a25e5e9a
Kaydet (Commit)
a25e5e9a
authored
Eyl 06, 1996
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
PyMapping_DelItem[String] are actually macros.
üst
ed227f05
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
abstract.h
Include/abstract.h
+6
-2
No files found.
Include/abstract.h
Dosyayı görüntüle @
a25e5e9a
...
@@ -762,21 +762,25 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
...
@@ -762,21 +762,25 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
this is equivalent to the Python expression: len(o).
this is equivalent to the Python expression: len(o).
*/
*/
/* implemented as a macro:
int PyMapping_DelItemString Py_PROTO((PyObject *o, char *key));
int PyMapping_DelItemString Py_PROTO((PyObject *o, char *key));
/*
Remove the mapping for object, key, from the object *o.
Remove the mapping for object, key, from the object *o.
Returns -1 on failure. This is equivalent to
Returns -1 on failure. This is equivalent to
the Python statement: del o[key].
the Python statement: del o[key].
*/
*/
#define PyMapping_DelItemString(O,K) PyDict_DelItemString((O),(K))
/* implemented as a macro:
int PyMapping_DelItem Py_PROTO((PyObject *o, PyObject *key));
int PyMapping_DelItem Py_PROTO((PyObject *o, PyObject *key));
/*
Remove the mapping for object, key, from the object *o.
Remove the mapping for object, key, from the object *o.
Returns -1 on failure. This is equivalent to
Returns -1 on failure. This is equivalent to
the Python statement: del o[key].
the Python statement: del o[key].
*/
*/
#define PyMapping_DelItem(O,K) PyDict_DelItem((O),(K))
int
PyMapping_HasKeyString
Py_PROTO
((
PyObject
*
o
,
char
*
key
));
int
PyMapping_HasKeyString
Py_PROTO
((
PyObject
*
o
,
char
*
key
));
...
...
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