summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorZhiming Wang <i@zhimingwang.org>2018-11-26 21:29:45 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-11-26 21:29:45 (GMT)
commit8c281ed403fd915284d5bba2405d7c47f8195066 (patch)
tree9e18f217805ec108324a271bb0bb6fdc692e5111 /Misc
parent5a8c240b1d97de0bd6ced2a57cbcf26da19c1fcc (diff)
downloadcpython-8c281ed403fd915284d5bba2405d7c47f8195066.zip
cpython-8c281ed403fd915284d5bba2405d7c47f8195066.tar.gz
cpython-8c281ed403fd915284d5bba2405d7c47f8195066.tar.bz2
bpo-35308: Fix regression where BROWSER env var is not respected. (GH-10693)
Regression introduced in e3ce695 and 25b804a, where the old parameter update_tryorder to _synthesize was first ignored, then given the opposite value in the attempt to fix bpo-31014.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-11-24-10-33-42.bpo-35308.9--2iy.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-11-24-10-33-42.bpo-35308.9--2iy.rst b/Misc/NEWS.d/next/Library/2018-11-24-10-33-42.bpo-35308.9--2iy.rst
new file mode 100644
index 0000000..a33fe2e
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-11-24-10-33-42.bpo-35308.9--2iy.rst
@@ -0,0 +1,2 @@
+Fix regression in ``webbrowser`` where default browsers may be preferred
+over browsers in the ``BROWSER`` environment variable.