diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-19 16:55:07 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-19 16:55:07 (GMT) |
commit | 5e4a3b86b359952dc6ba3da2f48594179a811319 (patch) | |
tree | 03a7af3c89632c8ba9b736faf903cc1f113f57df /setup.py | |
parent | 8fbefe28745f980579620147dd0c0fdef94374de (diff) | |
download | cpython-5e4a3b86b359952dc6ba3da2f48594179a811319.zip cpython-5e4a3b86b359952dc6ba3da2f48594179a811319.tar.gz cpython-5e4a3b86b359952dc6ba3da2f48594179a811319.tar.bz2 |
Move comment that goes along with audioop
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -407,13 +407,13 @@ class PyBuildExt(build_ext): # These don't work for 64-bit platforms!!! # These represent audio samples or images as strings: + # Operations on audio samples # According to #993173, this one should actually work fine on # 64-bit platforms. exts.append( Extension('audioop', ['audioop.c']) ) # Disabled on 64-bit platforms if sys.maxint != 9223372036854775807L: - # Operations on audio samples # Operations on images exts.append( Extension('imageop', ['imageop.c']) ) # Read SGI RGB image files (but coded portably) |