From: Guido van Rossum Date: Thu, 13 Oct 2016 20:29:55 +0000 (-0700) Subject: Issue #24452: Make webbrowser support Chrome on Mac OS X (backport to 2.7) X-Git-Tag: v2.7.13rc1~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e2486b159b40be34f999585e78de45139d47cc2;p=thirdparty%2FPython%2Fcpython.git Issue #24452: Make webbrowser support Chrome on Mac OS X (backport to 2.7) --- diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index d3272a0a48ea..23891796e33b 100755 --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -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) diff --git a/Misc/NEWS b/Misc/NEWS index c68e5f294456..d0cc7a6c2a11 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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.