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