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 aa2aea0 commit b5cebfeCopy full SHA for b5cebfe
1 file changed
Objects/longobject.c
@@ -769,6 +769,7 @@ PyLong_FromString(str, pend, base)
769
if (str == start) {
770
PyErr_SetString(PyExc_ValueError,
771
"no digits in long int constant");
772
+ Py_DECREF(z);
773
return NULL;
774
}
775
if (sign < 0 && z != NULL && z->ob_size != 0)
0 commit comments