]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
DECREF --> XDECREF
authorRaymond Hettinger <python@rcn.com>
Tue, 16 Aug 2005 03:54:11 +0000 (03:54 +0000)
committerRaymond Hettinger <python@rcn.com>
Tue, 16 Aug 2005 03:54:11 +0000 (03:54 +0000)
Objects/setobject.c

index 978d61359cc0710bbe3b9a04acbf7bfe91b86215..879b4e1f791564eccf780700cacb62623adb6055 100644 (file)
@@ -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;
 }