summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-11-16 16:36:58 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-11-16 16:36:58 (GMT)
commite2c277a69f86480ce950399a2e8a215a48ee60cd (patch)
treefe2628aa019803b4177a7b31889d456d29c17be6
parenta690a9967e715663b7a421c9ebdad91381cdf1e4 (diff)
downloadcpython-e2c277a69f86480ce950399a2e8a215a48ee60cd.zip
cpython-e2c277a69f86480ce950399a2e8a215a48ee60cd.tar.gz
cpython-e2c277a69f86480ce950399a2e8a215a48ee60cd.tar.bz2
Fix output spacing typo
-rw-r--r--Objects/setobject.c2
1 files changed, 1 insertions, 1 deletions
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);