summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2009-05-24 19:47:22 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2009-05-24 19:47:22 (GMT)
commit70ccd167de68397889039a6470ae5fdf6f73e248 (patch)
tree4cad401e79a7a08b292c13e7261face5a0203843 /Misc
parent403117aa606438427aa9f9dc72271d40bc0ba0b2 (diff)
downloadcpython-70ccd167de68397889039a6470ae5fdf6f73e248.zip
cpython-70ccd167de68397889039a6470ae5fdf6f73e248.tar.gz
cpython-70ccd167de68397889039a6470ae5fdf6f73e248.tar.bz2
Merged revisions 72893 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72893 | martin.v.loewis | 2009-05-24 21:30:52 +0200 (So, 24 Mai 2009) | 3 lines Issue #6050: Don't fail extracting a directory from a zipfile if the directory already exists. ........
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 76f8773..ca3077a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@ Core and Builtins
Library
-------
+- Issue #6050: Don't fail extracting a directory from a zipfile if
+ the directory already exists.
+
- Issue #1309352: fcntl now converts its third arguments to a C `long` rather
than an int, which makes some operations possible under 64-bit Linux (e.g.
DN_MULTISHOT with F_NOTIFY).