Commit 430d773f authored by Barry Warsaw's avatar Barry Warsaw

PyGC_Dump() -> _PyGC_Dump()

parent 10418eb8
...@@ -262,7 +262,7 @@ typedef struct _gc_head { ...@@ -262,7 +262,7 @@ typedef struct _gc_head {
/* Get the object given the PyGC_Head */ /* Get the object given the PyGC_Head */
#define PyObject_FROM_GC(g) ((PyObject *)(((PyGC_Head *)g)+1)) #define PyObject_FROM_GC(g) ((PyObject *)(((PyGC_Head *)g)+1))
extern DL_IMPORT(void) PyGC_Dump(PyGC_Head *); extern DL_IMPORT(void) _PyGC_Dump(PyGC_Head *);
#endif /* WITH_CYCLE_GC */ #endif /* WITH_CYCLE_GC */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment