@@ -837,12 +837,12 @@ def scons_subproc_run(
837
837
back. Typical case: run a tool's "version" option to find out which
838
838
version you have installed.
839
839
840
- If supplied, the :keyword:` env` keyword argument passes an
840
+ If supplied, the `` env` ` keyword argument passes an
841
841
execution environment to process into appropriate form before it is
842
842
supplied to :mod:`subprocess`; if omitted, *scons_env* is used to derive
843
843
a suitable default. The other keyword arguments are passed through,
844
- except that SCons legacy :keyword: `error` keyword is remapped to
845
- the subprocess :keyword: `check` keyword. The caller is responsible for
844
+ except that SCons legacy ` `error` keyword is remapped to
845
+ the subprocess ` `check` keyword. The caller is responsible for
846
846
setting up the desired arguments for :func:`subprocess.run`.
847
847
848
848
This function retains the legacy behavior of returning something
@@ -858,12 +858,12 @@ def scons_subproc_run(
858
858
the subprocess; the default ``None`` does no redirection
859
859
(i.e. output or errors may go to the console or log file,
860
860
but is not captured); if set to :const:`subprocess.DEVNULL`
861
- they are explicitly thrown away. :keyword:` capture_output` is a
862
- synonym for setting both :keyword:` stdout` and :keyword:` stderr`
861
+ they are explicitly thrown away. `` capture_output` ` is a
862
+ synonym for setting both `` stdout`` and `` stderr` `
863
863
to :const:`~subprocess.PIPE`.
864
864
text: open *stdin*, *stdout*, *stderr* in text mode. Default
865
- is binary mode. :keyword:` universal_newlines` is a synonym -
866
- note :keyword:` text` is not understood before Python 3.7.
865
+ is binary mode. `` universal_newlines` ` is a synonym -
866
+ note `` text` ` is not understood before Python 3.7.
867
867
encoding: specifies an encoding. Changes to text mode.
868
868
errors: specified error handling. Changes to text mode.
869
869
input: a byte sequence to be passed to *stdin*, unless text
0 commit comments