Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 80013d7

Browse files
miss-islingtonbartbroerehauntsaninja
authored
[Minor PR] Quotes in documentation changed into code blocks (GH-99536)
Minor formatting fix in documentation (cherry picked from commit efccd04) Co-authored-by: Bart Broere <[email protected]> Co-authored-by: Shantanu <[email protected]>
1 parent 3b70487 commit 80013d7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Doc/library/subprocess.rst

+4
Original file line numberDiff line numberDiff line change
@@ -1567,13 +1567,17 @@ If you ever encounter a presumed highly unusual situation where you need to
15671567
prevent ``vfork()`` from being used by Python, you can set the
15681568
:attr:`subprocess._USE_VFORK` attribute to a false value.
15691569

1570+
::
1571+
15701572
subprocess._USE_VFORK = False # See CPython issue gh-NNNNNN.
15711573

15721574
Setting this has no impact on use of ``posix_spawn()`` which could use
15731575
``vfork()`` internally within its libc implementation. There is a similar
15741576
:attr:`subprocess._USE_POSIX_SPAWN` attribute if you need to prevent use of
15751577
that.
15761578

1579+
::
1580+
15771581
subprocess._USE_POSIX_SPAWN = False # See CPython issue gh-NNNNNN.
15781582

15791583
It is safe to set these to false on any Python version. They will have no

0 commit comments

Comments
 (0)