summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-08-01 20:08:46 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-08-01 20:08:46 (GMT)
commit7ffa196dce8db3010bce3e550078ed455a30e851 (patch)
treeec5119d3f4e2b23c8c1b07af8c5e453f6f4a7949 /Misc
parent7fb6f5121a42136f35c561c408091cd043f6340d (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7d1317d..1126d4a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.