@@ -463,9 +463,9 @@ functions.
463463 :func: `open ` function when creating the stdin/stdout/stderr pipe
464464 file objects:
465465
466- - :const: ` 0 ` means unbuffered (read and write are one
466+ - `` 0 ` ` means unbuffered (read and write are one
467467 system call and can return short)
468- - :const: ` 1 ` means line buffered
468+ - `` 1 ` ` means line buffered
469469 (only usable if ``text=True `` or ``universal_newlines=True ``)
470470 - any other positive value means use a buffer of approximately that
471471 size
@@ -475,7 +475,7 @@ functions.
475475 .. versionchanged :: 3.3.1
476476 *bufsize * now defaults to -1 to enable buffering by default to match the
477477 behavior that most code expects. In versions prior to Python 3.2.4 and
478- 3.3.1 it incorrectly defaulted to :const: ` 0 ` which was unbuffered
478+ 3.3.1 it incorrectly defaulted to `` 0 ` ` which was unbuffered
479479 and allowed short reads. This was unintentional and did not match the
480480 behavior of Python 2 as most code expected.
481481
@@ -540,8 +540,8 @@ functions.
540540 :exc: `RuntimeError `. The new restriction may affect applications that
541541 are deployed in mod_wsgi, uWSGI, and other embedded environments.
542542
543- If *close_fds * is true, all file descriptors except :const: ` 0 `, :const: ` 1 ` and
544- :const: ` 2 ` will be closed before the child process is executed. Otherwise
543+ If *close_fds * is true, all file descriptors except `` 0 ``, `` 1 ` ` and
544+ `` 2 ` ` will be closed before the child process is executed. Otherwise
545545 when *close_fds * is false, file descriptors obey their inheritable flag
546546 as described in :ref: `fd_inheritance `.
547547
0 commit comments