Oops. I killed a bit too much and not enough when I deleted intobject.c.

This commit is contained in:
Guido van Rossum 2007-08-07 22:02:18 +00:00
parent c77e24b233
commit 22201221cc
2 changed files with 6 additions and 1 deletions

View File

@ -296,7 +296,6 @@ OBJECT_OBJS= \
Objects/floatobject.o \
Objects/frameobject.o \
Objects/funcobject.o \
Objects/intobject.o \
Objects/iterobject.o \
Objects/listobject.o \
Objects/longobject.o \

View File

@ -7,6 +7,12 @@
#include <ctype.h>
long
PyInt_GetMax(void)
{
return LONG_MAX; /* To initialize sys.maxint */
}
#ifndef NSMALLPOSINTS
#define NSMALLPOSINTS 257
#endif