diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-03-12 17:59:10 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-03-12 17:59:10 (GMT) |
commit | 32b01270077a2d1588a4119f8b976d4f53e245de (patch) | |
tree | f7053bebb5772fe375e9359ad1759dd70a40e154 | |
parent | b9cd3531c42265f3063a7d202891a7497eb43130 (diff) | |
parent | 62e0b90be208084c252b9ec674df5bc6115bd1e4 (diff) | |
download | cpython-32b01270077a2d1588a4119f8b976d4f53e245de.zip cpython-32b01270077a2d1588a4119f8b976d4f53e245de.tar.gz cpython-32b01270077a2d1588a4119f8b976d4f53e245de.tar.bz2 |
merge 3.2
-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 ``>=``. |