summaryrefslogtreecommitdiffstats
path: root/Doc/library/fractions.rst
Commit message (Collapse)AuthorAgeFilesLines
* 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.