diff options
| author | Raymond Hettinger <python@rcn.com> | 2005-08-16 03:54:11 (GMT) |
|---|---|---|
| committer | Raymond Hettinger <python@rcn.com> | 2005-08-16 03:54:11 (GMT) |
| commit | 994c2c1c69d86ca1b94a489ba573078297996a6d (patch) | |
| tree | 050784f35e753f80ff9dee059d842bb18345a2ac /Objects/setobject.c | |
| parent | beb3101b051e415cb18ba844e0187a8caa7ac3fd (diff) | |
| download | cpython-994c2c1c69d86ca1b94a489ba573078297996a6d.zip cpython-994c2c1c69d86ca1b94a489ba573078297996a6d.tar.gz cpython-994c2c1c69d86ca1b94a489ba573078297996a6d.tar.bz2 | |
DECREF --> XDECREF
Diffstat (limited to 'Objects/setobject.c')
| -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; } |
