diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/object.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Include/object.h b/Include/object.h index 6ec3cbf..4bbcf00 100644 --- a/Include/object.h +++ b/Include/object.h @@ -115,11 +115,6 @@ typedef struct { #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type) #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size) -/* B/w compatibility */ -#define Py_Refcnt(ob) Py_REFCNT(op) -#define Py_Type(op) Py_TYPE(op) -#define Py_Size(op) Py_SIZE(op) - /* Type objects contain a string containing the type name (to help somewhat in debugging), the allocation parameters (see PyObject_New() and |