From d95c828307bd57152f9ed5cb905e3a84acab5439 Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Mon, 20 May 2002 13:56:11 +0000 Subject: [PATCH] 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. --- Python/ceval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ceval.c b/Python/ceval.c index 4e08a2af0a..fd30e8f331 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); -- 2.40.0