diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-12-14 18:18:46 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-12-14 18:18:46 (GMT) |
commit | eea058b0143e98ef902a3931895aa99252059ef0 (patch) | |
tree | f868008b297275723db55d60307184cd53d970d4 | |
parent | 67c563e2f196b6e491140632386f0fea90a81e0f (diff) | |
download | cpython-eea058b0143e98ef902a3931895aa99252059ef0.zip cpython-eea058b0143e98ef902a3931895aa99252059ef0.tar.gz cpython-eea058b0143e98ef902a3931895aa99252059ef0.tar.bz2 |
#16683: restore alphabetical order in audioop docs. Patch by Serhiy Storchaka.
-rw-r--r-- | Doc/library/audioop.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/audioop.rst b/Doc/library/audioop.rst index 29c3914..0a8ac56 100644 --- a/Doc/library/audioop.rst +++ b/Doc/library/audioop.rst @@ -162,12 +162,6 @@ The module defines the following variables and functions: hardware, among others. -.. function:: minmax(fragment, width) - - Return a tuple consisting of the minimum and maximum values of all samples in - the sound fragment. - - .. function:: max(fragment, width) Return the maximum of the *absolute value* of all samples in a fragment. @@ -178,6 +172,12 @@ The module defines the following variables and functions: Return the maximum peak-peak value in the sound fragment. +.. function:: minmax(fragment, width) + + Return a tuple consisting of the minimum and maximum values of all samples in + the sound fragment. + + .. function:: mul(fragment, width, factor) Return a fragment that has all samples in the original fragment multiplied by |