diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-01 20:08:46 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-01 20:08:46 (GMT) |
commit | 7ffa196dce8db3010bce3e550078ed455a30e851 (patch) | |
tree | ec5119d3f4e2b23c8c1b07af8c5e453f6f4a7949 /Misc | |
parent | 7fb6f5121a42136f35c561c408091cd043f6340d (diff) | |
download | cpython-7ffa196dce8db3010bce3e550078ed455a30e851.zip cpython-7ffa196dce8db3010bce3e550078ed455a30e851.tar.gz cpython-7ffa196dce8db3010bce3e550078ed455a30e851.tar.bz2 |
Issue #8397: Raise an error when attempting to mix iteration and regular
reads on a BZ2File object, rather than returning incorrect results.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -29,6 +29,9 @@ Extensions Library ------- +- Issue #8397: Raise an error when attempting to mix iteration and regular + reads on a BZ2File object, rather than returning incorrect results. + - Issue #9448: Fix a leak of OS resources (mutexes or semaphores) when re-initializing a buffered IO object by calling its ``__init__`` method. |