summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorLars Gustäbel <lars@gustaebel.de>2006-12-23 18:13:57 (GMT)
committerLars Gustäbel <lars@gustaebel.de>2006-12-23 18:13:57 (GMT)
commit12e087a1b12dd09f24875b39db2f4e7a5034899e (patch)
tree1b779ceb2b51c100255af245d4870a10b768cadc /Misc/NEWS
parentaedb92e59c2f4c3c33fbb33d5dc4afefe344620c (diff)
downloadcpython-12e087a1b12dd09f24875b39db2f4e7a5034899e.zip
cpython-12e087a1b12dd09f24875b39db2f4e7a5034899e.tar.gz
cpython-12e087a1b12dd09f24875b39db2f4e7a5034899e.tar.bz2
Patch #1262036: Prevent TarFiles from being added to themselves under
certain conditions. (backport from rev. 53155) Moved message from my previous change to the right place in Misc/NEWS.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS9
1 files changed, 6 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f8fc7a7..205ea40 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -122,6 +122,12 @@ Extension Modules
Library
-------
+- Patch #1262036: Prevent TarFiles from being added to themselves under
+ certain conditions.
+
+- Patch #1230446: tarfile.py: fix ExFileObject so that read() and tell()
+ work correctly together with readline().
+
- Bug #737202: Make CGIHTTPServer work for scripts in subdirectories.
Fix by Titus Brown.
@@ -620,9 +626,6 @@ Core and builtins
Library
-------
-- Patch #1230446: tarfile.py: fix ExFileObject so that read() and tell()
- work correctly together with readline().
-
- Correction of patch #1455898: In the mbcs decoder, set final=False
for stream decoder, but final=True for the decode function.