summaryrefslogtreecommitdiff
path: root/Include/objimpl.h
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-08-03 13:03:24 +0000
committerJack Jansen <jack.jansen@cwi.nl>2001-08-03 13:03:24 +0000
commit02f52cac89461b365e5e6d07796b08bcf5ad46de (patch)
tree825e4493491a5795235c19f53190706bfbd832e7 /Include/objimpl.h
parentbe9c2cb2b4b6f2ad4fe6cc2439187ce739fc788a (diff)
downloadcpython-02f52cac89461b365e5e6d07796b08bcf5ad46de.tar.gz
Removed duplicate definnitions of PyObject_AS_GC and PyObject_FROM_GC (occurred only if GC was off).
Diffstat (limited to 'Include/objimpl.h')
-rw-r--r--Include/objimpl.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/objimpl.h b/Include/objimpl.h
index 18cece8e25..8736081fa7 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))