1. fc07031 Merged revisions 83400 via svnmerge from by Mark Dickinson · 15 years ago
  2. bf9f79b Tests for Python 3.1's treatment of negated imaginary literals. by Mark Dickinson · 15 years ago
  3. 903fc05 Merged revisions 78333 via svnmerge from by Eric Smith · 15 years ago
  4. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 16 years ago
  5. 6b1e43b Issue #5829: complex('1e500') shouldn't raise OverflowError by Mark Dickinson · 16 years ago
  6. 741191f Issue #3382. float 'F' formatting no longer maps to 'f'. This only affects nan and inf. by Eric Smith · 16 years ago
  7. 6337622 Issue #5920: Changed format.__float__ and complex.__float__ to use a precision of 12 when using the empty presentation type. This more closely matches str()'s behavior and reduces surprises when adding alignment flags to an empty format string. Patch by Mark Dickinson. by Eric Smith · 16 years ago
  8. 58a4224 Issue #1588: Add complex.__format__. by Eric Smith · 16 years ago
  9. de8a710 Merged revisions 71869 via svnmerge from by Mark Dickinson · 16 years ago
  10. 6649fa4 Make sure that complex parsing code and corresponding tests by Mark Dickinson · 16 years ago
  11. ad476da Issue #5816: Simplify code for parsing and printing of complex numbers. by Mark Dickinson · 16 years ago
  12. 0c77a82 Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,63989,64014-64015,64021-64022,64063-64065,64067 via svnmerge from by Georg Brandl · 17 years ago
  13. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 17 years ago
  14. a156e09 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60845 via svnmerge from by Christian Heimes · 17 years ago
  15. 400adb0 Merged revisions 60475-60479,60481-60488 via svnmerge from by Christian Heimes · 18 years ago
  16. 69a7963 Merged revisions 59202-59211 via svnmerge from by Christian Heimes · 18 years ago
  17. 3404b3c Check in some documentation tweaks for PEP 3141, add some tests, and implement by Jeffrey Yasskin · 18 years ago
  18. 09549f4 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 18 years ago
  19. 39478e8 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 18 years ago
  20. 9648d62 Make test_complex pass again now that floordiv and mod are illegal. by Guido van Rossum · 18 years ago
  21. c025714 Fix file test. by Walter Dörwald · 18 years ago
  22. 1f5947b Remove have_unicode checks and merge those tests into the by Walter Dörwald · 18 years ago
  23. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 18 years ago
  24. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 18 years ago
  25. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
  26. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  27. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 19 years ago
  28. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 19 years ago
  29. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 19 years ago
  30. 9e28107 Test case for latest complexobject fix. by Georg Brandl · 20 years ago
  31. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 20 years ago
  32. 70aa1f2 Fix repr for negative imaginary part. Fixes #1013908. by Martin v. Löwis · 21 years ago
  33. 5301d9c Remove useless import. by Walter Dörwald · 22 years ago
  34. b27cca6 Check both __div__ and __truediv__ in division tests. (From SF patch #543867) by Walter Dörwald · 22 years ago
  35. f393fc6 Add various test cases from SF patch 543867. by Walter Dörwald · 22 years ago
  36. 478c105 Whitespace normalization. by Tim Peters · 22 years ago
  37. 5edd785 Port test_complex.py to unittest. by Walter Dörwald · 22 years ago
  38. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 23 years ago
  39. 7790297 test_support: add a docstring to vereq(). by Tim Peters · 24 years ago
  40. 5a0f010 SF Patch #497487 add test to compare conjugate of a complex number by Neal Norwitz · 24 years ago
  41. fc37af8 SF Patch #494873 add tests for complex numbers including calls to int()/long() by Neal Norwitz · 24 years ago
  42. 68773e7 Add a comment explaining what these tests are for, and where to look for by Fred Drake · 24 years ago
  43. c5b235c Reverting to rev 1.2. Apparently gcc doesn't use the extended-precision by Tim Peters · 24 years ago
  44. 419670d Rewrite to use test_support's fine fcmp instead -- I didn't know that by Tim Peters · 24 years ago
  45. 0b76d3a This division test was too stringent in its accuracy expectations for by Tim Peters · 24 years ago
  46. 0f33604 SF bug [ #409448 ] Complex division is braindead by Tim Peters · 24 years ago