From 49417e76d5fd52b1814db1b7be4cb6f4939a8c65 Mon Sep 17 00:00:00 2001 From: Neil Schemenauer Date: Mon, 3 Sep 2001 15:44:48 +0000 Subject: Fix the names of _PyObject_GC_TRACK and _PyObject_GC_UNTRACK when the GC is disabled. Obviously everyone enables the GC. :-) --- Include/objimpl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Include/objimpl.h b/Include/objimpl.h index c708910..89e1c0a 100644 --- a/Include/objimpl.h +++ b/Include/objimpl.h @@ -283,8 +283,8 @@ extern PyGC_Head _PyGC_generation0; #define PyObject_GC_New PyObject_New #define PyObject_GC_NewVar PyObject_NewVar #define PyObject_GC_Del PyObject_Del -#define PyObject_GC_TRACK(op) -#define PyObject_GC_UNTRACK(op) +#define _PyObject_GC_TRACK(op) +#define _PyObject_GC_UNTRACK(op) #define PyObject_GC_Track(op) #define PyObject_GC_UnTrack(op) -- cgit v0.12