diff options
author | Hasan Ramezani <hasan.r67@gmail.com> | 2019-09-09 15:58:21 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@python.org> | 2019-09-09 15:58:21 (GMT) |
commit | fb6807b043ab586428225920373e551b0432bc40 (patch) | |
tree | 1609d8527a719b51dd18640ec09ce07c30ce63eb /Lib/os.py | |
parent | 370138ba9c29595df773cc057d17ea26fb6f21bd (diff) | |
download | cpython-fb6807b043ab586428225920373e551b0432bc40.zip cpython-fb6807b043ab586428225920373e551b0432bc40.tar.gz cpython-fb6807b043ab586428225920373e551b0432bc40.tar.bz2 |
Fix punctuation in `os.execvpe` docstring. (GH-15051)
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) |