summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
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 /Objects/object.c
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 'Objects/object.c')
-rw-r--r--Objects/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c
index 81d6d4b..0561e09 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -22,7 +22,7 @@ _Py_GetRefTotal(void)
o = _PyDict_Dummy();
if (o != NULL)
total -= o->ob_refcnt;
- o = _PySet_Dummy();
+ o = _PySet_Dummy;
if (o != NULL)
total -= o->ob_refcnt;
return total;