Issue #18772: fix the gdb plugin after the set implementation changes

This commit is contained in:
Antoine Pitrou 2013-08-24 21:07:07 +02:00
parent f5e30d8b54
commit 9d95254bb7
5 changed files with 26 additions and 31 deletions

View file

@ -706,7 +706,6 @@ PyAPI_DATA(Py_ssize_t) _Py_RefTotal;
PyAPI_FUNC(void) _Py_NegativeRefcount(const char *fname,
int lineno, PyObject *op);
PyAPI_FUNC(PyObject *) _PyDict_Dummy(void);
PyAPI_FUNC(PyObject *) _PySet_Dummy(void);
PyAPI_FUNC(Py_ssize_t) _Py_GetRefTotal(void);
#define _Py_INC_REFTOTAL _Py_RefTotal++
#define _Py_DEC_REFTOTAL _Py_RefTotal--