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
5dbc7231
Kaydet (Commit)
5dbc7231
authored
Nis 23, 1995
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
DL_IMPORT macro was called in a funny way (and MW barfed on it)
üst
d39f5f64
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
object.h
Include/object.h
+2
-2
tupleobject.h
Include/tupleobject.h
+1
-1
No files found.
Include/object.h
Dosyayı görüntüle @
5dbc7231
...
...
@@ -237,7 +237,7 @@ typedef struct _typeobject {
#endif
}
PyTypeObject
;
extern
DL_IMPORT
(
PyTypeObject
)
PyType_Type
;
/* The type of type objects */
extern
DL_IMPORT
PyTypeObject
PyType_Type
;
/* The type of type objects */
#define PyType_Check(op) ((op)->ob_type == &PyType_Type)
...
...
@@ -354,7 +354,7 @@ where NULL (nil) is not suitable (since NULL often means 'error').
Don't forget to apply Py_INCREF() when returning this value!!!
*/
extern
DL_IMPORT
(
PyObject
)
_Py_NoneStruct
;
/* Don't use this directly */
extern
DL_IMPORT
PyObject
_Py_NoneStruct
;
/* Don't use this directly */
#define Py_None (&_Py_NoneStruct)
...
...
Include/tupleobject.h
Dosyayı görüntüle @
5dbc7231
...
...
@@ -49,7 +49,7 @@ typedef struct {
PyObject
*
ob_item
[
1
];
}
PyTupleObject
;
extern
DL_IMPORT
(
PyTypeObject
)
PyTuple_Type
;
extern
DL_IMPORT
PyTypeObject
PyTuple_Type
;
#define PyTuple_Check(op) ((op)->ob_type == &PyTuple_Type)
...
...
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