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: Document text parameter to subprocess.Popen
Type: enhancement Stage: commit review
Components: Documentation Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Segev Finer, docs@python, gregory.p.smith
Priority: normal Keywords: patch

Created on 2018-02-10 13:23 by Segev Finer, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 5622 merged pablogsal, 2018-02-11 15:34
PR 5631 merged miss-islington, 2018-02-11 20:58
Messages (3)
msg311949 - (view) Author: Segev Finer (Segev Finer) * Date: 2018-02-10 13:23
The new text parameter in subprocess was documented for subprocess.run but not for subprocess.Popen in the Sphinx documentation. It is documented in the docstring for both though.
msg312013 - (view) Author: Gregory P. Smith (gregory.p.smith) * (Python committer) Date: 2018-02-11 20:58
New changeset e14c01037877768a3fe766e50d14993bd5d8a67e by Gregory P. Smith (Pablo Galindo) in branch 'master':
bpo-32815: Improve docs on the subprocess API *text* parameter (GH-5622)
https://github.com/python/cpython/commit/e14c01037877768a3fe766e50d14993bd5d8a67e
msg312018 - (view) Author: Gregory P. Smith (gregory.p.smith) * (Python committer) Date: 2018-02-11 23:21
New changeset ba4f218657efcba856d00eb320418355cce8309a by Gregory P. Smith (Miss Islington (bot)) in branch '3.7':
bpo-32815: Improve docs on the subprocess API *text* parameter (GH-5622) (GH-5631)
https://github.com/python/cpython/commit/ba4f218657efcba856d00eb320418355cce8309a
History
Date User Action Args
2022-04-11 14:58:57adminsetgithub: 76996
2018-02-11 23:21:39gregory.p.smithsetstatus: open -> closed
resolution: fixed
stage: patch review -> commit review
2018-02-11 23:21:04gregory.p.smithsetmessages: + msg312018
2018-02-11 20:58:33miss-islingtonsetpull_requests: + pull_request5435
2018-02-11 20:58:25gregory.p.smithsetnosy: + gregory.p.smith
messages: + msg312013
2018-02-11 15:34:59pablogsalsetkeywords: + patch
stage: patch review
pull_requests: + pull_request5431
2018-02-10 13:23:01Segev Finercreate