diff options
author | Éric Araujo <merwok@netwok.org> | 2011-06-08 03:29:39 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-06-08 03:29:39 (GMT) |
commit | d2f8cec88558993e10c1dae103a5bae6549e25ef (patch) | |
tree | a61c0868cfabcf550902be4039ddd6805b9db1f1 /Doc/c-api/intro.rst | |
parent | 96deb7550effe961b2847a340ff05b1ab899d379 (diff) | |
download | cpython-d2f8cec88558993e10c1dae103a5bae6549e25ef.zip cpython-d2f8cec88558993e10c1dae103a5bae6549e25ef.tar.gz cpython-d2f8cec88558993e10c1dae103a5bae6549e25ef.tar.bz2 |
Fix a few misuses of :option: I missed in r86521.
Extract of the commit message:
Fix usage of :option: in the docs (#9312).
:option: is used to create a link to an option of python, not to mark
up any instance of any arbitrary command-line option. These were
changed to ````.
Diffstat (limited to 'Doc/c-api/intro.rst')
-rw-r--r-- | Doc/c-api/intro.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/c-api/intro.rst b/Doc/c-api/intro.rst index 83b98f9..843707d 100644 --- a/Doc/c-api/intro.rst +++ b/Doc/c-api/intro.rst @@ -588,8 +588,8 @@ frequently-used builds will be described in the remainder of this section. Compiling the interpreter with the :c:macro:`Py_DEBUG` macro defined produces what is generally meant by "a debug build" of Python. :c:macro:`Py_DEBUG` is -enabled in the Unix build by adding :option:`--with-pydebug` to the -:file:`configure` command. It is also implied by the presence of the +enabled in the Unix build by adding ``--with-pydebug`` to the +:file:`./configure` command. It is also implied by the presence of the not-Python-specific :c:macro:`_DEBUG` macro. When :c:macro:`Py_DEBUG` is enabled in the Unix build, compiler optimization is disabled. |