]> granicus.if.org Git - python/commitdiff
Fix L-suffixed literal straggler.
authorGuido van Rossum <guido@python.org>
Mon, 15 Jan 2007 17:02:51 +0000 (17:02 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 15 Jan 2007 17:02:51 +0000 (17:02 +0000)
setup.py

index b4165189e25c83b29f832ad40d72362ac15b2966..d1001020d7f151ef15457e804efbbb94064f9643 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -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)