Commit e2c277a6 authored by Raymond Hettinger's avatar Raymond Hettinger

Fix output spacing typo

parent a690a996
...@@ -722,7 +722,7 @@ set_tp_print(PySetObject *so, FILE *fp, int flags) ...@@ -722,7 +722,7 @@ set_tp_print(PySetObject *so, FILE *fp, int flags)
if (firstpass == 1) if (firstpass == 1)
firstpass = 0; firstpass = 0;
else else
fprintf(fp, ","); fprintf(fp, ", ");
if (PyObject_Print(item, fp, 0) != 0) { if (PyObject_Print(item, fp, 0) != 0) {
Py_DECREF(it); Py_DECREF(it);
Py_DECREF(item); Py_DECREF(item);
......
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