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
d4ba73c7
Kaydet (Commit)
d4ba73c7
authored
Tem 10, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Move the definition of PyMethodObject to classobject.h, so it can define
macros for more efficient access to the fields.
üst
92233516
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
8 deletions
+16
-8
classobject.h
Include/classobject.h
+16
-0
classobject.c
Objects/classobject.c
+0
-8
No files found.
Include/classobject.h
Dosyayı görüntüle @
d4ba73c7
...
...
@@ -56,6 +56,13 @@ typedef struct {
PyObject
*
in_dict
;
/* A dictionary */
}
PyInstanceObject
;
typedef
struct
{
PyObject_HEAD
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 */
}
PyMethodObject
;
extern
DL_IMPORT
(
PyTypeObject
)
PyClass_Type
,
PyInstance_Type
,
PyMethod_Type
;
#define PyClass_Check(op) ((op)->ob_type == &PyClass_Type)
...
...
@@ -70,6 +77,15 @@ extern PyObject *PyMethod_Function Py_PROTO((PyObject *));
extern
PyObject
*
PyMethod_Self
Py_PROTO
((
PyObject
*
));
extern
PyObject
*
PyMethod_Class
Py_PROTO
((
PyObject
*
));
/* Macros for direct access to these values. Type checks are *not*
done, so use with care. */
#define PyMethod_GET_FUNCTION(meth) \
(((PyMethodObject *)meth) -> im_func)
#define PyMethod_GET_SELF(meth) \
(((PyMethodObject *)meth) -> im_self)
#define PyMethod_GET_CLASS(meth) \
(((PyMethodObject *)meth) -> im_class)
extern
int
PyClass_IsSubclass
Py_PROTO
((
PyObject
*
,
PyObject
*
));
extern
PyObject
*
PyInstance_DoBinOp
...
...
Objects/classobject.c
Dosyayı görüntüle @
d4ba73c7
...
...
@@ -1411,14 +1411,6 @@ PyTypeObject PyInstance_Type = {
In case (b), im_self is NULL
*/
typedef
struct
{
PyObject_HEAD
PyObject
*
im_func
;
/* The function implementing the method */
PyObject
*
im_self
;
/* The instance it is bound to, or NULL */
PyObject
*
im_class
;
/* The class that defined the method */
}
PyMethodObject
;
static
PyMethodObject
*
free_list
;
PyObject
*
...
...
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