]> granicus.if.org Git - python/commitdiff
Fix some misuses of Sphinx roles and one typo
authorÉric Araujo <merwok@netwok.org>
Thu, 1 Sep 2011 01:19:30 +0000 (03:19 +0200)
committerÉric Araujo <merwok@netwok.org>
Thu, 1 Sep 2011 01:19:30 +0000 (03:19 +0200)
Doc/c-api/init.rst
Doc/faq/design.rst
Doc/faq/windows.rst
Doc/howto/logging.rst
Doc/library/argparse.rst

index 4b70ec29a4e971e3beb6a7a8092366799c7aec30..94f8c05ea62897831b53dabc53b03c0161404a7d 100644 (file)
@@ -122,7 +122,7 @@ Process-wide parameters
    program name is ``'/usr/local/bin/python'``, the prefix is ``'/usr/local'``. The
    returned string points into static storage; the caller should not modify its
    value.  This corresponds to the :makevar:`prefix` variable in the top-level
-   :file:`Makefile` and the :option:`--prefix` argument to the :program:`configure`
+   :file:`Makefile` and the ``--prefix`` argument to the :program:`configure`
    script at build time.  The value is available to Python code as ``sys.prefix``.
    It is only useful on Unix.  See also the next function.
 
@@ -135,7 +135,7 @@ Process-wide parameters
    program name is ``'/usr/local/bin/python'``, the exec-prefix is
    ``'/usr/local'``.  The returned string points into static storage; the caller
    should not modify its value.  This corresponds to the :makevar:`exec_prefix`
-   variable in the top-level :file:`Makefile` and the :option:`--exec-prefix`
+   variable in the top-level :file:`Makefile` and the ``--exec-prefix``
    argument to the :program:`configure` script at build  time.  The value is
    available to Python code as ``sys.exec_prefix``.  It is only useful on Unix.
 
index b9faf576bfd4273072a3746ace3eaaca3290e7f0..02417b1e90f1e1b31715ee18c772a0ceb08e8b04 100644 (file)
@@ -667,7 +667,7 @@ construction of large programs.
 Python 2.6 adds an :mod:`abc` module that lets you define Abstract Base Classes
 (ABCs).  You can then use :func:`isinstance` and :func:`issubclass` to check
 whether an instance or a class implements a particular ABC.  The
-:mod:`collections` modules defines a set of useful ABCs such as
+:mod:`collections` module defines a set of useful ABCs such as
 :class:`Iterable`, :class:`Container`, and :class:`MutableMapping`.
 
 For Python, many of the advantages of interface specifications can be obtained
index 8a209507732f55bef10e8f427b15ca564f2eed23..6b37faf9b5b54959ab1e7947d64b98ec059cf1a8 100644 (file)
@@ -546,7 +546,7 @@ A trick to get it to run an arbitrary file is to construct a call to
 :func:`execfile` with the name of your file as argument.
 
 Also note that you can not mix-and-match Debug and Release versions.  If you
-wish to use the Debug Multithreaded DLL, then your module *must* have an "_d"
+wish to use the Debug Multithreaded DLL, then your module *must* have ``_d``
 appended to the base name.
 
 
index a7d6024a77115e41cc33d87b667e51e5e4fc00e8..5ff0d74f6fb60b7f574996e254f103ad79fa2e6a 100644 (file)
@@ -412,10 +412,10 @@ With the logger object configured, the following methods create log messages:
   :meth:`Logger.error`, and :meth:`Logger.critical` all create log records with
   a message and a level that corresponds to their respective method names. The
   message is actually a format string, which may contain the standard string
-  substitution syntax of :const:`%s`, :const:`%d`, :const:`%f`, and so on.  The
+  substitution syntax of ``%s``, ``%d``, ``%f``, and so on.  The
   rest of their arguments is a list of objects that correspond with the
-  substitution fields in the message.  With regard to :const:`**kwargs`, the
-  logging methods care only about a keyword of :const:`exc_info` and use it to
+  substitution fields in the message.  With regard to ``**kwargs``, the
+  logging methods care only about a keyword of ``exc_info`` and use it to
   determine whether to log exception information.
 
 * :meth:`Logger.exception` creates a log message similar to
index 8d602fed1166e775b9a9bc4b2bb8caa1e9c1b4b5..f1287298c44aeba85a844e353ce1cada3c637aa4 100644 (file)
@@ -155,7 +155,7 @@ ArgumentParser objects
      conflicting optionals.
 
    * prog_ - The name of the program (default:
-     :data:`sys.argv[0]`)
+     ``sys.argv[0]``)
 
    * usage_ - The string describing the program usage (default: generated)