summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2016-10-13 18:22:52 (GMT)
committerGuido van Rossum <guido@python.org>2016-10-13 18:22:52 (GMT)
commit2ccdb5a4f1469284cd18693b7e828af5d8a4f737 (patch)
tree4e1ff2fbcf6961bd01376369c242197a140bb6b1
parent291417da7fc141e4ede93b804b6532460f2cc528 (diff)
parentb1a751b5c25b1969430197a6f5a58f49c1947eff (diff)
downloadcpython-2ccdb5a4f1469284cd18693b7e828af5d8a4f737.zip
cpython-2ccdb5a4f1469284cd18693b7e828af5d8a4f737.tar.gz
cpython-2ccdb5a4f1469284cd18693b7e828af5d8a4f737.tar.bz2
Issue #24452: Make webbrowser support Chrome on Mac OS X (merge 3.5->3.6)
-rwxr-xr-xLib/webbrowser.py1
-rw-r--r--Misc/NEWS2
2 files changed, 3 insertions, 0 deletions
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py
index 845f1d0..0292c3a 100755
--- a/Lib/webbrowser.py
+++ b/Lib/webbrowser.py
@@ -600,6 +600,7 @@ if sys.platform == 'darwin':
# (but we prefer using the OS X specific stuff)
register("safari", None, MacOSXOSAScript('safari'), -1)
register("firefox", None, MacOSXOSAScript('firefox'), -1)
+ register("chrome", None, MacOSXOSAScript('chrome'), -1)
register("MacOSX", None, MacOSXOSAScript('default'), -1)
diff --git a/Misc/NEWS b/Misc/NEWS
index 667bff5..016d3fb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,8 @@ Core and Builtins
Library
-------
+- Issue #24452: Make webbrowser support Chrome on Mac OS X.
+
- Issue #20766: Fix references leaked by pdb in the handling of SIGINT
handlers.