From: Hasan Ramezani Date: Mon, 9 Sep 2019 15:58:21 +0000 (+0200) Subject: Fix punctuation in `os.execvpe` docstring. (GH-15051) X-Git-Tag: v3.9.0a1~643 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb6807b043ab586428225920373e551b0432bc40;p=thirdparty%2FPython%2Fcpython.git Fix punctuation in `os.execvpe` docstring. (GH-15051) --- 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)