]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[Minor PR] Quotes in documentation changed into code blocks (#99536)
authorBart Broere <mail@bartbroere.eu>
Sat, 24 Dec 2022 20:17:39 +0000 (21:17 +0100)
committerGitHub <noreply@github.com>
Sat, 24 Dec 2022 20:17:39 +0000 (12:17 -0800)
Minor formatting fix in documentation

Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
Doc/library/subprocess.rst

index 14414ea7f81ea32c0762695c232e620013c66eae..e4e38e933681b2569d275accd704d835393f6a05 100644 (file)
@@ -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