summaryrefslogtreecommitdiffstats
path: root/Objects/setobject.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2005-08-16 03:54:11 (GMT)
committerRaymond Hettinger <python@rcn.com>2005-08-16 03:54:11 (GMT)
commit994c2c1c69d86ca1b94a489ba573078297996a6d (patch)
tree050784f35e753f80ff9dee059d842bb18345a2ac /Objects/setobject.c
parentbeb3101b051e415cb18ba844e0187a8caa7ac3fd (diff)
downloadcpython-994c2c1c69d86ca1b94a489ba573078297996a6d.zip
cpython-994c2c1c69d86ca1b94a489ba573078297996a6d.tar.gz
cpython-994c2c1c69d86ca1b94a489ba573078297996a6d.tar.bz2
DECREF --> XDECREF
Diffstat (limited to 'Objects/setobject.c')
-rw-r--r--Objects/setobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c
index 978d613..879b4e1 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -1939,7 +1939,7 @@ PyFrozenSet_New(PyObject *iterable)
return NULL;
}
result = frozenset_new(&PyFrozenSet_Type, args, NULL);
- Py_DECREF(args);
+ Py_XDECREF(args);
return result;
}