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
6a1c87dd
Kaydet (Commit)
6a1c87dd
authored
Mar 23, 2001
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add the necessary field for weak reference support to the function and
method types.
üst
4131830c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
classobject.h
Include/classobject.h
+1
-0
funcobject.h
Include/funcobject.h
+1
-0
No files found.
Include/classobject.h
Dosyayı görüntüle @
6a1c87dd
...
...
@@ -32,6 +32,7 @@ typedef struct {
PyObject
*
im_func
;
/* The callable object implementing the method */
PyObject
*
im_self
;
/* The instance it is bound to, or NULL */
PyObject
*
im_class
;
/* The class that defined the method */
PyObject
*
im_weakreflist
;
/* List of weak references */
}
PyMethodObject
;
extern
DL_IMPORT
(
PyTypeObject
)
PyClass_Type
,
PyInstance_Type
,
PyMethod_Type
;
...
...
Include/funcobject.h
Dosyayı görüntüle @
6a1c87dd
...
...
@@ -16,6 +16,7 @@ typedef struct {
PyObject
*
func_doc
;
PyObject
*
func_name
;
PyObject
*
func_dict
;
PyObject
*
func_weakreflist
;
}
PyFunctionObject
;
extern
DL_IMPORT
(
PyTypeObject
)
PyFunction_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