summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-09-28 18:24:43 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-09-28 18:24:43 (GMT)
commitf7622bfcfbef21833556fe79752b8fd1d3eeecde (patch)
treed546b983251b13c31fcb3563052c7b5e9af1699a /Misc
parent6ba64f454da7710f0dcbb28fd574ac3fda7eb00c (diff)
parent0300a8db4955408059496d394cf53d212a2766a2 (diff)
downloadcpython-f7622bfcfbef21833556fe79752b8fd1d3eeecde.zip
cpython-f7622bfcfbef21833556fe79752b8fd1d3eeecde.tar.gz
cpython-f7622bfcfbef21833556fe79752b8fd1d3eeecde.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 449d915..73c54a1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,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.