mirror of https://github.com/python/cpython
Issue #29044: Merge 3.5.
This commit is contained in:
commit
437a5d2c25
|
@ -14324,11 +14324,12 @@ formatchar(PyObject *v)
|
|||
if (iobj == NULL) {
|
||||
goto onError;
|
||||
}
|
||||
v = iobj;
|
||||
x = PyLong_AsLong(iobj);
|
||||
Py_DECREF(iobj);
|
||||
}
|
||||
/* Integer input truncated to a character */
|
||||
else {
|
||||
x = PyLong_AsLong(v);
|
||||
}
|
||||
if (x == -1 && PyErr_Occurred())
|
||||
goto onError;
|
||||
|
||||
|
|
Loading…
Reference in New Issue