Fix L-suffixed literal straggler.

This commit is contained in:
Guido van Rossum 2007-01-15 17:02:51 +00:00
parent e2a383d062
commit c7202a834e

View file

@ -461,7 +461,7 @@ class PyBuildExt(build_ext):
exts.append( Extension('audioop', ['audioop.c']) )
# Disabled on 64-bit platforms
if sys.maxint != 9223372036854775807L:
if sys.maxint != 9223372036854775807:
# Operations on images
exts.append( Extension('imageop', ['imageop.c']) )
# Read SGI RGB image files (but coded portably)