summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2002-05-20 13:56:11 (GMT)
committerMichael W. Hudson <mwh@python.net>2002-05-20 13:56:11 (GMT)
commitd95c828307bd57152f9ed5cb905e3a84acab5439 (patch)
treeeb0b573ec606d54928f662fb3420ba6d2bfab985 /Python/ceval.c
parent47f3e2cb6c51158abd3908d62848b8b9f42a3162 (diff)
downloadcpython-d95c828307bd57152f9ed5cb905e3a84acab5439.zip
cpython-d95c828307bd57152f9ed5cb905e3a84acab5439.tar.gz
cpython-d95c828307bd57152f9ed5cb905e3a84acab5439.tar.bz2
Fix for
[ 558249 ] softspace vs --disable-unicode And #endif was in the wrong place. Bugfix candidate, almost surely. I think I will embark on squashing test failures in --disable-unicode builds -- a Real Bug was hiding under them.
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 4e08a2a..fd30e8f 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -1428,9 +1428,9 @@ eval_frame(PyFrameObject *f)
s[len-1] == ' ')
PyFile_SoftSpace(w, 1);
}
+#endif
else
PyFile_SoftSpace(w, 1);
-#endif
}
Py_DECREF(v);
Py_XDECREF(stream);