This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Andrew.Jaffe
Recipients Andrew.Jaffe, ned.deily, ronaldoussoren
Date 2017-05-17.19:50:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1495050601.31.0.205212071557.issue30392@psf.upfronthosting.co.za>
In-reply-to
Content
On the newly-released macOS Sierra 10.12.5, the default web browser which is meant to returned by webbrowser.get() gives an error. Specifically:

    >>> import webbrowser
    >>> br = webbrowser.get()
    >>> br.open("http://python.org")
    0:33: execution error: "http://python.org" doesn’t understand the “open location” message. (-1708)
    False

    >>> ### but this works
    >>> br = webbrowser.get("safari")
    >>> br.open("http://python.org")
True
History
Date User Action Args
2017-05-17 19:50:01Andrew.Jaffesetrecipients: + Andrew.Jaffe, ronaldoussoren, ned.deily
2017-05-17 19:50:01Andrew.Jaffesetmessageid: <1495050601.31.0.205212071557.issue30392@psf.upfronthosting.co.za>
2017-05-17 19:50:01Andrew.Jaffelinkissue30392 messages
2017-05-17 19:50:01Andrew.Jaffecreate