diff options
author | Raymond Hettinger <python@rcn.com> | 2005-08-16 03:54:11 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-08-16 03:54:11 +0000 |
commit | 994c2c1c69d86ca1b94a489ba573078297996a6d (patch) | |
tree | 050784f35e753f80ff9dee059d842bb18345a2ac | |
parent | beb3101b051e415cb18ba844e0187a8caa7ac3fd (diff) | |
download | cpython-git-994c2c1c69d86ca1b94a489ba573078297996a6d.tar.gz |
DECREF --> XDECREF
-rw-r--r-- | Objects/setobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c index 978d61359c..879b4e1f79 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; } |