[Python-checkins] Add two spaces around equal sign (#23719)

willingc webhook-mailer at python.org
Sun Dec 13 00:27:31 EST 2020


https://github.com/python/cpython/commit/da431f789bd1e6b9790f06f9ce47b3ec6a701e65
commit: da431f789bd1e6b9790f06f9ce47b3ec6a701e65
branch: master
author: sblondon <sblondon at users.noreply.github.com>
committer: willingc <carolcode at willingconsulting.com>
date: 2020-12-12T21:27:22-08:00
summary:

Add two spaces around equal sign (#23719)

Fit to PEP8 coding style

files:
M Doc/library/subprocess.rst

diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index 292f8be20aa98..7f947efcb6766 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -1281,7 +1281,7 @@ be used directly:
 
 becomes::
 
-   output=check_output("dmesg | grep hda", shell=True)
+   output = check_output("dmesg | grep hda", shell=True)
 
 
 Replacing :func:`os.system`



More information about the Python-checkins mailing list