Commit b11d91d9 authored by Victor Stinner's avatar Victor Stinner

Fix my previous commit: bool is a long, restore the specical case for bool

parent 92ff4e19
......@@ -13481,7 +13481,10 @@ formatlong(PyObject *val, int flags, int prec, int type)
case 'd':
case 'u':
/* Special-case boolean: we want 0/1 */
result = Py_TYPE(val)->tp_str(val);
if (PyBool_Check(val))
result = PyNumber_ToBase(val, 10);
else
result = Py_TYPE(val)->tp_str(val);
break;
case 'o':
numnondigits = 2;
......
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