diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-09-09 17:44:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-09 17:44:46 (GMT) |
commit | 421ef39968a5e59cf09fe1983f76be1c6866c637 (patch) | |
tree | 9f3fb06b6672320fe8efb7eb7b6e01e053f16212 /Lib/os.py | |
parent | eadf6b8787e979920c4fb6845797c33d270d2729 (diff) | |
download | cpython-421ef39968a5e59cf09fe1983f76be1c6866c637.zip cpython-421ef39968a5e59cf09fe1983f76be1c6866c637.tar.gz cpython-421ef39968a5e59cf09fe1983f76be1c6866c637.tar.bz2 |
Fix punctuation in `os.execvpe` docstring. (GH-15051)
(cherry picked from commit fb6807b043ab586428225920373e551b0432bc40)
Co-authored-by: Hasan Ramezani <hasan.r67@gmail.com>
Diffstat (limited to 'Lib/os.py')
-rw-r--r-- | Lib/os.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |