diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-01-31 01:16:47 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-01-31 01:16:47 (GMT) |
commit | 1ff31f9534aef77c6cccebd1cda1abff14b4ebe6 (patch) | |
tree | 116f90df583c6c3d38f6eddf4c5d6c6b37716997 /Python | |
parent | 5599441bbf8c180b3ac0e96f487480142c6116a5 (diff) | |
download | cpython-1ff31f9534aef77c6cccebd1cda1abff14b4ebe6.zip cpython-1ff31f9534aef77c6cccebd1cda1abff14b4ebe6.tar.gz cpython-1ff31f9534aef77c6cccebd1cda1abff14b4ebe6.tar.bz2 |
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>.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 5d593f2..15e0b3a 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -20,8 +20,6 @@ #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 */ |