From 994c2c1c69d86ca1b94a489ba573078297996a6d Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Tue, 16 Aug 2005 03:54:11 +0000 Subject: DECREF --> XDECREF --- Objects/setobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v0.12