- 21 Kas, 2010 1 kayıt (commit)
-
-
Ezio Melotti yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
-
- 02 Nis, 2010 1 kayıt (commit)
-
-
Mark Dickinson yazdı
-
- 27 Mar, 2010 1 kayıt (commit)
-
-
Mark Dickinson yazdı
-
- 03 Şub, 2010 1 kayıt (commit)
-
-
Ezio Melotti yazdı
-
- 08 Ock, 2010 2 kayıt (commit)
-
-
Senthil Kumaran yazdı
mistake. ( It may come in for sure tough)
-
Senthil Kumaran yazdı
-
- 18 Tem, 2009 1 kayıt (commit)
-
-
Mark Dickinson yazdı
float infinities and nans. Backport of r74078 from py3k.
-
- 24 Nis, 2009 1 kayıt (commit)
-
-
Mark Dickinson yazdı
now accepts arbitrary Rational instances.
-
- 22 Nis, 2009 1 kayıt (commit)
-
-
Mark Dickinson yazdı
-
- 20 Ock, 2009 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 03 Ock, 2009 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 10 Tem, 2008 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 27 Haz, 2008 1 kayıt (commit)
-
-
Mark Dickinson yazdı
repr() of a Fraction instance.
-
- 21 Haz, 2008 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
- 23 Şub, 2008 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 14 Şub, 2008 1 kayıt (commit)
-
-
Jeffrey Yasskin yazdı
./python.exe -m timeit -s 'from fractions import Fraction' 'Fraction(3)` 31.7 usec/loop -> 9.2 usec/loop ./python.exe -m timeit -s 'from fractions import Fraction' 'Fraction(3, 2)'` 27.7 usec/loop -> 9.32 usec/loop ./python.exe -m timeit -s 'from fractions import Fraction; f = Fraction(3, 2)' 'Fraction(f)' 31.9 usec/loop -> 14.3 usec/loop
-
- 12 Şub, 2008 2 kayıt (commit)
-
-
Mark Dickinson yazdı
test_fractions.py. This should have been part of the name change from Rational to Fraction.
-
Mark Dickinson yazdı
Remove Fraction.to_continued_fraction and Fraction.from_continued_fraction
-
- 11 Şub, 2008 1 kayıt (commit)
-
-
Mark Dickinson yazdı
Fraction(1, 2) instead of Fraction(1,2).
-
- 10 Şub, 2008 1 kayıt (commit)
-
-
Mark Dickinson yazdı
with numbers.Rational. See issue #1682 for related discussion.
-
- 08 Şub, 2008 1 kayıt (commit)
-
-
Jeffrey Yasskin yazdı
-
- 02 Şub, 2008 1 kayıt (commit)
-
-
Mark Dickinson yazdı
-
- 01 Şub, 2008 2 kayıt (commit)
-
-
Jeffrey Yasskin yazdı
instances.
-
Jeffrey Yasskin yazdı
http://mail.python.org/pipermail/python-dev/2008-January/076626.html and issue 1965.
-
- 31 Ock, 2008 1 kayıt (commit)
-
-
Jeffrey Yasskin yazdı
this patch to py3k.
-
- 27 Ock, 2008 1 kayıt (commit)
-
-
Jeffrey Yasskin yazdı
Raymond's advice.
-
- 25 Ock, 2008 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 24 Ock, 2008 3 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
Add first-cut at an approximation function (still needs rounding tweaks). Add continued fraction conversions.
-
- 19 Ock, 2008 1 kayıt (commit)
-
-
Jeffrey Yasskin yazdı
__init__ to __new__ to enforce immutability, and remove "rational." from repr and the parens from str.
-
- 15 Ock, 2008 1 kayıt (commit)
-
-
Jeffrey Yasskin yazdı
precision. This has been discussed at http://bugs.python.org/issue1682. It's useful primarily for teaching, but it also demonstrates how to implement a member of the numeric tower, including fallbacks for mixed-mode arithmetic. I expect to write a couple more patches in this area: * Rational.from_decimal() * Rational.trim/approximate() (maybe with different names) * Maybe remove the parentheses from Rational.__str__() * Maybe rename one of the Rational classes * Maybe make Rational('3/2') work.
-