diff options
author | Georg Brandl <georg@python.org> | 2008-01-07 09:16:46 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-07 09:16:46 (GMT) |
commit | 60fe2f13f9cf12be3d3807cd3d4ec187f2d1450a (patch) | |
tree | 83b99a3efc74b95056af05ef31e6159ac6f73d3a /Doc/library | |
parent | fd855164d0ab32bec205696ea46bdc63f3c23c57 (diff) | |
download | cpython-60fe2f13f9cf12be3d3807cd3d4ec187f2d1450a.zip cpython-60fe2f13f9cf12be3d3807cd3d4ec187f2d1450a.tar.gz cpython-60fe2f13f9cf12be3d3807cd3d4ec187f2d1450a.tar.bz2 |
Fix note markup.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/stdtypes.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index f1c4101..7a4938c 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:: |