summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLars Gustäbel <lars@gustaebel.de>2007-12-01 21:02:12 (GMT)
committerLars Gustäbel <lars@gustaebel.de>2007-12-01 21:02:12 (GMT)
commit77b2d63b40942087f023999a0329aeea6dd1d6e9 (patch)
treeda814527fb821f1b8fdd0df249e1973ea026605c /Misc
parent3e76d9346b326a10791fcf2b1ea887f8dbfccc80 (diff)
downloadcpython-77b2d63b40942087f023999a0329aeea6dd1d6e9.zip
cpython-77b2d63b40942087f023999a0329aeea6dd1d6e9.tar.gz
cpython-77b2d63b40942087f023999a0329aeea6dd1d6e9.tar.bz2
Issue #1531: Read fileobj from the current offset, do not seek to
the start. (will backport to 2.5)
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 2023143..c32e3f9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -304,6 +304,9 @@ Core and builtins
Library
-------
+- Issue #1531: tarfile.py: Read fileobj from the current offset, do not
+ seek to the start.
+
- Issue #1534: Added a dictionary sys.float_info with information about the
internal floating point type to the sys module.