diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-03-12 17:58:40 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-03-12 17:58:40 (GMT) |
commit | 62e0b90be208084c252b9ec674df5bc6115bd1e4 (patch) | |
tree | 66f8e0274827a53e5c6209ae9bef89f729d4ca29 /Doc | |
parent | a7f0dffb8d690ea00bbe99098be5a601835ec267 (diff) | |
parent | ab2b71699cce1b6f2e3de34c8b79a433101a28b8 (diff) | |
download | cpython-62e0b90be208084c252b9ec674df5bc6115bd1e4.zip cpython-62e0b90be208084c252b9ec674df5bc6115bd1e4.tar.gz cpython-62e0b90be208084c252b9ec674df5bc6115bd1e4.tar.bz2 |
merge 3.1
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/numbers.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/numbers.rst b/Doc/library/numbers.rst index 67c2f33..df8d521 100644 --- a/Doc/library/numbers.rst +++ b/Doc/library/numbers.rst @@ -45,7 +45,7 @@ The numeric tower To :class:`Complex`, :class:`Real` adds the operations that work on real numbers. - In short, those are: a conversion to :class:`float`, :func:`trunc`, + In short, those are: a conversion to :class:`float`, :func:`math.trunc`, :func:`round`, :func:`math.floor`, :func:`math.ceil`, :func:`divmod`, ``//``, ``%``, ``<``, ``<=``, ``>``, and ``>=``. |