1. 7c63eee Issue #8294: Allow float and Decimal arguments in Fraction constructor. by Mark Dickinson · 15 years ago
  2. 71b7fac Make Fraction to complex comparisons with <=, <, >= or > raise TypeError. by Mark Dickinson · 15 years ago
  3. dde5b94 #7092: Silence more py3k warnings. Patch by Florent Xicluna. by Ezio Melotti · 15 years ago
  4. ce8e33a Reverting the Revision: 77368. I committed Flox's big patch for tests by by Senthil Kumaran · 15 years ago
  5. 3ddc435 Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox by Senthil Kumaran · 15 years ago
  6. 88a0a2e Issue #6431: Fix Fraction comparisons with unknown types, and with by Mark Dickinson · 16 years ago
  7. 4af8e74 Issue #5812: The two-argument form of the Fraction constructor by Mark Dickinson · 16 years ago
  8. 8100bd8 Issue #5812: make Fraction('1e-6') valid. Backport of r71806. by Mark Dickinson · 16 years ago
  9. 933d3a7 Issue 4998: __slots__ on Fractions was useless. by Raymond Hettinger · 16 years ago
  10. fe42789 Manually merge r68095,68186,68187,68188,68190 from 2.6 branch. by Georg Brandl · 16 years ago
  11. b01713e Issue 3285: Fractions from_float() and from_decimal() accept Integral arguments. by Raymond Hettinger · 17 years ago
  12. 655d583 Issue 3287: Raise correct exception for float inputs. by Raymond Hettinger · 17 years ago
  13. 3af386a Remove trailing 'L's from numerator and denominator in the by Mark Dickinson · 17 years ago
  14. f484363 Use repr() for bad input strings; this makes the empty string or binary characters more visible by Andrew M. Kuchling · 17 years ago
  15. c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 17 years ago
  16. 1c214d6 Performance optimizations on Fraction's constructor. by Jeffrey Yasskin · 17 years ago
  17. 5f8bd37 Replace R=fractions.Fraction with F=fractions.Fraction in by Mark Dickinson · 17 years ago
  18. e1b8247 Implementation of Fraction.limit_denominator. by Mark Dickinson · 17 years ago
  19. cd873fc Put an extra space into the repr of a Fraction: by Mark Dickinson · 17 years ago
  20. d058cd2 Rename rational.Rational to fractions.Fraction, to avoid name clash by Mark Dickinson · 17 years ago[Renamed (89%) from Lib/test/test_rational.py]
  21. 27d3394 Oops! 2.6's Rational.__ne__ didn't work. by Jeffrey Yasskin · 17 years ago
  22. 1dabdb2 Make the Rational constructor accept '3.' and '.2' as well as '3.2'. by Mark Dickinson · 17 years ago
  23. dc2964b Roll back r60248. It's useful to encourage users not to change Rational by Jeffrey Yasskin · 17 years ago
  24. ca2b69f Move __builtins__.trunc() to math.trunc() per by Jeffrey Yasskin · 17 years ago
  25. 38db364 Remove unused to-be-magic methods from Rational per issue 1968. Do not port by Jeffrey Yasskin · 17 years ago
  26. 3e1a373 Make rational.gcd() public and allow Rational to take decimal strings, per by Jeffrey Yasskin · 17 years ago
  27. 9c6d81f Fix-up signature for approximation. by Raymond Hettinger · 17 years ago
  28. a621674 Add support for copy, deepcopy, and pickle. by Raymond Hettinger · 17 years ago
  29. 5b0e27e Add support for int(r) just like the other numeric classes. by Raymond Hettinger · 17 years ago
  30. eb46190 Minor clean-up and more tests. by Raymond Hettinger · 17 years ago
  31. cf10926 Add first-cut at an approximation function (still needs rounding tweaks). Add continued fraction conversions. by Raymond Hettinger · 17 years ago
  32. 45169fb Several tweaks: add construction from strings and .from_decimal(), change by Jeffrey Yasskin · 17 years ago
  33. d7b0033 Add rational.Rational as an implementation of numbers.Rational with infinite by Jeffrey Yasskin · 17 years ago