- 14 Şub, 2008 11 kayıt (commit)
-
-
Christian Heimes yazdı
Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
when trying to remove a pid that in not in the activechildren list.
-
Jeffrey Yasskin yazdı
self._numerator and self._denominator. This speeds abs() up from 12.2us to 10.8us and trunc() from 2.07us to 1.11us. This doesn't change _add and friends because they're more complicated.
-
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
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Kurt B. Kaiser yazdı
-
- 13 Şub, 2008 5 kayıt (commit)
-
-
Thomas Heller yazdı
-
Thomas Heller yazdı
-
Brett Cannon yazdı
works. Thanks to Jeroen Ruigrok van der Werven for the fix.
-
Jeffrey Yasskin yazdı
./python.exe -m timeit -s 'from fractions import Fraction; f = Fraction(3, 2)' 'isinstance(3, Fraction); isinstance(f, Fraction)' from 12.3 usec/loop to 3.44 usec/loop and ./python.exe -m timeit -s 'from fractions import Fraction' 'Fraction(3, 2)' from 48.8 usec to 23.6 usec by avoiding genexps and sets in __instancecheck__ and inlining the common case from __subclasscheck__.
-
Georg Brandl yazdı
result on Windows.
-
- 12 Şub, 2008 10 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ı
classmethods instead of staticmethods.
-
Mark Dickinson yazdı
Remove Fraction.to_continued_fraction and Fraction.from_continued_fraction
-
Raymond Hettinger yazdı
-
Martin v. Löwis yazdı
implements the chunked encoding incorrectly. Will backport to 2.5.
-
Kurt B. Kaiser yazdı
-
Martin v. Löwis yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 11 Şub, 2008 8 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Lars Gustäbel yazdı
-
Raymond Hettinger yazdı
-
Mark Dickinson yazdı
Fraction(1, 2) instead of Fraction(1,2).
-
Christian Heimes yazdı
-
- 10 Şub, 2008 6 kayıt (commit)
-
-
Mark Dickinson yazdı
with numbers.Rational. See issue #1682 for related discussion.
-
Raymond Hettinger yazdı
-
Mark Dickinson yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Mark Dickinson yazdı
-