summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-12-05 01:02:21 +0000
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-12-05 01:02:21 +0000
commit45e792749802c6a7eae3f143f28e172a5d61d6a4 (patch)
tree9dfbfabc18e099f735aab52ff7fab911ea80555a /Misc
parent16a29bf71bff43cd28d509eec9a3a10e6644f569 (diff)
downloadcpython-45e792749802c6a7eae3f143f28e172a5d61d6a4.tar.gz
Issue #4537: webbrowser.UnixBrowser failed because this module defines an open()
function which shadows the builtin. Will backport to 3.0
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 d4e749f58c..15e3401c59 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,9 @@ Core and Builtins
Library
-------
+- Issue #4537: webbrowser.UnixBrowser would fail to open the browser because
+ it was calling the wrong open() function.
+
- Issue #1055234: cgi.parse_header(): Fixed parsing of header parameters to
support unusual filenames (such as those containing semi-colons) in
Content-Disposition headers.