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.
diff --git a/Misc/NEWS b/Misc/NEWS
index f8fc7a7..205ea40 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -122,6 +122,12 @@
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 @@
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.