projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0628a66
)
Fix the names of _PyObject_GC_TRACK and _PyObject_GC_UNTRACK when the GC is
author
Neil Schemenauer
<nascheme@enme.ucalgary.ca>
Mon, 3 Sep 2001 15:44:48 +0000
(15:44 +0000)
committer
Neil Schemenauer
<nascheme@enme.ucalgary.ca>
Mon, 3 Sep 2001 15:44:48 +0000
(15:44 +0000)
disabled. Obviously everyone enables the GC. :-)
Include/objimpl.h
patch
|
blob
|
history
diff --git
a/Include/objimpl.h
b/Include/objimpl.h
index c708910bd88d86752e66b53cec7c0fd608fddd70..89e1c0a4804e48d67da39918f5fd960d151a1a8f 100644
(file)
--- 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)