Message293881
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 |
|
Date |
User |
Action |
Args |
2017-05-17 19:50:01 | Andrew.Jaffe | set | recipients:
+ Andrew.Jaffe, ronaldoussoren, ned.deily |
2017-05-17 19:50:01 | Andrew.Jaffe | set | messageid: <1495050601.31.0.205212071557.issue30392@psf.upfronthosting.co.za> |
2017-05-17 19:50:01 | Andrew.Jaffe | link | issue30392 messages |
2017-05-17 19:50:01 | Andrew.Jaffe | create | |
|