mirror of https://github.com/python/cpython
Move comment that goes along with audioop
This commit is contained in:
parent
8fbefe2874
commit
5e4a3b86b3
2
setup.py
2
setup.py
|
@ -407,13 +407,13 @@ class PyBuildExt(build_ext):
|
||||||
# These don't work for 64-bit platforms!!!
|
# These don't work for 64-bit platforms!!!
|
||||||
# These represent audio samples or images as strings:
|
# These represent audio samples or images as strings:
|
||||||
|
|
||||||
|
# Operations on audio samples
|
||||||
# According to #993173, this one should actually work fine on
|
# According to #993173, this one should actually work fine on
|
||||||
# 64-bit platforms.
|
# 64-bit platforms.
|
||||||
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 != 9223372036854775807L:
|
||||||
# Operations on audio samples
|
|
||||||
# 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…
Reference in New Issue