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

Issue #24452: Make webbrowser support Chrome on Mac OS X.

parent 8ad8db56
......@@ -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)
......
......@@ -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.
......
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