From 331e5b8062210a2b0220cb0df1c363215bd3feb4 Mon Sep 17 00:00:00 2001 From: Hasan Ramezani Date: Mon, 9 Sep 2019 17:58:21 +0200 Subject: [PATCH] Fix punctuation in `os.execvpe` docstring. (GH-15051) (cherry picked from commit fb6807b043ab586428225920373e551b0432bc40) Co-authored-by: Hasan Ramezani --- Lib/os.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/os.py b/Lib/os.py index 499e6285618f21..41896cd11bfd6f 100644 --- 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)