mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Fix the names of _PyObject_GC_TRACK and _PyObject_GC_UNTRACK when the GC is
disabled. Obviously everyone enables the GC. :-)
This commit is contained in:
parent
0628a66c75
commit
49417e76d5
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue