mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
parser__pickler(): Use Py_DECREF() when reference is known to be non-NULL.
This commit is contained in:
parent
fcfb6323fb
commit
7f875ef749
1 changed files with 1 additions and 1 deletions
|
@ -2704,7 +2704,7 @@ parser__pickler(self, args)
|
|||
result = Py_BuildValue("O(O)", pickle_constructor, tuple);
|
||||
Py_DECREF(tuple);
|
||||
}
|
||||
Py_XDECREF(newargs);
|
||||
Py_DECREF(newargs);
|
||||
}
|
||||
finally:
|
||||
return (result);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue