1. c04c7c5 Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod in by Mark Dickinson · 16 years ago
  2. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
  3. a4e0efa Issue #5829: don't raise OverflowError for complex('1e500'). Backport of r72803. by Mark Dickinson · 16 years ago
  4. a985a3a 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
  5. 9139cc6 Issue #1588: Add complex.__format__. by Eric Smith · 16 years ago
  6. 0a6501b Fix typo in complex parsing code; expand tests. by Mark Dickinson · 16 years ago
  7. 95bc980 Issue #5816: by Mark Dickinson · 16 years ago
  8. 80af6da Fixed complex.__getnewargs__() to not emit another complex object. by Alexandre Vassalotti · 17 years ago
  9. 2f0da53 Fixed repr() and str() of complex numbers. Complex suffered from the same problem as floats but I forgot to test and fix them. by Christian Heimes · 17 years ago
  10. 105be77 Issue #1678380. Fix a bug that identifies 0j and -0j when they appear by Mark Dickinson · 18 years ago
  11. 715ec18 Patch # 1507 by Mark Dickinson. Make complex(x, -0) retain the sign of by Guido van Rossum · 18 years ago
  12. e38051d Patch #1491866: change the complex() constructor to allow parthensized forms. This means complex(repr(x)) now works instead of raising a ValueError. by Collin Winter · 18 years ago
  13. 9e28107 Test case for latest complexobject fix. by Georg Brandl · 20 years ago
  14. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 20 years ago
  15. 70aa1f2 Fix repr for negative imaginary part. Fixes #1013908. by Martin v. Löwis · 21 years ago
  16. 5301d9c Remove useless import. by Walter Dörwald · 22 years ago
  17. b27cca6 Check both __div__ and __truediv__ in division tests. (From SF patch #543867) by Walter Dörwald · 22 years ago
  18. f393fc6 Add various test cases from SF patch 543867. by Walter Dörwald · 22 years ago
  19. 478c105 Whitespace normalization. by Tim Peters · 22 years ago
  20. 5edd785 Port test_complex.py to unittest. by Walter Dörwald · 22 years ago
  21. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 23 years ago
  22. 7790297 test_support: add a docstring to vereq(). by Tim Peters · 24 years ago
  23. 5a0f010 SF Patch #497487 add test to compare conjugate of a complex number by Neal Norwitz · 24 years ago
  24. fc37af8 SF Patch #494873 add tests for complex numbers including calls to int()/long() by Neal Norwitz · 24 years ago
  25. 68773e7 Add a comment explaining what these tests are for, and where to look for by Fred Drake · 24 years ago
  26. c5b235c Reverting to rev 1.2. Apparently gcc doesn't use the extended-precision by Tim Peters · 24 years ago
  27. 419670d Rewrite to use test_support's fine fcmp instead -- I didn't know that by Tim Peters · 24 years ago
  28. 0b76d3a This division test was too stringent in its accuracy expectations for by Tim Peters · 24 years ago
  29. 0f33604 SF bug [ #409448 ] Complex division is braindead by Tim Peters · 24 years ago