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: subprocess.rst typo ``"shell=True"`` => ``shell=True``
Type: Stage: resolved
Components: Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: eric.araujo, jack__d, lukasz.langa, miss-islington
Priority: normal Keywords: patch

Created on 2021-07-22 22:07 by jack__d, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 27297 merged jack__d, 2021-07-22 22:08
PR 27298 merged miss-islington, 2021-07-22 23:06
PR 27327 merged miss-islington, 2021-07-24 10:00
Messages (5)
msg398010 - (view) Author: Jack DeVries (jack__d) * Date: 2021-07-22 22:07
Good feedback from @merwork just missed the merge, but he is right: it should be ``shell=True``, not ``"shell=True"``.

https://github.com/python/cpython/pull/26755#discussion_r675128438

I'll be attaching a PR in just a moment.
msg398015 - (view) Author: miss-islington (miss-islington) Date: 2021-07-22 23:06
New changeset 7d25254cf0763b62f4c4a3019e56385cab597b9f by Jack DeVries in branch 'main':
bpo-44713: [doc fix]: typo in subprocess.rst (GH-27297)
https://github.com/python/cpython/commit/7d25254cf0763b62f4c4a3019e56385cab597b9f
msg398016 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2021-07-22 23:29
Thanks for the follow-up!  Note that the original bug could have been reused.
msg398137 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-07-24 09:59
New changeset 45caee27159aa89b8dbcfde0c5faedea5f965584 by Miss Islington (bot) in branch '3.10':
bpo-44713: [doc fix]: typo in subprocess.rst (GH-27297) (GH-27298)
https://github.com/python/cpython/commit/45caee27159aa89b8dbcfde0c5faedea5f965584
msg398140 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-07-24 10:30
New changeset 5d9c86e340b40379d18ffeb7ce1739e07bdeb536 by Miss Islington (bot) in branch '3.9':
bpo-44713: [doc fix]: typo in subprocess.rst (GH-27297) (#27327)
https://github.com/python/cpython/commit/5d9c86e340b40379d18ffeb7ce1739e07bdeb536
History
Date User Action Args
2022-04-11 14:59:47adminsetgithub: 88879
2021-07-24 10:30:28lukasz.langasetmessages: + msg398140
2021-07-24 10:00:28miss-islingtonsetpull_requests: + pull_request25871
2021-07-24 09:59:26lukasz.langasetnosy: + lukasz.langa
messages: + msg398137
2021-07-22 23:29:42eric.araujosetstatus: open -> closed

nosy: + eric.araujo
messages: + msg398016

resolution: fixed
stage: patch review -> resolved
2021-07-22 23:06:36miss-islingtonsetpull_requests: + pull_request25841
2021-07-22 23:06:27miss-islingtonsetnosy: + miss-islington
messages: + msg398015
2021-07-22 22:08:51jack__dsetkeywords: + patch
stage: patch review
pull_requests: + pull_request25840
2021-07-22 22:07:21jack__dcreate