[Python-checkins] python/dist/src/Objects object.c,2.181,2.182

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Sun, 07 Jul 2002 09:52:53 -0700


Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv14374/python/Objects

Modified Files:
	object.c 
Log Message:
Removed 3 unlikely #includes that were only needed for the non-gc flavor
of the trashcan code.


Index: object.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/object.c,v
retrieving revision 2.181
retrieving revision 2.182
diff -C2 -d -r2.181 -r2.182
*** object.c	7 Jul 2002 05:13:56 -0000	2.181
--- object.c	7 Jul 2002 16:52:50 -0000	2.182
***************
*** 8,16 ****
  #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;
--- 8,11 ----