@@ -465,9 +465,9 @@ functions.
465
465
:func: `open ` function when creating the stdin/stdout/stderr pipe
466
466
file objects:
467
467
468
- - :const: ` 0 ` means unbuffered (read and write are one
468
+ - `` 0 ` ` means unbuffered (read and write are one
469
469
system call and can return short)
470
- - :const: ` 1 ` means line buffered
470
+ - `` 1 ` ` means line buffered
471
471
(only usable if ``text=True `` or ``universal_newlines=True ``)
472
472
- any other positive value means use a buffer of approximately that
473
473
size
@@ -477,7 +477,7 @@ functions.
477
477
.. versionchanged :: 3.3.1
478
478
*bufsize * now defaults to -1 to enable buffering by default to match the
479
479
behavior that most code expects. In versions prior to Python 3.2.4 and
480
- 3.3.1 it incorrectly defaulted to :const: ` 0 ` which was unbuffered
480
+ 3.3.1 it incorrectly defaulted to `` 0 ` ` which was unbuffered
481
481
and allowed short reads. This was unintentional and did not match the
482
482
behavior of Python 2 as most code expected.
483
483
@@ -541,8 +541,8 @@ functions.
541
541
:exc: `RuntimeError `. The new restriction may affect applications that
542
542
are deployed in mod_wsgi, uWSGI, and other embedded environments.
543
543
544
- If *close_fds * is true, all file descriptors except :const: ` 0 `, :const: ` 1 ` and
545
- :const: ` 2 ` will be closed before the child process is executed. Otherwise
544
+ If *close_fds * is true, all file descriptors except `` 0 ``, `` 1 ` ` and
545
+ `` 2 ` ` will be closed before the child process is executed. Otherwise
546
546
when *close_fds * is false, file descriptors obey their inheritable flag
547
547
as described in :ref: `fd_inheritance `.
548
548
0 commit comments