From: Georg Brandl Date: Mon, 7 Jan 2008 09:16:46 +0000 (+0000) Subject: Fix note markup. X-Git-Tag: v3.0a3~225 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=60fe2f13f9cf12be3d3807cd3d4ec187f2d1450a;p=thirdparty%2FPython%2Fcpython.git Fix note markup. --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index f1c410137022..7a4938c537b3 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -296,9 +296,9 @@ numeric operations have a higher priority than comparison operations): +---------------------+---------------------------------+-------+--------------------+ | ``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::