Commit 8f53ded1 authored by Benjamin Peterson's avatar Benjamin Peterson

untabify

parent b7ee47b4
......@@ -4490,9 +4490,9 @@ PyString_Format(PyObject *format, PyObject *args)
else {
iobj = PyNumber_Int(v);
if (iobj==NULL) {
PyErr_Clear();
iobj = PyNumber_Long(v);
}
PyErr_Clear();
iobj = PyNumber_Long(v);
}
}
if (iobj!=NULL) {
if (PyInt_Check(iobj)) {
......
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