Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
87f2435e
Commit
87f2435e
authored
Mar 07, 2014
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
whatsnew: audioop accepts any bytes-like, rejects strings.
parent
3a28c1cc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
Doc/library/audioop.rst
Doc/library/audioop.rst
+2
-4
Doc/whatsnew/3.4.rst
Doc/whatsnew/3.4.rst
+8
-1
No files found.
Doc/library/audioop.rst
View file @
87f2435e
...
@@ -12,10 +12,8 @@ integers, unless specified otherwise.
...
@@ -12,10 +12,8 @@ integers, unless specified otherwise.
.. versionchanged:: 3.4
.. versionchanged:: 3.4
Support for 24-bit samples was added.
Support for 24-bit samples was added.
All functions now accept any :term:`bytes-like object`.
.. versionchanged:: 3.4
String input now results in an immediate error.
Any :term:`bytes-like object`\ s are now accepted by all functions in this
module. Strings no more supported.
.. index::
.. index::
single: Intel/DVI ADPCM
single: Intel/DVI ADPCM
...
...
Doc/whatsnew/3.4.rst
View file @
87f2435e
...
@@ -554,12 +554,16 @@ by Lucas Maystre in :issue:`11175`.)
...
@@ -554,12 +554,16 @@ by Lucas Maystre in :issue:`11175`.)
audioop
audioop
-------
-------
The module
now supports 24-bit samples. (Contributed by Serhiy Storchaka
:mod:`audioop`
now supports 24-bit samples. (Contributed by Serhiy Storchaka
in :issue:`12866`.)
in :issue:`12866`.)
Added the :func:`~audioop.byteswap` function to convert big-endian samples
Added the :func:`~audioop.byteswap` function to convert big-endian samples
to little-endian and vice versa (:issue:`19641`).
to little-endian and vice versa (:issue:`19641`).
All :mod:`audioop` functions now accept any :term:`bytes-like object`. Strings
are not accepted: they didn't work before, now they raise an error right away.
(Contributed by Serhiy Storchaka in :issue:`16685`.)
base64
base64
------
------
...
@@ -2050,6 +2054,9 @@ Changes in the Python API
...
@@ -2050,6 +2054,9 @@ Changes in the Python API
matched the input type, so if your code was depending on the return value
matched the input type, so if your code was depending on the return value
being, say, a ``bytearray``, you will need to change your code.
being, say, a ``bytearray``, you will need to change your code.
* :mod:`audioop` functions now raise an error immediately if passed string
input, instead of failing randomly later on (:issue:`16685`).
Changes in the C API
Changes in the C API
--------------------
--------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment