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 chainly
Recipients chainly
Date 2017-05-24.05:51:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1495605118.23.0.51946743768.issue30451@psf.upfronthosting.co.za>
In-reply-to
Content
a bug when platform is not posix, lead to
webbrowser.Error: could not locate runnable browser
see below:
import shlex
shlex.split(r'C:\a\chrome.exe', comments=False, posix=True)
['C:achrome.exe']
shlex.split(r'C:\a\chrome.exe', comments=False, posix=False)
['C:\a\chrome.exe']
History
Date User Action Args
2017-05-24 05:51:58chainlysetrecipients: + chainly
2017-05-24 05:51:58chainlysetmessageid: <1495605118.23.0.51946743768.issue30451@psf.upfronthosting.co.za>
2017-05-24 05:51:58chainlylinkissue30451 messages
2017-05-24 05:51:57chainlycreate