diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-10-20 15:01:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-20 15:01:56 (GMT) |
commit | 4aed781eb44cedcb9e7c2dbea993f38625961d1e (patch) | |
tree | 291a77e578a2ebb02cf2bf8feaf77c36ea64b49a | |
parent | b249aeae89f55b9da5cdff082ba271e2b15b7825 (diff) | |
download | cpython-4aed781eb44cedcb9e7c2dbea993f38625961d1e.zip cpython-4aed781eb44cedcb9e7c2dbea993f38625961d1e.tar.gz cpython-4aed781eb44cedcb9e7c2dbea993f38625961d1e.tar.bz2 |
Doc: Add missing spaces after period for `posix_spawn` (GH-22730)
(cherry picked from commit 5b57fa69408c4856bf0ae02f2eaa3db1ef980ea6)
Co-authored-by: Tomer Cohen <tomer@users.noreply.github.com>
-rw-r--r-- | Doc/library/os.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 64bc735..6e287ab 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -3695,8 +3695,8 @@ written in Python, such as a mail server's external command delivery program. The positional-only arguments *path*, *args*, and *env* are similar to :func:`execve`. - The *path* parameter is the path to the executable file.The *path* should - contain a directory.Use :func:`posix_spawnp` to pass an executable file + The *path* parameter is the path to the executable file. The *path* should + contain a directory. Use :func:`posix_spawnp` to pass an executable file without directory. The *file_actions* argument may be a sequence of tuples describing actions |