]> granicus.if.org Git - python/commitdiff
Diverse markup fixes.
authorGeorg Brandl <georg@python.org>
Thu, 6 Dec 2007 01:52:24 +0000 (01:52 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 6 Dec 2007 01:52:24 +0000 (01:52 +0000)
Doc/library/bdb.rst
Doc/library/logging.rst
Doc/library/othergui.rst
Doc/library/ssl.rst
Doc/library/tarfile.rst
Doc/library/warnings.rst

index a8a61f17dd0daa3c2b287337847fbdb797f85b17..36f83007f63db443fc960369e6c89198eca018f5 100644 (file)
@@ -239,7 +239,7 @@ something went wrong, or ``None`` if all is well.
 .. method:: Bdb.clear_bpbynumber(arg)
 
    Delete the breakpoint which has the index *arg* in the
-   :attr:`Breakpoint.bpbynumber`.  If `arg` is not numeric or out of range,
+   :attr:`Breakpoint.bpbynumber`.  If *arg* is not numeric or out of range,
    return an error message.
 
 .. method:: Bdb.clear_all_file_breaks(filename)
index e2ecf74cf20b5cdab650193b9a1d248afe405f34..c125cb5d35fac82849e5cdadb325e26102dfe0e0 100644 (file)
@@ -749,7 +749,7 @@ functions.
       The proposal which described this feature for inclusion in the Python standard
       library.
 
-   `Original Python :mod:`logging` package <http://www.red-dove.com/python_logging.html>`_
+   `Original Python logging package <http://www.red-dove.com/python_logging.html>`_
       This is the original source for the :mod:`logging` package.  The version of the
       package available from this site is suitable for use with Python 1.5.2, 2.1.x
       and 2.2.x, which do not include the :mod:`logging` package in the standard
index aadb74d77339df2da2ab67fb849e5040b011a036..91b59e0225d7a1e53a5c01ad5e1ef8fdc2328e7e 100644 (file)
@@ -48,7 +48,7 @@ also available for Python:
       online `tutorial <http://www.pygtk.org/pygtk2tutorial/index.html>`_ is
       available.
 
-   `PyQt <//http://www.riverbankcomputing.co.uk/pyqt/index.php>`_
+   `PyQt <http://www.riverbankcomputing.co.uk/pyqt/index.php>`_
       PyQt is a :program:`sip`\ -wrapped binding to the Qt toolkit.  Qt is an
       extensive C++ GUI application development framework that is
       available for Unix, Windows and Mac OS X. :program:`sip` is a tool
index 4a39efd795aa0ea2d9ad2e0de58480e9c6a40b69..bd16ca9ad888c8a22360b87a5a0807272c9dbabe 100644 (file)
@@ -112,13 +112,14 @@ Functions, Constants, and Exceptions
 
        ========================  =========  =========  ==========  =========
         *client* / **server**    **SSLv2**  **SSLv3**  **SSLv23**  **TLSv1**
+       ------------------------  ---------  ---------  ----------  ---------
         *SSLv2*                    yes        no         yes*        no
         *SSLv3*                    yes        yes        yes         no
         *SSLv23*                   yes        no         yes         no
         *TLSv1*                    no         no         yes         yes
        ========================  =========  =========  ==========  =========
 
-   `*` In some older versions of OpenSSL (for instance, 0.9.7l on OS X 10.4),
+   In some older versions of OpenSSL (for instance, 0.9.7l on OS X 10.4),
    an SSLv2 client could not connect to an SSLv23 server.
 
 .. function:: RAND_status()
index c2f3ac6b155b3a0fae8ca257a42d7117fae2ccfd..e5e7608f9fd33db1ac42f8339dd9ec415616fa1c 100644 (file)
@@ -15,7 +15,7 @@
 
 The :mod:`tarfile` module makes it possible to read and write tar
 archives, including those using gzip or bz2 compression.
-(`.zip` files can be read and written using the :mod:`zipfile` module.)
+(:file:`.zip` files can be read and written using the :mod:`zipfile` module.)
 
 Some facts and figures:
 
index 6188195c747b5b216f068408bd762c5ace5eb238..d031b15d973a35ec4360fa118b379f096b3f3ae5 100644 (file)
@@ -203,7 +203,7 @@ Available Functions
 .. function:: warnpy3k(message[, category[, stacklevel]])
 
    Issue a warning related to Python 3.x deprecation. Warnings are only shown 
-   when Python is started with the -3 option. Like func:`warn` *message* must
+   when Python is started with the -3 option. Like :func:`warn` *message* must
    be a string and *category* a subclass of :exc:`Warning`. :func:`warnpy3k`
    is using :exc:`DeprecationWarning` as default warning class.