summaryrefslogtreecommitdiffstats
path: root/Doc/library/numbers.rst
Commit message (Collapse)AuthorAgeFilesLines
* reformat some documentation of classes so methods and attributes are under ↵Benjamin Peterson2008-04-251-11/+11
| | | | the class directive
* Update docs to reflect removal of Exact/InexactRaymond Hettinger2008-03-161-26/+4
|
* Rename rational.Rational to fractions.Fraction, to avoid name clashMark Dickinson2008-02-101-5/+5
| | | | with numbers.Rational. See issue #1682 for related discussion.
* Added more documentation on how mixed-mode arithmetic should be implemented. IJeffrey Yasskin2008-01-311-0/+141
| | | | | also noticed and fixed a bug in Rational's forward operators (they were claiming all instances of numbers.Rational instead of just the concrete types).
* Remove with_statement future imports from 2.6 docs.Georg Brandl2008-01-051-1/+3
|
* Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (justJeffrey Yasskin2008-01-031-0/+99
the complex_pow part), r56649, r56652, r56715, r57296, r57302, r57359, r57361, r57372, r57738, r57739, r58017, r58039, r58040, and r59390, and new documentation. The only significant difference is that round(x) returns a float to preserve backward-compatibility. See http://bugs.python.org/issue1689.