summaryrefslogtreecommitdiffstats
path: root/Doc/library/fractions.rst
Commit message (Collapse)AuthorAgeFilesLines
* Issue #25161: Add full stops in documentation; patch by Takase ArihiroMartin Panter2015-10-101-1/+1
|
* Remove debug output from example.Ezio Melotti2012-12-081-1/+0
|
* Backport source links from 3.x.Éric Araujo2011-08-191-1/+3
| | | | | Existing links have been updated to use the new reST role. In some files, I have also made cosmetic changes to the header.
* Issue #8294: Allow float and Decimal arguments in Fraction constructor.Mark Dickinson2010-04-021-11/+38
|
* Documentation fix for change introduced in r71832Mark Dickinson2009-07-301-1/+1
|
* Issue #5812: make Fraction('1e-6') valid. Backport of r71806.Mark Dickinson2009-04-221-9/+8
|
* Fix uses of the default role.Georg Brandl2009-01-031-5/+5
|
* 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.