summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-11-16 16:36:58 +0000
committerRaymond Hettinger <python@rcn.com>2003-11-16 16:36:58 +0000
commite2c277a69f86480ce950399a2e8a215a48ee60cd (patch)
treefe2628aa019803b4177a7b31889d456d29c17be6
parenta690a9967e715663b7a421c9ebdad91381cdf1e4 (diff)
downloadcpython-git-e2c277a69f86480ce950399a2e8a215a48ee60cd.tar.gz
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 08458403ee..61ba8539b6 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);