summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-07-08 07:22:32 (GMT)
committerGitHub <noreply@github.com>2018-07-08 07:22:32 (GMT)
commit25b804a9c21c735ce322877f105ebab2539ccfc1 (patch)
tree864aaead0e0372f44e477c30cba826e9e2ca497f /Misc
parent0830858aeedecc9ece60349f8c31c2690d1a99f8 (diff)
downloadcpython-25b804a9c21c735ce322877f105ebab2539ccfc1.zip
cpython-25b804a9c21c735ce322877f105ebab2539ccfc1.tar.gz
cpython-25b804a9c21c735ce322877f105ebab2539ccfc1.tar.bz2
bpo-31014: Fix the webbrowser module. (GH-7267)
webbrowser._synthesize() called webbrowser.register() with outdated signature. Co-Authored-By: John Still <john@jmsdvl.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-05-31-06-48-55.bpo-31014.SNY681.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-05-31-06-48-55.bpo-31014.SNY681.rst b/Misc/NEWS.d/next/Library/2018-05-31-06-48-55.bpo-31014.SNY681.rst
new file mode 100644
index 0000000..bd3c8bb
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-05-31-06-48-55.bpo-31014.SNY681.rst
@@ -0,0 +1,3 @@
+Fixed creating a controller for :mod:`webbrowser` when a user specifies a
+path to an entry in the BROWSER environment variable. Based on patch by
+John Still.