Skip to content

Commit 76c0581

Browse files
committed
(from review) use Py_DECREF instead of Py_XDECREF
Signed-off-by: Filipe Laíns <[email protected]>
1 parent c7cf78b commit 76c0581

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/structseq.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ structseq_asdict(PyStructSequence* self, PyObject *Py_UNUSED(ignored))
389389
return dict;
390390

391391
error:
392-
Py_XDECREF(dict);
392+
Py_DECREF(dict);
393393
return NULL;
394394
}
395395

0 commit comments

Comments
 (0)