mirror of
https://github.com/python/cpython.git
synced 2025-09-12 03:37:09 +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']) )
|
exts.append( Extension('audioop', ['audioop.c']) )
|
||||||
|
|
||||||
# Disabled on 64-bit platforms
|
# Disabled on 64-bit platforms
|
||||||
if sys.maxint != 9223372036854775807L:
|
if sys.maxint != 9223372036854775807:
|
||||||
# Operations on images
|
# Operations on images
|
||||||
exts.append( Extension('imageop', ['imageop.c']) )
|
exts.append( Extension('imageop', ['imageop.c']) )
|
||||||
# Read SGI RGB image files (but coded portably)
|
# Read SGI RGB image files (but coded portably)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue