[Python-3000-checkins] r59814 - python/branches/py3k/Doc/library/stdtypes.rst

georg.brandl python-3000-checkins at python.org
Mon Jan 7 10:16:46 CET 2008


Author: georg.brandl
Date: Mon Jan  7 10:16:46 2008
New Revision: 59814

Modified:
   python/branches/py3k/Doc/library/stdtypes.rst
Log:
Fix note markup.


Modified: python/branches/py3k/Doc/library/stdtypes.rst
==============================================================================
--- python/branches/py3k/Doc/library/stdtypes.rst	(original)
+++ python/branches/py3k/Doc/library/stdtypes.rst	Mon Jan  7 10:16:46 2008
@@ -296,9 +296,9 @@
 +---------------------+---------------------------------+-------+--------------------+
 | ``divmod(x, y)``    | the pair ``(x // y, x % y)``    | \(2)  | :func:`divmod`     |
 +---------------------+---------------------------------+-------+--------------------+
-| ``pow(x, y)``       | *x* to the power *y*            | (5)   | :func:`pow`        |
+| ``pow(x, y)``       | *x* to the power *y*            | \(5)  | :func:`pow`        |
 +---------------------+---------------------------------+-------+--------------------+
-| ``x ** y``          | *x* to the power *y*            | (5)   |                    |
+| ``x ** y``          | *x* to the power *y*            | \(5)  |                    |
 +---------------------+---------------------------------+-------+--------------------+
 
 .. index::


More information about the Python-3000-checkins mailing list