[Python-checkins] closes bpo-40774: Fix docs indentation for asyncio.create_subprocess_shell() (GH-20403)

Miss Islington (bot) webhook-mailer at python.org
Tue May 26 00:16:00 EDT 2020


https://github.com/python/cpython/commit/1f2cc7cedee1a768ee43151c115f6e338751eb8c
commit: 1f2cc7cedee1a768ee43151c115f6e338751eb8c
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-05-25T21:15:52-07:00
summary:

closes bpo-40774: Fix docs indentation for asyncio.create_subprocess_shell() (GH-20403)

(cherry picked from commit 4a0ac42c52a4d9ccfb0a78ab02aa03172ce0e31a)

Co-authored-by: sth <sth.dev at tejp.de>

files:
M Doc/library/asyncio-subprocess.rst

diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst
index 1d87d2f8005ec..eb1312a949a10 100644
--- a/Doc/library/asyncio-subprocess.rst
+++ b/Doc/library/asyncio-subprocess.rst
@@ -95,14 +95,14 @@ Creating Subprocesses
    See the documentation of :meth:`loop.subprocess_shell` for other
    parameters.
 
-.. important::
-
-   It is the application's responsibility to ensure that all whitespace and
-   special characters are quoted appropriately to avoid `shell injection
-   <https://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_
-   vulnerabilities. The :func:`shlex.quote` function can be used to properly
-   escape whitespace and special shell characters in strings that are going
-   to be used to construct shell commands.
+   .. important::
+
+      It is the application's responsibility to ensure that all whitespace and
+      special characters are quoted appropriately to avoid `shell injection
+      <https://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_
+      vulnerabilities. The :func:`shlex.quote` function can be used to properly
+      escape whitespace and special shell characters in strings that are going
+      to be used to construct shell commands.
 
    .. deprecated-removed:: 3.8 3.10
 



More information about the Python-checkins mailing list