Kaydet (Commit) 7f875ef7 authored tarafından Fred Drake's avatar Fred Drake

parser__pickler(): Use Py_DECREF() when reference is known to be non-NULL.

üst fcfb6323
...@@ -2704,7 +2704,7 @@ parser__pickler(self, args) ...@@ -2704,7 +2704,7 @@ parser__pickler(self, args)
result = Py_BuildValue("O(O)", pickle_constructor, tuple); result = Py_BuildValue("O(O)", pickle_constructor, tuple);
Py_DECREF(tuple); Py_DECREF(tuple);
} }
Py_XDECREF(newargs); Py_DECREF(newargs);
} }
finally: finally:
return (result); 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