Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d9a729 commit eece222Copy full SHA for eece222
1 file changed
Python/ceval.c
@@ -3300,6 +3300,7 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
3300
PyEval_GetFuncDesc(func),
3301
kwargs->ob_type->tp_name);
3302
}
3303
+ Py_DECREF(kwargs);
3304
goto error;
3305
3306
Py_DECREF(kwargs);
@@ -3318,6 +3319,7 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
3318
3319
PyEval_GetFuncName(func),
3320
3321
callargs->ob_type->tp_name);
3322
+ Py_DECREF(callargs);
3323
3324
3325
Py_SETREF(callargs, PySequence_Tuple(callargs));
0 commit comments