1. 70099a1 Removed static function complex_format, moved it into complex_repr. Modified tests to check both str and repr, which are the same for complex. by Eric Smith · 14 years ago
  2. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  3. f961377 #6780: fix complex() constructor TypeError message by Victor Stinner · 14 years ago
  4. 8035bc5 follow up to #9778: define and use an unsigned hash type by Benjamin Peterson · 14 years ago
  5. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  6. 388122d Issue #9337: Make float.__str__ identical to float.__repr__. by Mark Dickinson · 14 years ago
  7. dc787d2 Issue #8188: Introduce a new scheme for computing hashes of numbers by Mark Dickinson · 14 years ago
  8. cc6a982 Issue #8748: Fix two issues with comparisons between complex and integer by Mark Dickinson · 14 years ago
  9. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  10. f673f0c Issue #7845: Make 1j.__le__(2j) return NotImplemented rather than raising TypeError. by Mark Dickinson · 14 years ago
  11. 5036326 Merged revisions 78319 via svnmerge from by Ezio Melotti · 14 years ago
  12. aea4428 Merged revisions 77292-77293 via svnmerge from by Benjamin Peterson · 15 years ago
  13. a4962cb Merged revisions 76561 via svnmerge from by Mark Dickinson · 15 years ago
  14. 1daebdf Make sure memory is freed on error in complex_subtype_from_string. by Mark Dickinson · 15 years ago
  15. f972488 Remove length limitation on string arguments to complex() by Mark Dickinson · 15 years ago
  16. ba1e0f4 Issue 7147 - remove ability to attempt to build Python without complex number support (was broken anyway) by Skip Montanaro · 15 years ago
  17. 6b1e43b Issue #5829: complex('1e500') shouldn't raise OverflowError by Mark Dickinson · 15 years ago
  18. 578cc74 Merged revisions 72718 via svnmerge from by Mark Dickinson · 15 years ago
  19. 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 · 15 years ago
  20. aa77d26 Merged revisions 72253 via svnmerge from by Mark Dickinson · 15 years ago
  21. 725bfd8 Issue #5914: Add new C-API function PyOS_string_to_double, to complement by Mark Dickinson · 15 years ago
  22. 58a4224 Issue #1588: Add complex.__format__. by Eric Smith · 15 years ago
  23. 35f1c94 Merged revisions 71963 via svnmerge from by Mark Dickinson · 15 years ago
  24. de8a710 Merged revisions 71869 via svnmerge from by Mark Dickinson · 15 years ago
  25. 6649fa4 Make sure that complex parsing code and corresponding tests by Mark Dickinson · 15 years ago
  26. ad476da Issue #5816: Simplify code for parsing and printing of complex numbers. by Mark Dickinson · 15 years ago
  27. 0923d1d The other half of Issue #1580: use short float repr where possible. by Eric Smith · 15 years ago
  28. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  29. 8055afd Issue #4910, patch 3/3: rename nb_long to nb_reserved by Mark Dickinson · 16 years ago
  30. cce2f21 Issue 4910, patch 2 of (probably) 3: pave the way for renaming of by Mark Dickinson · 16 years ago
  31. 4f92ca4 Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods by Benjamin Peterson · 16 years ago
  32. 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 · 16 years ago
  33. 53876d9 Merged revisions 62380,62382-62383 via svnmerge from by Christian Heimes · 16 years ago
  34. bbe741d Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge from by Christian Heimes · 16 years ago
  35. 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 · 16 years ago
  36. fe82e77 Merged revisions 60379-60382 via svnmerge from by Christian Heimes · 16 years ago
  37. 587c2bf Merged revisions 60053-60078 via svnmerge from by Christian Heimes · 17 years ago
  38. e7fc50f Add an errors parameter to open() and TextIOWrapper() to specify error handling. by Guido van Rossum · 17 years ago
  39. 69a7963 Merged revisions 59202-59211 via svnmerge from by Christian Heimes · 17 years ago
  40. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  41. ed2b739 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  42. 04dbf3b Kill all uses and definitions of tp_print under Objects/. (Others will follow.) by Guido van Rossum · 17 years ago
  43. 46334cd Kill div, mod and divmod on complex (already deprecated in 2.x). by Guido van Rossum · 17 years ago
  44. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  45. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  46. 7696ed7 Change float.__str__() and complex.__str__() to return unicode objects. by Walter Dörwald · 17 years ago
  47. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  48. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  49. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  50. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  51. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  52. 18a67ba Fix comparing complex to non-complex numbers. by Guido van Rossum · 18 years ago
  53. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  54. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  55. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  56. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  57. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  58. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  59. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  60. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  61. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  62. c404ff2 patch [ 1118729 ] Error in representation of complex numbers(again) by Georg Brandl · 19 years ago
  63. 5d01aa4 Bug #1079011: Incorrect error message (somewhat) by Raymond Hettinger · 20 years ago
  64. 70aa1f2 Fix repr for negative imaginary part. Fixes #1013908. by Martin v. Löwis · 20 years ago
  65. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 20 years ago
  66. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  67. 0970dba Remove 'e.g.' from error message by Raymond Hettinger · 21 years ago
  68. 465fa3d complex_new(): This could leak when the argument was neither string nor by Tim Peters · 21 years ago
  69. 5ecd6c4 Fix typo in comment. by Walter Dörwald · 21 years ago
  70. 4eadfa2 Fix from Greg Chapman from SF bug #695651: a complex subclass by Guido van Rossum · 21 years ago
  71. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 21 years ago
  72. 604cd6a complex() was the only numeric constructor that created a new instance by Raymond Hettinger · 22 years ago
  73. e3a8e7e Call me anal, but there was a particular phrase that was speading to by Guido van Rossum · 22 years ago
  74. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  75. 65ce6de Rearrange the #ifndef WITHOUT_COMPLEX so it can be picked up from pyconfig.h. by Guido van Rossum · 22 years ago
  76. 478d47a Close SF bug 563740. complex() now finds __complex__() in new style classes. by Raymond Hettinger · 22 years ago
  77. 69cf3c7 Deprecate % as well. The message for deprecation of //, % and divmod by Guido van Rossum · 22 years ago
  78. 9ec4c78 SF bug #543387. by Guido van Rossum · 22 years ago
  79. 077f271 SF bug 543840: complex(string) accepts strings with \0 by Tim Peters · 22 years ago
  80. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  81. bab22be SF bug 533198: Complex power underflow raises exception. by Tim Peters · 22 years ago
  82. fa2e4c2 Declare real and imag as read-only attributes. by Guido van Rossum · 22 years ago
  83. 526c7a0 Ensure that complex() only accepts a string argument as the first arg, by Fred Drake · 23 years ago
  84. 01d697a complex_to_buf(), complex_subtype_from_c_complex(): Conversion of by Barry Warsaw · 23 years ago
  85. 70e3688 complex_subtype_from_string(): move the declaration of s_buffer[] out by Guido van Rossum · 23 years ago
  86. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  87. 2ed6bf8 Merge branch changes (coercion, rich comparisons) into trunk. by Guido van Rossum · 23 years ago
  88. 2205642 Do the same thing to complex that I did to str: the rich comparison by Guido van Rossum · 23 years ago
  89. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  90. 6380596 complex_coerce(): add explicit PyComplex_Check() test. Previously, by Guido van Rossum · 23 years ago
  91. 2400fa4 Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  92. 387c547 Revert parts of patch #453627, documenting the resulting test failures instead. by Martin v. Löwis · 23 years ago
  93. 655c955 Patch #453627: Define the following macros when compiling on a UnixWare 7.x system: by Martin v. Löwis · 23 years ago
  94. 9fffa3e Raise OverflowError when appropriate on long->float conversion. Most of by Tim Peters · 23 years ago
  95. 1832de4 PEP 238 documented -Qwarn as warning only for classic int or long by Guido van Rossum · 23 years ago
  96. 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 23 years ago
  97. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  98. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  99. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  100. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago