1. 4ca7c3c Issue #8748: Fix incorrect results from comparisons between an integer by Mark Dickinson · 15 years ago
  2. 4b3035d Remove declaration for unused variable. by Mark Dickinson · 15 years ago
  3. 8133637 Issue #5211: Complete removal of implicit coercions for the complex by Mark Dickinson · 15 years ago
  4. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 15 years ago
  5. bce3e17 #7482: clarify error message in case of division by zero of float and complex numbers. by Ezio Melotti · 15 years ago
  6. 82b34c5 Issue #5211: Fix complex type to avoid implicit calls to by Mark Dickinson · 15 years ago
  7. 3694366 factor out __complex__ lookup code to fix another case by Benjamin Peterson · 16 years ago
  8. ecdae19 do correct lookup of the __complex__ method by Benjamin Peterson · 16 years ago
  9. 31f0cfe Include ieeefp.h (when available) in pyport.h instead of individually in by Mark Dickinson · 16 years ago
  10. c04c7c5 Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod in by Mark Dickinson · 16 years ago
  11. a4e0efa Issue #5829: don't raise OverflowError for complex('1e500'). Backport of r72803. by Mark Dickinson · 16 years ago
  12. 50626db Issue #6044: remove confusing wording from complex -> integer and by Mark Dickinson · 16 years ago
  13. 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
  14. 777e4ff Eliminate some locale-dependent calls to isspace and tolower. by Mark Dickinson · 16 years ago
  15. 9139cc6 Issue #1588: Add complex.__format__. by Eric Smith · 16 years ago
  16. 944c6ae Reset errno before both calls to PyOS_ascii_strtod, not just one. by Mark Dickinson · 16 years ago
  17. 0a6501b Fix typo in complex parsing code; expand tests. by Mark Dickinson · 16 years ago
  18. 90d47cb Fix missing 'return NULL' by Mark Dickinson · 16 years ago
  19. 95bc980 Issue #5816: by Mark Dickinson · 16 years ago
  20. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
  21. 80af6da Fixed complex.__getnewargs__() to not emit another complex object. by Alexandre Vassalotti · 17 years ago
  22. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
  23. 6f34109 I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. by Christian Heimes · 17 years ago
  24. 9fdfaaf Fix compiler warning about finite() missing on Solaris. by Neal Norwitz · 17 years ago
  25. 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
  26. d7e1b2b static PyObject* variables should use PyString_InternFromString() instead of PyObject_FromString() to store a python string in a function level static var. by Christian Heimes · 18 years ago
  27. 96f2184 Indentation normalization. by Georg Brandl · 18 years ago
  28. 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 18 years ago
  29. e227263 Shut up a compiler warning. by Guido van Rossum · 18 years ago
  30. 715ec18 Patch # 1507 by Mark Dickinson. Make complex(x, -0) retain the sign of by Guido van Rossum · 18 years ago
  31. 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 18 years ago
  32. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
  33. 2b86994 Patch #1675423: PyComplex_AsCComplex() now tries to convert an object by Georg Brandl · 18 years ago
  34. 8f032cb Patch #1642844: comments to clarify the complexobject constructor. by Georg Brandl · 18 years ago
  35. 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
  36. 0593de3 Fix SF #1676971, Complex OverflowError has a typo by Neal Norwitz · 18 years ago
  37. 4b0a315 Use sizeof(buffer) instead of duplicating the constants to ensure they won't by Neal Norwitz · 19 years ago
  38. 6b50c63 Correctly allocate complex types with tp_alloc. (bug #1498638) by Georg Brandl · 19 years ago
  39. 429433b C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places by Skip Montanaro · 19 years ago
  40. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 19 years ago
  41. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  42. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  43. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 20 years ago
  44. c404ff2 patch [ 1118729 ] Error in representation of complex numbers(again) by Georg Brandl · 20 years ago
  45. 5d01aa4 Bug #1079011: Incorrect error message (somewhat) by Raymond Hettinger · 21 years ago
  46. 70aa1f2 Fix repr for negative imaginary part. Fixes #1013908. by Martin v. Löwis · 21 years ago
  47. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 21 years ago
  48. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 22 years ago
  49. 0970dba Remove 'e.g.' from error message by Raymond Hettinger · 22 years ago
  50. 465fa3d complex_new(): This could leak when the argument was neither string nor by Tim Peters · 22 years ago
  51. 5ecd6c4 Fix typo in comment. by Walter Dörwald · 22 years ago
  52. 4eadfa2 Fix from Greg Chapman from SF bug #695651: a complex subclass by Guido van Rossum · 22 years ago
  53. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 23 years ago
  54. 604cd6a complex() was the only numeric constructor that created a new instance by Raymond Hettinger · 23 years ago
  55. e3a8e7e Call me anal, but there was a particular phrase that was speading to by Guido van Rossum · 23 years ago
  56. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 23 years ago
  57. 65ce6de Rearrange the #ifndef WITHOUT_COMPLEX so it can be picked up from pyconfig.h. by Guido van Rossum · 23 years ago
  58. 478d47a Close SF bug 563740. complex() now finds __complex__() in new style classes. by Raymond Hettinger · 23 years ago
  59. 69cf3c7 Deprecate % as well. The message for deprecation of //, % and divmod by Guido van Rossum · 23 years ago
  60. 9ec4c78 SF bug #543387. by Guido van Rossum · 23 years ago
  61. 077f271 SF bug 543840: complex(string) accepts strings with \0 by Tim Peters · 23 years ago
  62. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 23 years ago
  63. bab22be SF bug 533198: Complex power underflow raises exception. by Tim Peters · 23 years ago
  64. fa2e4c2 Declare real and imag as read-only attributes. by Guido van Rossum · 24 years ago
  65. 526c7a0 Ensure that complex() only accepts a string argument as the first arg, by Fred Drake · 24 years ago
  66. 01d697a complex_to_buf(), complex_subtype_from_c_complex(): Conversion of by Barry Warsaw · 24 years ago
  67. 70e3688 complex_subtype_from_string(): move the declaration of s_buffer[] out by Guido van Rossum · 24 years ago
  68. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 24 years ago
  69. 2ed6bf8 Merge branch changes (coercion, rich comparisons) into trunk. by Guido van Rossum · 24 years ago
  70. 2205642 Do the same thing to complex that I did to str: the rich comparison by Guido van Rossum · 24 years ago
  71. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 24 years ago
  72. 6380596 complex_coerce(): add explicit PyComplex_Check() test. Previously, by Guido van Rossum · 24 years ago
  73. 2400fa4 Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 24 years ago
  74. 387c547 Revert parts of patch #453627, documenting the resulting test failures instead. by Martin v. Löwis · 24 years ago
  75. 655c955 Patch #453627: Define the following macros when compiling on a UnixWare 7.x system: by Martin v. Löwis · 24 years ago
  76. 9fffa3e Raise OverflowError when appropriate on long->float conversion. Most of by Tim Peters · 24 years ago
  77. 1832de4 PEP 238 documented -Qwarn as warning only for classic int or long by Guido van Rossum · 24 years ago
  78. 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 24 years ago
  79. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 24 years ago
  80. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 24 years ago
  81. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 24 years ago
  82. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 24 years ago
  83. 0f33604 SF bug [ #409448 ] Complex division is braindead by Tim Peters · 24 years ago
  84. 7069512 When 1.6 boosted the # of digits produced by repr(float), repr(complex) by Tim Peters · 24 years ago
  85. be4cbb1 Use rich comparisons to fulfill an old wish: complex numbers now raise by Guido van Rossum · 25 years ago
  86. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 25 years ago
  87. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 25 years ago
  88. 39dce29 Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470. by Tim Peters · 25 years ago
  89. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 25 years ago
  90. 4288c80 ANSI-fication of the sources. by Fred Drake · 25 years ago
  91. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 25 years ago
  92. fd71b9e Change copyright notice. by Guido van Rossum · 25 years ago
  93. 13634cf This patch addresses two main issues: (1) There exist some non-fatal by Fred Drake · 25 years ago
  94. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
  95. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 25 years ago
  96. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 26 years ago
  97. 3bbef60 Ai! complex_nonzero() has && which should be ||, else decidedly by Guido van Rossum · 27 years ago
  98. 8530ef6 Add check to conjugate() that there are no excess arguments. by Guido van Rossum · 27 years ago
  99. 9678394 Got rid of c_error in favor of errno (and EDOM/ERANGE). by Guido van Rossum · 28 years ago
  100. c0b618a Quickly renamed the last directory. by Guido van Rossum · 28 years ago