[Python-3000-checkins] r53453 - python/branches/p3yk/setup.py

guido.van.rossum python-3000-checkins at python.org
Mon Jan 15 18:02:52 CET 2007


Author: guido.van.rossum
Date: Mon Jan 15 18:02:51 2007
New Revision: 53453

Modified:
   python/branches/p3yk/setup.py
Log:
Fix L-suffixed literal straggler.


Modified: python/branches/p3yk/setup.py
==============================================================================
--- python/branches/p3yk/setup.py	(original)
+++ python/branches/p3yk/setup.py	Mon Jan 15 18:02:51 2007
@@ -461,7 +461,7 @@
         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)


More information about the Python-3000-checkins mailing list