[Python-checkins] CVS: python/dist/src/Python ceval.c,2.224,2.225

Tim Peters tim_one@users.sourceforge.net
Tue, 30 Jan 2001 17:16:49 -0800


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

Modified Files:
	ceval.c 
Log Message:
SF bug #130532:  newest CVS won't build on AIX.
Removed illegal redefinition of REPR macro; kept the one with the
argument name that isn't too easy to confuse with zero <wink>.


Index: ceval.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/ceval.c,v
retrieving revision 2.224
retrieving revision 2.225
diff -C2 -r2.224 -r2.225
*** ceval.c	2001/01/29 22:51:52	2.224
--- ceval.c	2001/01/31 01:16:47	2.225
***************
*** 21,26 ****
  #include <ctype.h>
  
- #define REPR(O) PyString_AS_STRING(PyObject_Repr(O))
- 
  /* Turn this on if your compiler chokes on the big switch: */
  /* #define CASE_TOO_BIG 1 */
--- 21,24 ----