summaryrefslogtreecommitdiffstats
path: root/Doc/library/fractions.rst
Commit message (Collapse)AuthorAgeFilesLines
* Issue #3197: rework documentation for fractions module.Mark Dickinson2008-06-271-33/+59
|
* Remove references to Py3k in __floor__, __ceil__ and __round__ documentation.Mark Dickinson2008-06-241-6/+3
|
* reformat some documentation of classes so methods and attributes are under ↵Benjamin Peterson2008-04-251-35/+33
| | | | the class directive
* Enable doctest running for several other documents.Georg Brandl2008-03-221-5/+5
| | | | We have now over 640 doctests that are run with "make doctest".
* Implementation of Fraction.limit_denominator.Mark Dickinson2008-02-121-0/+18
| | | | | Remove Fraction.to_continued_fraction and Fraction.from_continued_fraction
* Fix markupRaymond Hettinger2008-02-111-1/+1
|
* Rename rational.Rational to fractions.Fraction, to avoid name clashMark Dickinson2008-02-101-0/+75
with numbers.Rational. See issue #1682 for related discussion.