History log of /external/python/cpython2/Lib/test/test_fractions.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
ca666245e7fb80bee6befa522be6a6c9fe5c9dd7 29-Feb-2012 Ezio Melotti <ezio.melotti@gmail.com> #14089: increase coverage of the fractions module. Patch by Oleg Plakhotnyuk.
/external/python/cpython2/Lib/test/test_fractions.py
2623a37852153363335956afab010cb0beb7e74e 21-Nov-2010 Ezio Melotti <ezio.melotti@gmail.com> Merged revisions 86596 via svnmerge from
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.
........
/external/python/cpython2/Lib/test/test_fractions.py
7c63eee4854ef4227ce7a79c4b153e75af6aab46 03-Apr-2010 Mark Dickinson <dickinsm@gmail.com> Issue #8294: Allow float and Decimal arguments in Fraction constructor.
/external/python/cpython2/Lib/test/test_fractions.py
71b7fac07ba978630844bdabee59492e329d036c 27-Mar-2010 Mark Dickinson <dickinsm@gmail.com> Make Fraction to complex comparisons with <=, <, >= or > raise TypeError.
/external/python/cpython2/Lib/test/test_fractions.py
dde5b94875460e704099593766f4a5bc3279483d 03-Feb-2010 Ezio Melotti <ezio.melotti@gmail.com> #7092: Silence more py3k warnings. Patch by Florent Xicluna.
/external/python/cpython2/Lib/test/test_fractions.py
ce8e33a095030e7af94f58f9da196b240bdf0476 08-Jan-2010 Senthil Kumaran <orsenthil@gmail.com> Reverting the Revision: 77368. I committed Flox's big patch for tests by
mistake. ( It may come in for sure tough)
/external/python/cpython2/Lib/test/test_fractions.py
3ddc435af6873c6304058d7bcbcb19ee4fba7781 08-Jan-2010 Senthil Kumaran <orsenthil@gmail.com> Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox
/external/python/cpython2/Lib/test/test_fractions.py
88a0a2e47fa60c26b3662ef5ee152fd78181c7b1 18-Jul-2009 Mark Dickinson <dickinsm@gmail.com> Issue #6431: Fix Fraction comparisons with unknown types, and with
float infinities and nans. Backport of r74078 from py3k.
/external/python/cpython2/Lib/test/test_fractions.py
4af8e745c4a8a225af3c3025909a8c042aafcca0 24-Apr-2009 Mark Dickinson <dickinsm@gmail.com> Issue #5812: The two-argument form of the Fraction constructor
now accepts arbitrary Rational instances.
/external/python/cpython2/Lib/test/test_fractions.py
8100bd8431cae4b079ffc1f0c3e33ba019661994 22-Apr-2009 Mark Dickinson <dickinsm@gmail.com> Issue #5812: make Fraction('1e-6') valid. Backport of r71806.
/external/python/cpython2/Lib/test/test_fractions.py
933d3a7a5474d135e451980a42171a690bd2bd2d 20-Jan-2009 Raymond Hettinger <python@rcn.com> Issue 4998: __slots__ on Fractions was useless.
/external/python/cpython2/Lib/test/test_fractions.py
fe427895b58769840f1f61a82ea0cdfe55150347 03-Jan-2009 Georg Brandl <georg@python.org> Manually merge r68095,68186,68187,68188,68190 from 2.6 branch.
/external/python/cpython2/Lib/test/test_fractions.py
b01713e7dc26721e821a2b3ed8a67600d68940fb 10-Jul-2008 Raymond Hettinger <python@rcn.com> Issue 3285: Fractions from_float() and from_decimal() accept Integral arguments.
/external/python/cpython2/Lib/test/test_fractions.py
655d583a493e6ea03758011857945f290528658a 10-Jul-2008 Raymond Hettinger <python@rcn.com> Issue 3287: Raise correct exception for float inputs.
/external/python/cpython2/Lib/test/test_fractions.py
3af386a5cb935a7efbfa30f33be3be80ed4d71fa 27-Jun-2008 Mark Dickinson <dickinsm@gmail.com> Remove trailing 'L's from numerator and denominator in the
repr() of a Fraction instance.
/external/python/cpython2/Lib/test/test_fractions.py
f484363baecbe69def74a4535cb9545869424dcb 21-Jun-2008 Andrew M. Kuchling <amk@amk.ca> Use repr() for bad input strings; this makes the empty string or binary characters more visible
/external/python/cpython2/Lib/test/test_fractions.py
c5f05e45cffa16f45f1332cec531c045893f928f 23-Feb-2008 Christian Heimes <christian@cheimes.de> Patch #2167 from calvin: Remove unused imports
/external/python/cpython2/Lib/test/test_fractions.py
1c214d6c942df3fc7af548f7c7e10961dcaba3ee 14-Feb-2008 Jeffrey Yasskin <jyasskin@gmail.com> Performance optimizations on Fraction's constructor.

./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
/external/python/cpython2/Lib/test/test_fractions.py
5f8bd3729ee36296ba5ae71d128f6879022818d2 12-Feb-2008 Mark Dickinson <dickinsm@gmail.com> Replace R=fractions.Fraction with F=fractions.Fraction in
test_fractions.py. This should have been part of the name
change from Rational to Fraction.
/external/python/cpython2/Lib/test/test_fractions.py
e1b824793a4b10d5119459b47546b122a17c18b4 12-Feb-2008 Mark Dickinson <dickinsm@gmail.com> Implementation of Fraction.limit_denominator.

Remove Fraction.to_continued_fraction and
Fraction.from_continued_fraction
/external/python/cpython2/Lib/test/test_fractions.py
cd873fc1428b52620e26e44e19ce00a7ed79555c 11-Feb-2008 Mark Dickinson <dickinsm@gmail.com> Put an extra space into the repr of a Fraction:
Fraction(1, 2) instead of Fraction(1,2).
/external/python/cpython2/Lib/test/test_fractions.py
d058cd2cc8e2a3f61609b92a8fc821ea8ec524ca 10-Feb-2008 Mark Dickinson <dickinsm@gmail.com> Rename rational.Rational to fractions.Fraction, to avoid name clash
with numbers.Rational. See issue #1682 for related discussion.
/external/python/cpython2/Lib/test/test_fractions.py