diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-06-23 14:19:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-23 14:19:13 (GMT) |
commit | 5b6e5762ca2f758330d2708c63e301720cf3dfae (patch) | |
tree | a079a828b7d90f5ef8161f1af4e8069424288eb4 /Objects | |
parent | 89285314bdbd067922d5eb02efd76da07e6fce4e (diff) | |
download | cpython-5b6e5762ca2f758330d2708c63e301720cf3dfae.zip cpython-5b6e5762ca2f758330d2708c63e301720cf3dfae.tar.gz cpython-5b6e5762ca2f758330d2708c63e301720cf3dfae.tar.bz2 |
GH-91742: Fix pdb crash after jump (GH-94171)
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/frameobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/frameobject.c b/Objects/frameobject.c index 350b011..9ff0443 100644 --- a/Objects/frameobject.c +++ b/Objects/frameobject.c @@ -418,7 +418,7 @@ static void frame_stack_pop(PyFrameObject *f) { PyObject *v = _PyFrame_StackPop(f->f_frame); - Py_DECREF(v); + Py_XDECREF(v); } static PyFrameState |