[issue35731] Modify to support multiple urls in webbrowser.open

2019-01-13 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks for the report. Since you can do list comprehension over the URLs as in your example I don't see a good reason to change the current API to take multiple URLs. [browser.open(url, new, autoraise) for url in urls] -- nosy: +xtreak __

[issue35731] Modify to support multiple urls in webbrowser.open

2019-01-13 Thread Arlen
New submission from Arlen : 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): .