diff options
author | Alex Waygood <Alex.Waygood@Gmail.com> | 2022-05-19 15:31:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-19 15:31:51 (GMT) |
commit | 84b86000e2bc32b0fbb6dfb6445a7ffc882067d2 (patch) | |
tree | b165b7227ba8fcda758417dceaa2bfe6b23f0c3e | |
parent | 090df844ea16af3a5df79aba2b9c89ac6a31ba06 (diff) | |
download | cpython-84b86000e2bc32b0fbb6dfb6445a7ffc882067d2.zip cpython-84b86000e2bc32b0fbb6dfb6445a7ffc882067d2.tar.gz cpython-84b86000e2bc32b0fbb6dfb6445a7ffc882067d2.tar.bz2 |
gh-92417: `subprocess` docs: remove note on compatibility with Python <3.5 (GH-92538)
-rw-r--r-- | Doc/library/subprocess.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index ce581ab..4031a5f 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -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, \ |