mirror of
https://github.com/python/cpython.git
synced 2025-10-03 05:35:59 +00:00
Issue #24452: Make webbrowser support Chrome on Mac OS X (merge 3.6->3.7)
This commit is contained in:
commit
cf418eabc0
2 changed files with 3 additions and 0 deletions
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
@ -85,6 +85,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.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue