diff options
author | Mariatta Wijaya <Mariatta@users.noreply.github.com> | 2022-06-30 17:23:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-30 17:23:04 (GMT) |
commit | 62bb7a3b50150495e215d7bd32f633eef81b3bc2 (patch) | |
tree | 9d93c2f90bf0aebf9e5c21f03349f501b7a5a7b9 /Doc | |
parent | 594c3699492bfb007650538726d953cbed55de04 (diff) | |
download | cpython-62bb7a3b50150495e215d7bd32f633eef81b3bc2.zip cpython-62bb7a3b50150495e215d7bd32f633eef81b3bc2.tar.gz cpython-62bb7a3b50150495e215d7bd32f633eef81b3bc2.tar.bz2 |
multiprocessing.spawn doc: Capitalize the p in "Python" (gh-94462)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/multiprocessing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 2a66b0f..a8e35bc 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -96,7 +96,7 @@ Depending on the platform, :mod:`multiprocessing` supports three ways to start a process. These *start methods* are *spawn* - The parent process starts a fresh python interpreter process. The + The parent process starts a fresh Python interpreter process. The child process will only inherit those resources necessary to run the process object's :meth:`~Process.run` method. In particular, unnecessary file descriptors and handles from the parent process |