Commit 5e2486b1 authored by Guido van Rossum's avatar Guido van Rossum

Issue #24452: Make webbrowser support Chrome on Mac OS X (backport to 2.7)

parent 8fb09ada
......@@ -642,6 +642,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)
......
......@@ -55,6 +55,8 @@ Core and Builtins
Library
-------
- Issue #24452: Make webbrowser support Chrome on Mac OS X.
- Issue #26293: Fixed writing ZIP files that starts not from the start of the
file. Offsets in ZIP file now are relative to the start of the archive in
conforming to the specification.
......
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