From a6269a8ec5259aca453e8964464e2177d2a32fa2 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Sun, 7 Jul 2002 16:52:50 +0000 Subject: [PATCH] Removed 3 unlikely #includes that were only needed for the non-gc flavor of the trashcan code. --- Objects/object.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Objects/object.c b/Objects/object.c index 6a77e882aa0..4cc9f6a9178 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