[issue33986] Typo: BaseSubprocessTransport -> SubprocessTransport

2018-06-27 Thread Bumsik Kim


New submission from Bumsik Kim :

https://docs.python.org/3/library/asyncio-protocol.html#basesubprocesstransport

I belive the doc has a wrong name "basesubprocesstransport" and it should be 
"Subprocesstransport".

You can see this in the source code: 
https://github.com/python/cpython/blob/3.6/Lib/asyncio/transports.py

--
assignee: docs@python
components: Documentation
messages: 320638
nosy: docs@python, kbumsik
priority: normal
severity: normal
status: open
title: Typo: BaseSubprocessTransport -> SubprocessTransport
versions: Python 3.6

___
Python tracker 
<https://bugs.python.org/issue33986>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33986] asyncio: Typo in documentation: BaseSubprocessTransport -> SubprocessTransport

2018-06-27 Thread Bumsik Kim


Change by Bumsik Kim :


--
keywords: +patch
pull_requests: +7592
stage:  -> patch review

___
Python tracker 
<https://bugs.python.org/issue33986>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33986] asyncio: Typo in documentation: BaseSubprocessTransport -> SubprocessTransport

2018-06-30 Thread Bumsik Kim


Bumsik Kim  added the comment:

As a note, BaseSubprocessTransport is used for implementation of 
SubprocessTransport. BaseSubprocessTransport is not exposed outside of the 
module.

--

___
Python tracker 
<https://bugs.python.org/issue33986>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33986] asyncio: Typo in documentation: BaseSubprocessTransport -> SubprocessTransport

2018-07-02 Thread Bumsik Kim


Bumsik Kim  added the comment:

I also found that SubprocessTransport.close() does not reflect the changes done 
in #23347.

--

___
Python tracker 
<https://bugs.python.org/issue33986>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-02 Thread Bumsik Kim


New submission from Bumsik Kim :

webbrowser module currently opens Opera Browser using the following command:

opera -remote "openURL(https://google.com,new-window)"

While this follows Opera's documentation 
(https://www.opera.com/docs/switches/#remote), this is broken since Opera 
switched from its own engine to Chromium. The working command is exactly the 
same as Chrome:

opera --new-window https://google.com

--
components: Library (Lib)
messages: 320863
nosy: kbumsik
priority: normal
severity: normal
status: open
title: webbrowser: wrong arguments for Opera browser.
versions: Python 3.7

___
Python tracker 
<https://bugs.python.org/issue34019>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-02 Thread Bumsik Kim


Change by Bumsik Kim :


--
keywords: +patch
pull_requests: +7656
stage:  -> patch review

___
Python tracker 
<https://bugs.python.org/issue34019>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-02 Thread Bumsik Kim


Change by Bumsik Kim :


--
versions: +Python 2.7, Python 3.4, Python 3.5, Python 3.6, Python 3.8

___
Python tracker 
<https://bugs.python.org/issue34019>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-02 Thread Bumsik Kim


Bumsik Kim  added the comment:

$opera --version
53.0.2907.68

$opera -remote "openURL(https://google.com,new-window)"

would open a broken link: http://openurl%28https//google.com,new-window) 

I found that problem while answering a StackOverflow question: 
https://stackoverflow.com/questions/51123537/webbrowser-open-breaks-the-link-python-3-7

--

___
Python tracker 
<https://bugs.python.org/issue34019>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-02 Thread Bumsik Kim


Bumsik Kim  added the comment:

No problem :) To add more, the Opera's documentation 
(https://www.opera.com/docs/switches) says:

"This document was last updated for Opera 11.61"

This is the reason I guessed Opera changed its CLI format to Chrome's and 
forget to document it

--

___
Python tracker 
<https://bugs.python.org/issue34019>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-05 Thread Bumsik Kim


Bumsik Kim  added the comment:

I also believe this can be backported to 2.7 as well.

--

___
Python tracker 
<https://bugs.python.org/issue34019>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33649] asyncio docs overhaul

2018-09-12 Thread Bumsik Kim


Change by Bumsik Kim :


--
pull_requests: +8651

___
Python tracker 
<https://bugs.python.org/issue33649>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33649] asyncio docs overhaul

2018-09-12 Thread Bumsik Kim


Bumsik Kim  added the comment:

Hi, I came from #33986. I noticed that the new doc still does not reflect a 
design change on SubprocessTransport.close() done in #23347. I made a PR to fix 
that.

BTW this is opposed to the original PEP 3156: 
https://www.python.org/dev/peps/pep-3156/#subprocess-transports . I don't know 
if it is commonly happens.

--
nosy: +kbumsik

___
Python tracker 
<https://bugs.python.org/issue33649>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33986] asyncio: Typo in documentation: BaseSubprocessTransport -> SubprocessTransport

2018-09-12 Thread Bumsik Kim


Bumsik Kim  added the comment:

#33649 does not solve a problem of SubprocessTransport.close() done in #23347. 
I made a PR #33649 directly to fix that.

--

___
Python tracker 
<https://bugs.python.org/issue33986>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33649] asyncio docs overhaul

2018-09-15 Thread Bumsik Kim


Change by Bumsik Kim :


--
pull_requests: +8753

___
Python tracker 
<https://bugs.python.org/issue33649>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com