diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-03 13:03:24 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-03 13:03:24 (GMT) |
commit | 5756ee0fe6f30cee4439d36db0a98317a3a899b2 (patch) | |
tree | d8e97238c1adc7d82abefb381ecd3d188e09ee43 /Include | |
parent | 2aadd366417403555755ad03f9bfd2fed66edcd9 (diff) | |
download | cpython-5756ee0fe6f30cee4439d36db0a98317a3a899b2.zip cpython-5756ee0fe6f30cee4439d36db0a98317a3a899b2.tar.gz cpython-5756ee0fe6f30cee4439d36db0a98317a3a899b2.tar.bz2 |
Removed duplicate definnitions of PyObject_AS_GC and PyObject_FROM_GC (occurred only if GC was off).
Diffstat (limited to 'Include')
-rw-r--r-- | Include/objimpl.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/objimpl.h b/Include/objimpl.h index 18cece8..8736081 100644 --- a/Include/objimpl.h +++ b/Include/objimpl.h @@ -238,8 +238,6 @@ extern DL_IMPORT(void) _PyObject_Del(PyObject *); #define PyObject_FROM_GC(op) (op) #define PyType_IS_GC(t) 0 #define PyObject_IS_GC(o) 0 -#define PyObject_AS_GC(o) (o) -#define PyObject_FROM_GC(o) (o) #define PyType_BASICSIZE(t) ((t)->tp_basicsize) #define PyType_SET_BASICSIZE(t, s) ((t)->tp_basicsize = (s)) |