@@ -465,9 +465,9 @@ functions.
465465 :func: `open ` function when creating the stdin/stdout/stderr pipe
466466 file objects:
467467
468- - :const: ` 0 ` means unbuffered (read and write are one
468+ - `` 0 ` ` means unbuffered (read and write are one
469469 system call and can return short)
470- - :const: ` 1 ` means line buffered
470+ - `` 1 ` ` means line buffered
471471 (only usable if ``text=True `` or ``universal_newlines=True ``)
472472 - any other positive value means use a buffer of approximately that
473473 size
@@ -477,7 +477,7 @@ functions.
477477 .. versionchanged :: 3.3.1
478478 *bufsize * now defaults to -1 to enable buffering by default to match the
479479 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
481481 and allowed short reads. This was unintentional and did not match the
482482 behavior of Python 2 as most code expected.
483483
@@ -541,8 +541,8 @@ functions.
541541 :exc: `RuntimeError `. The new restriction may affect applications that
542542 are deployed in mod_wsgi, uWSGI, and other embedded environments.
543543
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
546546 when *close_fds * is false, file descriptors obey their inheritable flag
547547 as described in :ref: `fd_inheritance `.
548548
0 commit comments