diff options
author | Bart Broere <mail@bartbroere.eu> | 2022-12-24 20:17:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-24 20:17:39 (GMT) |
commit | efccd04b9efc1752a845b377399d2068b06d04e7 (patch) | |
tree | b6c47249b398bf5e0c5ba91ce094a8ec23c21ea0 /Doc/library | |
parent | 2e1a9ce9890aba748a518a39d01d1ea6d623d0d9 (diff) | |
download | cpython-efccd04b9efc1752a845b377399d2068b06d04e7.zip cpython-efccd04b9efc1752a845b377399d2068b06d04e7.tar.gz cpython-efccd04b9efc1752a845b377399d2068b06d04e7.tar.bz2 |
[Minor PR] Quotes in documentation changed into code blocks (#99536)
Minor formatting fix in documentation
Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/subprocess.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 14414ea..e4e38e9 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -1567,6 +1567,8 @@ If you ever encounter a presumed highly unusual situation where you need to prevent ``vfork()`` from being used by Python, you can set the :attr:`subprocess._USE_VFORK` attribute to a false value. +:: + subprocess._USE_VFORK = False # See CPython issue gh-NNNNNN. Setting this has no impact on use of ``posix_spawn()`` which could use @@ -1574,6 +1576,8 @@ Setting this has no impact on use of ``posix_spawn()`` which could use :attr:`subprocess._USE_POSIX_SPAWN` attribute if you need to prevent use of that. +:: + subprocess._USE_POSIX_SPAWN = False # See CPython issue gh-NNNNNN. It is safe to set these to false on any Python version. They will have no |