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: "Important" block in documentation of asyncio.create_subprocess_shell() not indented correctly
Type: Stage: resolved
Components: Documentation Versions: Python 3.10, Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: benjamin.peterson, docs@python, miss-islington, sth
Priority: normal Keywords: patch

Created on 2020-05-25 23:07 by sth, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 20403 merged sth, 2020-05-25 23:18
PR 20406 merged miss-islington, 2020-05-26 04:08
PR 20407 merged benjamin.peterson, 2020-05-26 04:11
Messages (4)
msg369930 - (view) Author: Stephan Hohe (sth) * Date: 2020-05-25 23:07
The [documentation][1] for asyncio.create_subprocess_shell() contains an "important" block about quoting special characters. This block and the following deprecation note belong to this specific function, but are not correctly indented and shown at module level.

 [1]: https://docs.python.org/3.10/library/asyncio-subprocess.html#asyncio.create_subprocess_shell
msg369939 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2020-05-26 04:08
New changeset 4a0ac42c52a4d9ccfb0a78ab02aa03172ce0e31a by sth in branch 'master':
closes bpo-40774: Fix docs indentation for asyncio.create_subprocess_shell() (GH-20403)
https://github.com/python/cpython/commit/4a0ac42c52a4d9ccfb0a78ab02aa03172ce0e31a
msg369940 - (view) Author: miss-islington (miss-islington) Date: 2020-05-26 04:15
New changeset 1f2cc7cedee1a768ee43151c115f6e338751eb8c by Miss Islington (bot) in branch '3.8':
closes bpo-40774: Fix docs indentation for asyncio.create_subprocess_shell() (GH-20403)
https://github.com/python/cpython/commit/1f2cc7cedee1a768ee43151c115f6e338751eb8c
msg369941 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2020-05-26 04:19
New changeset b03e0ee226b72da737dd0fbf39b635d13bcc220d by Benjamin Peterson in branch '3.9':
[3.9] closes bpo-40774: Fix docs indentation for asyncio.create_subprocess_shell() (GH-20403) (#20407)
https://github.com/python/cpython/commit/b03e0ee226b72da737dd0fbf39b635d13bcc220d
History
Date User Action Args
2022-04-11 14:59:31adminsetgithub: 84951
2020-05-26 04:19:49benjamin.petersonsetmessages: + msg369941
2020-05-26 04:15:59miss-islingtonsetmessages: + msg369940
2020-05-26 04:11:58benjamin.petersonsetpull_requests: + pull_request19669
2020-05-26 04:08:56miss-islingtonsetnosy: + miss-islington

pull_requests: + pull_request19668
2020-05-26 04:08:44benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg369939

resolution: fixed
stage: patch review -> resolved
2020-05-25 23:18:35sthsetkeywords: + patch
stage: patch review
pull_requests: + pull_request19665
2020-05-25 23:07:08sthcreate