aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2005-08-16 03:54:11 +0000
committerRaymond Hettinger <python@rcn.com>2005-08-16 03:54:11 +0000
commit994c2c1c69d86ca1b94a489ba573078297996a6d (patch)
tree050784f35e753f80ff9dee059d842bb18345a2ac /Objects/setobject.c
parentAdd a C API for sets and frozensets. (diff)
downloadcpython-994c2c1c69d86ca1b94a489ba573078297996a6d.tar.gz
cpython-994c2c1c69d86ca1b94a489ba573078297996a6d.tar.bz2
cpython-994c2c1c69d86ca1b94a489ba573078297996a6d.zip
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 978d61359cc..879b4e1f791 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;
}