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 tommylim1018@naver.com
Recipients paul.moore, steve.dower, tim.golden, tommylim1018@naver.com, zach.ware
Date 2018-02-24.02:17:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1519438633.35.0.467229070634.issue32930@psf.upfronthosting.co.za>
In-reply-to
Content
Dear manager,

I'm just starting python and trying to make simple web application.
As above title, I just want to open webbrowser at first and then just change web-address in the same tab, but whenever I try webbrowser.open, it always open new tab or new window.
When I checked webbrowser-control options on python help page, it says webbrowser.open's 2nd argument can control window opening. but it did not work well in my tries. following is my test code.

#1st try
import webbrowser
url = 'www.google.com'
webbrowser.open(url, new=0) # this open new explorer window.

#....wait

#2nd try
webbrowser.open(url, new=0) # this open new explorer window again.

In my test, I test 2nd argument from 0 to 2, but there seems no change.
always opens new tab.

Is there any way to change address and open in the current opened browser window?

best Regards,
Tommy
History
Date User Action Args
2018-02-24 02:17:13tommylim1018@naver.comsetrecipients: + tommylim1018@naver.com, paul.moore, tim.golden, zach.ware, steve.dower
2018-02-24 02:17:13tommylim1018@naver.comsetmessageid: <1519438633.35.0.467229070634.issue32930@psf.upfronthosting.co.za>
2018-02-24 02:17:13tommylim1018@naver.comlinkissue32930 messages
2018-02-24 02:17:12tommylim1018@naver.comcreate