diff options
-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 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; } |