Kaydet (Commit) d95c8283 authored tarafından Michael W. Hudson's avatar Michael W. Hudson

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.
üst 47f3e2cb
...@@ -1428,9 +1428,9 @@ eval_frame(PyFrameObject *f) ...@@ -1428,9 +1428,9 @@ eval_frame(PyFrameObject *f)
s[len-1] == ' ') s[len-1] == ' ')
PyFile_SoftSpace(w, 1); PyFile_SoftSpace(w, 1);
} }
#endif
else else
PyFile_SoftSpace(w, 1); PyFile_SoftSpace(w, 1);
#endif
} }
Py_DECREF(v); Py_DECREF(v);
Py_XDECREF(stream); Py_XDECREF(stream);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment