[Python-checkins] python/dist/src/Python ceval.c,2.310,2.311

mwh@sourceforge.net mwh@sourceforge.net
Mon, 20 May 2002 06:56:24 -0700


Update of /cvsroot/python/python/dist/src/Python
In directory usw-pr-cvs1:/tmp/cvs-serv6166

Modified Files:
	ceval.c 
Log Message:
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.



Index: ceval.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/ceval.c,v
retrieving revision 2.310
retrieving revision 2.311
diff -C2 -d -r2.310 -r2.311
*** ceval.c	18 Apr 2002 18:06:20 -0000	2.310
--- ceval.c	20 May 2002 13:56:11 -0000	2.311
***************
*** 1429,1435 ****
  				    PyFile_SoftSpace(w, 1);
  			    }
  			    else
  			    	PyFile_SoftSpace(w, 1);
- #endif
  			}
  			Py_DECREF(v);
--- 1429,1435 ----
  				    PyFile_SoftSpace(w, 1);
  			    }
+ #endif
  			    else
  			    	PyFile_SoftSpace(w, 1);
  			}
  			Py_DECREF(v);