]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix punctuation in `os.execvpe` docstring. (GH-15051)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 9 Sep 2019 17:46:13 +0000 (10:46 -0700)
committerGitHub <noreply@github.com>
Mon, 9 Sep 2019 17:46:13 +0000 (10:46 -0700)
(cherry picked from commit fb6807b043ab586428225920373e551b0432bc40)

Co-authored-by: Hasan Ramezani <hasan.r67@gmail.com>
Lib/os.py

index 499e6285618f212801d3690311badc739b824070..41896cd11bfd6fc3c3808fb89441957df42542c8 100644 (file)
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -574,7 +574,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)