summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-23 20:26:01 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-23 20:26:01 (GMT)
commit3062c9a6c87ff9b480d1eea960efbfc604e4b157 (patch)
treeb31b2fe4839d47d9ca54f171d6adf518cfbffa9d /Misc
parent2b38fc187c2a764b7608cd262de5a2777a77f4c8 (diff)
downloadcpython-3062c9a6c87ff9b480d1eea960efbfc604e4b157.zip
cpython-3062c9a6c87ff9b480d1eea960efbfc604e4b157.tar.gz
cpython-3062c9a6c87ff9b480d1eea960efbfc604e4b157.tar.bz2
Issue #19641: Added the audioop.byteswap() function to convert big-endian
samples to little-endian and vice versa.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5185efe..f6823b4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -68,6 +68,9 @@ Core and Builtins
Library
-------
+- Issue #19641: Added the audioop.byteswap() function to convert big-endian
+ samples to little-endian and vice versa.
+
- Issue #15204: Deprecated the 'U' mode in file-like objects.
- Issue #17810: Implement PEP 3154, pickle protocol 4.