mirror of
https://github.com/python/cpython.git
synced 2025-09-11 19:27:07 +00:00
Fix L-suffixed literal straggler.
This commit is contained in:
parent
e2a383d062
commit
c7202a834e
1 changed files with 1 additions and 1 deletions
2
setup.py
2
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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue