From e2c277a69f86480ce950399a2e8a215a48ee60cd Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sun, 16 Nov 2003 16:36:58 +0000 Subject: Fix output spacing typo --- Objects/setobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/setobject.c b/Objects/setobject.c index 0845840..61ba853 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -722,7 +722,7 @@ set_tp_print(PySetObject *so, FILE *fp, int flags) if (firstpass == 1) firstpass = 0; else - fprintf(fp, ","); + fprintf(fp, ", "); if (PyObject_Print(item, fp, 0) != 0) { Py_DECREF(it); Py_DECREF(item); -- cgit v0.12