diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-02-02 23:22:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-02 23:22:22 (GMT) |
commit | 9c6c40ec90f5ce5db8c8fc1ce45a95bb98fd8705 (patch) | |
tree | 09e67529eccfc2fe5098b4895397f8861a5adc6b | |
parent | 034bb70aaad5622bd53bad21595b18b8f4407984 (diff) | |
download | cpython-9c6c40ec90f5ce5db8c8fc1ce45a95bb98fd8705.zip cpython-9c6c40ec90f5ce5db8c8fc1ce45a95bb98fd8705.tar.gz cpython-9c6c40ec90f5ce5db8c8fc1ce45a95bb98fd8705.tar.bz2 |
[3.12] gh-114913: Add newline to subprocess doc (GH-114941) (#114942)
*creationflags* is a separate topic from *startupinfo*.
Start sentence with 'If given', like previous sentence.
(cherry picked from commit 1183f1e6bfba06ae6c8ea362f96e977bc288e627)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
-rw-r--r-- | Doc/library/subprocess.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index c437ce7..f63ca73 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -664,7 +664,8 @@ functions. If given, *startupinfo* will be a :class:`STARTUPINFO` object, which is passed to the underlying ``CreateProcess`` function. - *creationflags*, if given, can be one or more of the following flags: + + If given, *creationflags*, can be one or more of the following flags: * :data:`CREATE_NEW_CONSOLE` * :data:`CREATE_NEW_PROCESS_GROUP` |