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
0693dd23
Kaydet (Commit)
0693dd23
authored
Agu 09, 1996
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added tp_getattro, tp_setattro (Sjoerd)
üst
9dc78339
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
object.h
Include/object.h
+4
-2
No files found.
Include/object.h
Dosyayı görüntüle @
0693dd23
...
...
@@ -185,7 +185,9 @@ typedef struct {
typedef
void
(
*
destructor
)
Py_PROTO
((
PyObject
*
));
typedef
int
(
*
printfunc
)
Py_PROTO
((
PyObject
*
,
FILE
*
,
int
));
typedef
PyObject
*
(
*
getattrfunc
)
Py_PROTO
((
PyObject
*
,
char
*
));
typedef
PyObject
*
(
*
getattrofunc
)
Py_PROTO
((
PyObject
*
,
PyObject
*
));
typedef
int
(
*
setattrfunc
)
Py_PROTO
((
PyObject
*
,
char
*
,
PyObject
*
));
typedef
int
(
*
setattrofunc
)
Py_PROTO
((
PyObject
*
,
PyObject
*
,
PyObject
*
));
typedef
int
(
*
cmpfunc
)
Py_PROTO
((
PyObject
*
,
PyObject
*
));
typedef
PyObject
*
(
*
reprfunc
)
Py_PROTO
((
PyObject
*
));
typedef
long
(
*
hashfunc
)
Py_PROTO
((
PyObject
*
));
...
...
@@ -215,10 +217,10 @@ typedef struct _typeobject {
hashfunc
tp_hash
;
ternaryfunc
tp_call
;
reprfunc
tp_str
;
getattrofunc
tp_getattro
;
setattrofunc
tp_setattro
;
/* Space for future expansion */
long
tp_xxx1
;
long
tp_xxx2
;
long
tp_xxx3
;
long
tp_xxx4
;
...
...
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