From c7202a834e85bd38c8a242e19a48ae576fde6992 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 15 Jan 2007 17:02:51 +0000 Subject: Fix L-suffixed literal straggler. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b416518..d100102 100644 --- 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) -- cgit v0.12