8000 [3.11] gh-92417: `subprocess` docs: remove note on compatibility with Python <3.5 (GH-92538) by miss-islington · Pull Request #92972 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.11] gh-92417: subprocess docs: remove note on compatibility with Python <3.5 (GH-92538) #92972

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 19, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
gh-92417: subprocess docs: remove note on compatibility with Python…
… <3.5 (GH-92538)

(cherry picked from commit 84b8600)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
  • Loading branch information
AlexWaygood authored and miss-islington committed May 19, 2022
commit 8f422680f0f7efb79d6c8054c39b9e747ea7ceaf
3 changes: 0 additions & 3 deletions Doc/library/subprocess.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ The recommended approach to invoking subprocesses is to use the :func:`run`
function for all use cases it can handle. For more advanced use cases, the
underlying :class:`Popen` interface can be used directly.

The :func:`run` function was added in Python 3.5; if you need to retain
compatibility with older versions, see the :ref:`call-function-trio` section.


.. function:: run(args, *, stdin=None, input=None, stdout=None, stderr=None,\
capture_output=False, shell=False, cwd=None, timeout=None, \
Expand Down
0