summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLars Gustäbel <lars@gustaebel.de>2009-03-22 20:48:03 (GMT)
committerLars Gustäbel <lars@gustaebel.de>2009-03-22 20:48:03 (GMT)
commit7623294cb76b23d63df2858df71072721bf409cc (patch)
tree1795e28745da5abb35df75897f63894bbe325f99 /Misc
parentf73bf859425040d2d27499ae89bc229fb5496b00 (diff)
downloadcpython-7623294cb76b23d63df2858df71072721bf409cc.zip
cpython-7623294cb76b23d63df2858df71072721bf409cc.tar.gz
cpython-7623294cb76b23d63df2858df71072721bf409cc.tar.bz2
Issue #5068: Fixed the tarfile._BZ2Proxy.read() method that would loop
forever on incomplete input. That caused tarfile.open() to hang when used with mode 'r' or 'r:bz2' and a fileobj argument that contained no data or partial bzip2 compressed data. (backported from r70523)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS14
1 files changed, 14 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2cd6252..6b256b6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -4,6 +4,20 @@ Python News
(editors: check NEWS.help for information about editing NEWS using ReST.)
+What's New in Python 2.5.5?
+===========================
+
+*Release date: XX-XXX-20XX*
+
+Library
+-------
+
+- Issue #5068: Fixed the tarfile._BZ2Proxy.read() method that would loop
+ forever on incomplete input. That caused tarfile.open() to hang when used
+ with mode 'r' or 'r:bz2' and a fileobj argument that contained no data or
+ partial bzip2 compressed data.
+
+
What's New in Python 2.5.4?
===========================