commit | 994c2c1c69d86ca1b94a489ba573078297996a6d | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Tue Aug 16 03:54:11 2005 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Tue Aug 16 03:54:11 2005 +0000 |
tree | 050784f35e753f80ff9dee059d842bb18345a2ac | |
parent | beb3101b051e415cb18ba844e0187a8caa7ac3fd [diff] [blame] |
DECREF --> XDECREF
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 @@ return NULL; } result = frozenset_new(&PyFrozenSet_Type, args, NULL); - Py_DECREF(args); + Py_XDECREF(args); return result; }