[Python-checkins] Fix punctuation in `os.execvpe` docstring. (GH-15051)

Miss Islington (bot) webhook-mailer at python.org
Mon Sep 9 13:44:50 EDT 2019


https://github.com/python/cpython/commit/421ef39968a5e59cf09fe1983f76be1c6866c637
commit: 421ef39968a5e59cf09fe1983f76be1c6866c637
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-09-09T10:44:46-07:00
summary:

Fix punctuation in `os.execvpe` docstring. (GH-15051)

(cherry picked from commit fb6807b043ab586428225920373e551b0432bc40)

Co-authored-by: Hasan Ramezani <hasan.r67 at gmail.com>

files:
M Lib/os.py

diff --git a/Lib/os.py b/Lib/os.py
index 79ff7a22d92e..200902528cbf 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -568,7 +568,7 @@ def execvpe(file, args, env):
     """execvpe(file, args, env)
 
     Execute the executable file (which is searched for along $PATH)
-    with argument list args and environment env , replacing the
+    with argument list args and environment env, replacing the
     current process.
     args may be a list or tuple of strings. """
     _execvpe(file, args, env)



More information about the Python-checkins mailing list