summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-10-14 11:57:35 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-10-14 11:57:35 (GMT)
commit383c32dd3821828f271c0bf7bcf21f0ba71792e8 (patch)
treeaf0d55d8de4b60bfb1a4ce993a29b7387eb136b8 /Misc
parent6d7be5f86cf9eca0ab6f4c53b834e48f81ed6291 (diff)
downloadcpython-383c32dd3821828f271c0bf7bcf21f0ba71792e8.zip
cpython-383c32dd3821828f271c0bf7bcf21f0ba71792e8.tar.gz
cpython-383c32dd3821828f271c0bf7bcf21f0ba71792e8.tar.bz2
Issue10063 - file:// scheme will stop accessing remote hosts via ftp protocol
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4392432..c8a43b5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,12 @@ Core and Builtins
Library
-------
+- Issue #Issue10063: file:// scheme will stop accessing remote hosts via ftp
+ protocol. file:// urls had fallback to access remote hosts via ftp. This was
+ not correct, change is made to raise a URLError when a remote host is tried
+ to access via file:// scheme.
+
+
- Issue #1710703: Write structures for an empty ZIP archive when a ZipFile is
created in modes 'a' or 'w' and then closed without adding any files. Raise
BadZipfile (rather than IOError) when opening small non-ZIP files.