[issue24452] Make webbrowser support Chrome on Mac OS X

2017-03-31 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Hi Boštjan Mejak, this ticket addresses the change for MacOS. The windows support is in http://bugs.python.org/issue8232. Please raise the issue there. Thanks. -- ___ Python tracker

[issue24452] Make webbrowser support Chrome on Mac OS X

2017-03-31 Thread Guido van Rossum
Changes by Guido van Rossum : -- nosy: -gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue24452] Make webbrowser support Chrome on Mac OS X

2017-03-31 Thread Boštjan Mejak
Boštjan Mejak added the comment: I have Windows 10, 64-bit, and Python 3.6.1, 64-bit, and the code still does not work! >>> import webbrowser >>> webbrowser.get("chrome") Traceback (most recent call last): File "", line 1, in File "C:\Program Files\Python 3.6\lib\webbrowser.py", line 51, i

[issue24452] Make webbrowser support Chrome on Mac OS X

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +1002 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue24452] Make webbrowser support Chrome on Mac OS X

2016-11-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0c8270cbdc62 by Brett Cannon in branch 'default': Issue #24452: add attribution https://hg.python.org/cpython/rev/0c8270cbdc62 -- ___ Python tracker __

[issue24452] Make webbrowser support Chrome on Mac OS X

2016-10-13 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks everyone! Applied to 2.7, so closing as fixed now. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> behavior ___ Python tracker __

[issue24452] Make webbrowser support Chrome on Mac OS X

2016-10-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset bc8a4b121aec by Guido van Rossum in branch '2.7': Issue #24452: Make webbrowser support Chrome on Mac OS X (backport to 2.7) https://hg.python.org/cpython/rev/bc8a4b121aec -- ___ Python tracker

[issue24452] Make webbrowser support Chrome on Mac OS X

2016-10-13 Thread Guido van Rossum
Guido van Rossum added the comment: OK will do. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue24452] Make webbrowser support Chrome on Mac OS X

2016-10-13 Thread Senthil Kumaran
Senthil Kumaran added the comment: Applying on 2.7 seems alright. Bug fix. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue24452] Make webbrowser support Chrome on Mac OS X

2016-10-13 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: The documentation seems to indicate that chrome MacOS is supposed to work in 2.7, which makes this a bug. https://docs.python.org/2.7/library/webbrowser.html?highlight=webbrowser#module-webbrowser But... it could also be a documentation bug. --

[issue24452] Make webbrowser support Chrome on Mac OS X

2016-10-13 Thread Guido van Rossum
Guido van Rossum added the comment: I applied this to 3.5, 3.6 and 3.7. I'm not sure we should also apply this to 2.7 -- optinions? Bug or feature? -- versions: +Python 3.5 ___ Python tracker _

[issue24452] Make webbrowser support Chrome on Mac OS X

2016-10-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset bd0f502c5eea by Guido van Rossum in branch '3.5': Issue #24452: Make webbrowser support Chrome on Mac OS X. https://hg.python.org/cpython/rev/bd0f502c5eea New changeset 64a38f9aee21 by Guido van Rossum in branch '3.6': Issue #24452: Make webbrowser

[issue24452] Make webbrowser support Chrome on Mac OS X

2016-10-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4e2cce65e522 by Guido van Rossum in branch 'default': Issue #24452: Make webbrowser support Chrome on Mac OS X (merge 3.6->3.7) https://hg.python.org/cpython/rev/4e2cce65e522 -- ___ Python tracker

[issue24452] Make webbrowser support Chrome on Mac OS X

2016-10-13 Thread Guido van Rossum
Guido van Rossum added the comment: OK, this seems to work for me. I'm, applying this to 3.5, 3.6 and 3.7 (default). -- nosy: +gvanrossum ___ Python tracker ___ _

[issue24452] Make webbrowser support Chrome on Mac OS X

2016-10-07 Thread Senthil Kumaran
Senthil Kumaran added the comment: The patch looks good to me. (The test coverage for chrome browser can be improved. But that seems a like a different change than the current one). -- assignee: -> orsenthil nosy: +orsenthil versions: +Python 3.7 -Python 3.4, Python 3.5

[issue24452] Make webbrowser support Chrome on Mac OS X

2016-10-05 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Well... I created a patch based on Ned's code :) This now works in the default branch Python 3.7.0a0 (default:f2204eaba685+, Oct 5 2016, 20:43:44) [GCC 4.2.1 Compatible Apple LLVM 7.3.0 (clang-703.0.31)] on darwin Type "help", "copyright", "credits" or "lice

[issue24452] Make webbrowser support Chrome on Mac OS X

2016-06-18 Thread Doug Hellmann
Changes by Doug Hellmann : -- nosy: +doughellmann ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue24452] Make webbrowser support Chrome on Mac OS X

2015-06-14 Thread Brandon Milam
Brandon Milam added the comment: Boštjan Mejak the windows issue has been addressed in issue 8232 and recently patched for 3.5. http://bugs.python.org/issue8232 -- nosy: +jbmilam ___ Python tracker ___

[issue24452] Make webbrowser support Chrome on Mac OS X

2015-06-14 Thread Boštjan Mejak
Boštjan Mejak added the comment: I must add that it doesn't work on Windows 7, Python 3.4.3, either. I do have chrome.exe on the %PATH% and executing 'chrome' in Windows Command Prompt opens up the Chrome browser nicely, but it doesn't work so nicely by doing this: import webbrowser webbrowser

[issue24452] Make webbrowser support Chrome on Mac OS X

2015-06-14 Thread Ned Deily
Changes by Ned Deily : -- components: +Macintosh nosy: +ned.deily, ronaldoussoren stage: -> patch review title: Make webbrowser support Chrome on Mac OS/X -> Make webbrowser support Chrome on Mac OS X versions: +Python 2.7, Python 3.5, Python 3.6 __

[issue24452] Make webbrowser support Chrome on Mac OS/X

2015-06-14 Thread Ned Batchelder
New submission from Ned Batchelder: This doesn't work on Python 3.4 on a Mac with Yosemite and Chrome installed: import webbrowser webbrowser.get("chrome") This patch makes it work: ``` *** /usr/local/pythonz/pythons/CPython-3.4.1/lib/python3.4/webbrowser.py 2014-09-21 16:37:46.