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)
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to