summaryrefslogtreecommitdiffstats
path: root/Include/object.h
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-08-24 19:07:07 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-08-24 19:07:07 (GMT)
commit9d95254bb7f65e0afe13547b6741b6bddab8228b (patch)
treeb051dc4fedebcef406dd309c113901841dbc0b51 /Include/object.h
parentf5e30d8b54cdc07c53ffa741353a83ed3263d7d2 (diff)
downloadcpython-9d95254bb7f65e0afe13547b6741b6bddab8228b.zip
cpython-9d95254bb7f65e0afe13547b6741b6bddab8228b.tar.gz
cpython-9d95254bb7f65e0afe13547b6741b6bddab8228b.tar.bz2
Issue #18772: fix the gdb plugin after the set implementation changes
Diffstat (limited to 'Include/object.h')
-rw-r--r--Include/object.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/object.h b/Include/object.h
index 25b96e8..7f3fdb0 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -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--