Fix punctuation in `os.execvpe` docstring. (GH-15051)
authorHasan Ramezani <hasan.r67@gmail.com>
Mon, 9 Sep 2019 15:58:21 +0000 (17:58 +0200)
committerSteve Dower <steve.dower@python.org>
Mon, 9 Sep 2019 15:58:21 +0000 (08:58 -0700)
Lib/os.py

index 79ff7a22d92e033e439e57bfe185d289a8d1bcd6..200902528cbfe95dc01cc5d5df8b4bd0fd42026a 100644 (file)
--- 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)