diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-03-08 02:35:31 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-03-08 02:35:31 (GMT) |
commit | 8591563628dfca26243ef9bf2dfac11eb0b44e77 (patch) | |
tree | 771e308c7f516ca6ff8664c9f223165d7c05d77e /Doc/library | |
parent | 6c50101fc90ae5833072a34bd057d0f304cfe334 (diff) | |
download | cpython-8591563628dfca26243ef9bf2dfac11eb0b44e77.zip cpython-8591563628dfca26243ef9bf2dfac11eb0b44e77.tar.gz cpython-8591563628dfca26243ef9bf2dfac11eb0b44e77.tar.bz2 |
whatsnew: audioop accepts any bytes-like, rejects strings.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/audioop.rst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/library/audioop.rst b/Doc/library/audioop.rst index fbb7fc6..faf9916 100644 --- a/Doc/library/audioop.rst +++ b/Doc/library/audioop.rst @@ -12,10 +12,8 @@ integers, unless specified otherwise. .. versionchanged:: 3.4 Support for 24-bit samples was added. - -.. versionchanged:: 3.4 - Any :term:`bytes-like object`\ s are now accepted by all functions in this - module. Strings no more supported. + All functions now accept any :term:`bytes-like object`. + String input now results in an immediate error. .. index:: single: Intel/DVI ADPCM |