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 arlenyu
Recipients arlenyu
Date 2019-01-13.19:21:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1547407261.77.0.914864319887.issue35731@roundup.psfhosted.org>
In-reply-to
Content
Note: new to python, please provide any feedback

Currently webbrowser.open supports one url, and there is no fn for url batching. I am proposing modifying webbrowser.open to support something along these lines:

```
def open(*urls, new=0, autoraise=True):
        ...
        browser = get(name)
        actions = [browser.open(url, new, autoraise) for url in urls]
        ...

# usage
open('http://example.com', 'http://example2.com')
```
History
Date User Action Args
2019-01-13 19:21:05arlenyusetrecipients: + arlenyu
2019-01-13 19:21:01arlenyusetmessageid: <1547407261.77.0.914864319887.issue35731@roundup.psfhosted.org>
2019-01-13 19:21:01arlenyulinkissue35731 messages
2019-01-13 19:21:01arlenyucreate