summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-09-28 18:21:39 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-09-28 18:21:39 (GMT)
commit0300a8db4955408059496d394cf53d212a2766a2 (patch)
tree84e191c651af7a092d420e7dffddc7637ddf8015 /Misc
parentd2c07a58affecc3fb049652ee7a435c382e3a4d0 (diff)
downloadcpython-0300a8db4955408059496d394cf53d212a2766a2.zip
cpython-0300a8db4955408059496d394cf53d212a2766a2.tar.gz
cpython-0300a8db4955408059496d394cf53d212a2766a2.tar.bz2
Issue #18950: Fix miscellaneous bugs in the sunau module.
Au_read.readframes() now updates current file position and reads correct number of frames from multichannel stream. Au_write.writeframesraw() now correctly updates current file position. Au_read.getnframes() now returns an integer (as in Python 2). Au_read and Au_write now correctly works with file object if start file position is not a zero.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6289eb2..86a8e35 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -71,6 +71,13 @@ Core and Builtins
Library
-------
+- Issue #18950: Fix miscellaneous bugs in the sunau module.
+ Au_read.readframes() now updates current file position and reads correct
+ number of frames from multichannel stream. Au_write.writeframesraw() now
+ correctly updates current file position. Au_read.getnframes() now returns an
+ integer (as in Python 2). Au_read and Au_write now correctly works with file
+ object if start file position is not a zero.
+
- Issue #19053: ZipExtFile.read1() with non-zero argument no more returns empty
bytes until end of data.