Commit 994c2c1c authored by Raymond Hettinger's avatar Raymond Hettinger

DECREF --> XDECREF

parent beb3101b
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment