summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2016-10-13 18:17:27 (GMT)
committerGuido van Rossum <guido@python.org>2016-10-13 18:17:27 (GMT)
commitb1a751b5c25b1969430197a6f5a58f49c1947eff (patch)
treeaf596bcfe6cb16879fc034a638b2b0c758e22751
parent10e54aeaa234f2806b367c66e3fb4ac6568b39f6 (diff)
downloadcpython-b1a751b5c25b1969430197a6f5a58f49c1947eff.zip
cpython-b1a751b5c25b1969430197a6f5a58f49c1947eff.tar.gz
cpython-b1a751b5c25b1969430197a6f5a58f49c1947eff.tar.bz2
Issue #24452: Make webbrowser support Chrome on Mac OS X.
-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 28a7d94..fd2030a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -107,6 +107,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.