diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-09-28 18:24:43 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-09-28 18:24:43 (GMT) |
commit | f7622bfcfbef21833556fe79752b8fd1d3eeecde (patch) | |
tree | d546b983251b13c31fcb3563052c7b5e9af1699a /Misc | |
parent | 6ba64f454da7710f0dcbb28fd574ac3fda7eb00c (diff) | |
parent | 0300a8db4955408059496d394cf53d212a2766a2 (diff) | |
download | cpython-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/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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. |