diff options
author | Raymond Hettinger <python@rcn.com> | 2003-11-16 16:36:58 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-11-16 16:36:58 (GMT) |
commit | e2c277a69f86480ce950399a2e8a215a48ee60cd (patch) | |
tree | fe2628aa019803b4177a7b31889d456d29c17be6 | |
parent | a690a9967e715663b7a421c9ebdad91381cdf1e4 (diff) | |
download | cpython-e2c277a69f86480ce950399a2e8a215a48ee60cd.zip cpython-e2c277a69f86480ce950399a2e8a215a48ee60cd.tar.gz cpython-e2c277a69f86480ce950399a2e8a215a48ee60cd.tar.bz2 |
Fix output spacing typo
-rw-r--r-- | Objects/setobject.c | 2 |
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); |