Commit 64905309 authored by Guido van Rossum's avatar Guido van Rossum

Issue #24452: Make webbrowser support Chrome on Mac OS X (merge 3.5->3.6)

parents 46d1e0d5 eb11b72e
......@@ -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)
......
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment