Commit 590d0649 authored by Guido van Rossum's avatar Guido van Rossum

Fix L-suffixed literal straggler.

parent 0944c0b6
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment