changeset: 104474:bc8a4b121aec branch: 2.7 parent: 104447:c29045efd25e user: Guido van Rossum date: Thu Oct 13 13:29:55 2016 -0700 files: Lib/webbrowser.py Misc/NEWS description: Issue #24452: Make webbrowser support Chrome on Mac OS X (backport to 2.7) diff -r c29045efd25e -r bc8a4b121aec Lib/webbrowser.py --- a/Lib/webbrowser.py Mon Oct 10 21:57:04 2016 -0500 +++ b/Lib/webbrowser.py Thu Oct 13 13:29:55 2016 -0700 @@ -642,6 +642,7 @@ # (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 -r c29045efd25e -r bc8a4b121aec Misc/NEWS --- a/Misc/NEWS Mon Oct 10 21:57:04 2016 -0500 +++ b/Misc/NEWS Thu Oct 13 13:29:55 2016 -0700 @@ -55,6 +55,8 @@ 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.