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 ssokolow
Recipients pitrou, serhiy.storchaka, ssokolow
Date 2015-01-18.22:58:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1421621931.83.0.650161343339.issue23262@psf.upfronthosting.co.za>
In-reply-to
Content
Well, then the code which chooses a backend is broken because I have xdg-open and, according to WinPdb, it's using the Mozilla backend.

This was my local workaround:

    if os.name == 'posix' and not platform.mac_ver()[0]:
        with open(os.devnull, 'wb') as nul:
            subprocess.Popen(['xdg-open', request_url], stdout=nul, stderr=nul)
    else:
        webbrowser.open_new_tab(request_url)

(This retrofit branch hasn't yet reached the point where it'll be tested on Windows. I may still add another branch which calls `start` directly if it proves to have the same priority bug on Windows.)
History
Date User Action Args
2015-01-18 22:58:51ssokolowsetrecipients: + ssokolow, pitrou, serhiy.storchaka
2015-01-18 22:58:51ssokolowsetmessageid: <1421621931.83.0.650161343339.issue23262@psf.upfronthosting.co.za>
2015-01-18 22:58:51ssokolowlinkissue23262 messages
2015-01-18 22:58:51ssokolowcreate