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.

classification
Title: Message of webbrowser.py something wrong.
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.5
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: maxtortime, r.david.murray
Priority: normal Keywords:

Created on 2016-07-29 04:54 by maxtortime, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg271603 - (view) Author: Taehwan Kim (maxtortime) Date: 2016-07-29 04:54
I'm using Python 3.5.1+ and Ubuntu 16.04.

When I open new tab to Chrome using 'webbrowser.open()'.
Some message prints next to shell prompt like below.
```
asd 저장소가 생성되었습니다...
첫 위키 페이지를 만들기 위해 Save Page 버튼을 눌러주세요!
['asd']
(Shell prompt) $ 기존 브라우저 세션에 새 창을 생성했습니다.
```
First three line is my program's message, please don't care about them.
Problem happened at final line.
'기존 브라우저 세션에 새 창을 생성했습니다.' means Program created new window to existing browser session.
I think that message is for webbrowser.py and it prints with shell prompt.
So, I was reading webbrowser.py simply but I cannot find where it prints message.

Thanks.
msg271623 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2016-07-29 13:58
Since python isn't internationalized, or even set up for someone else to do it (other than getopt/optparse/argparse, and webbrowser doesn't use those outside of __main__), I don't see how that message could be coming from Python.

Most likely the message is coming from chrome itself.  I'm going to close this as third party.  If it turns out I'm wrong we can reopen.
msg271630 - (view) Author: Taehwan Kim (maxtortime) Date: 2016-07-29 14:27
I think you’re right.

I also think that Korean message(final line) prints by chrome. (Another lines printed by my own codes, please don’t care) But I used webbrowser.open() code to outside of __main__. I will test my codes from other web browser (like Firefox)

Thank you for replying! 

On 2016년 7월 29일 (금) at 오후 10:58 "R. David Murray"

<
mailto:
> wrote:

R. David Murray added the comment:

Since python isn't internationalized, or even set up for someone else to do it (other than getopt/optparse/argparse, and webbrowser doesn't use those outside of __main__), I don't see how that message could be coming from Python.

Most likely the message is coming from chrome itself. I'm going to close this as third party. If it turns out I'm wrong we can reopen.

----------

nosy: +r.david.murray

resolution: -> third party

stage: -> resolved

status: open -> closed

_______________________________________

Python tracker <
mailto:report@bugs.python.org
>

<
http://bugs.python.org/issue27648
>

_______________________________________
History
Date User Action Args
2022-04-11 14:58:34adminsetgithub: 71835
2016-07-29 14:27:49maxtortimesetmessages: + msg271630
2016-07-29 13:58:13r.david.murraysetstatus: open -> closed

nosy: + r.david.murray
messages: + msg271623

resolution: third party
stage: resolved
2016-07-29 04:54:43maxtortimecreate