From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 19 May 2022 15:56:04 +0000 (-0700) Subject: gh-92417: `subprocess` docs: remove note on compatibility with Python <3.5 (GH-92538... X-Git-Tag: v3.11.0b2~64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=de97d8229c6bf31f47341d10de98b938fccb8b8f;p=thirdparty%2FPython%2Fcpython.git gh-92417: `subprocess` docs: remove note on compatibility with Python <3.5 (GH-92538) (GH-92972) (cherry picked from commit 84b86000e2bc32b0fbb6dfb6445a7ffc882067d2) Co-authored-by: Alex Waygood --- diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index ce581abdd1dc..4031a5f62167 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, \