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: Incorrect reference names in asyncio.subprocess documentation
Type: Stage: resolved
Components: Documentation Versions: Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Eric Ahn, aeros, carlbordum, docs@python
Priority: normal Keywords:

Created on 2017-01-01 02:44 by Eric Ahn, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg284418 - (view) Author: Eric Ahn (Eric Ahn) Date: 2017-01-01 02:44
On this page of the documentation https://docs.python.org/3/library/asyncio-subprocess.html it seems that some of the reference names are incorrect.

Namely, asyncio.subprocess.PIPE is referred to as asyncio.asyncio.subprocess.PIPE (along with STDOUT and DEVNULL), plus asyncio.subprocess.Process is referred to as asyncio.asyncio.subprocess.Process.

This is reflected in the permalinks as well as when one tries to reference these via intersphinx (which is how I discovered it; I was trying to link to this page and was failing).
msg377780 - (view) Author: Carl Bordum Hansen (carlbordum) * Date: 2020-10-01 18:38
I do not think this is the case any longer
msg377801 - (view) Author: Kyle Stanley (aeros) * (Python committer) Date: 2020-10-02 07:26
I can confirm that both on the latest version of the docs (for 3.8) and for the version mentioned in the issue (3.6), the issue mentioned with asyncio.subprocess.PIPE is no longer present. (It was likely fixed in the asyncio documentation overhaul that happened within the last couple of years).

As a result, I'll proceed with closing this issue. Thanks for checking, Carl.
History
Date User Action Args
2022-04-11 14:58:41adminsetgithub: 73313
2020-10-02 07:26:47aerossetstatus: open -> closed

nosy: + aeros
messages: + msg377801

resolution: fixed
stage: resolved
2020-10-01 18:38:14carlbordumsetnosy: + carlbordum
messages: + msg377780
2017-01-01 02:44:14Eric Ahncreate