diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-07-07 16:52:50 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-07-07 16:52:50 (GMT) |
commit | a6269a8ec5259aca453e8964464e2177d2a32fa2 (patch) | |
tree | 357efb380cadd0b77e96b60c6b7d3c0cf92a356f /Objects | |
parent | 6d0a4c79cff39f45b6990b3dcb6bd653950a8014 (diff) | |
download | cpython-a6269a8ec5259aca453e8964464e2177d2a32fa2.zip cpython-a6269a8ec5259aca453e8964464e2177d2a32fa2.tar.gz cpython-a6269a8ec5259aca453e8964464e2177d2a32fa2.tar.bz2 |
Removed 3 unlikely #includes that were only needed for the non-gc flavor
of the trashcan code.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/object.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Objects/object.c b/Objects/object.c index 6a77e88..4cc9f6a 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -7,11 +7,6 @@ #include "macglue.h" #endif -/* just for trashcan: */ -#include "compile.h" -#include "frameobject.h" -#include "traceback.h" - #if defined( Py_TRACE_REFS ) || defined( Py_REF_DEBUG ) DL_IMPORT(long) _Py_RefTotal; #endif |