Kaydet (Commit) 437a5d2c authored tarafından Xiang Zhang's avatar Xiang Zhang

Issue #29044: Merge 3.5.

...@@ -14324,11 +14324,12 @@ formatchar(PyObject *v) ...@@ -14324,11 +14324,12 @@ formatchar(PyObject *v)
if (iobj == NULL) { if (iobj == NULL) {
goto onError; goto onError;
} }
v = iobj; x = PyLong_AsLong(iobj);
Py_DECREF(iobj); Py_DECREF(iobj);
} }
/* Integer input truncated to a character */ else {
x = PyLong_AsLong(v); x = PyLong_AsLong(v);
}
if (x == -1 && PyErr_Occurred()) if (x == -1 && PyErr_Occurred())
goto onError; goto onError;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment