1. a4b7a75 Issue #3158: doctest can now find doctests in functions and methods by Zachary Ware · 11 years ago
  2. a5b9599 #17080: improve error message of float/complex when the wrong type is passed. by Ezio Melotti · 11 years ago
  3. e898153 #19069: merge with 3.3. by Ezio Melotti · 11 years ago
  4. 7760b4e #19069: use imperative mood in float object docstrings. Patch by Marco Buttu. by Ezio Melotti · 11 years ago
  5. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  6. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  7. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  8. 1c8f059 Issue #18520: Add a new PyStructSequence_InitType2() function, same than by Victor Stinner · 11 years ago
  9. 640c35c Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros by Victor Stinner · 11 years ago
  10. 8f674cc Close #17694: Add minimum length to _PyUnicodeWriter by Victor Stinner · 11 years ago
  11. 3f5db39 Fix a few typos and a double semicolon. Patch by Eitan Adler. by Ezio Melotti · 11 years ago
  12. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  13. d3f0882 Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args and str.format(args) by Victor Stinner · 12 years ago
  14. daa0654 Issue #14435: Remove special block allocation code from floatobject.c by Kristján Valur Jónsson · 12 years ago
  15. 963816d Merge 3.2 -> default (issue 13889) by Mark Dickinson · 12 years ago
  16. 261896b Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa.c functions in float round. by Mark Dickinson · 12 years ago
  17. f5cff56 Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 by Victor Stinner · 13 years ago
  18. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  19. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  20. 736e7fc Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2 by Jesus Cea · 13 years ago
  21. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  22. 7b1bee4 Use copysign to produce appropriately signed zeros instead of trying to worm around possible compiler optimizations. by Mark Dickinson · 14 years ago
  23. d2a9b20 Issue #10596: Fix float.__mod__ to have the same behaviour as by Mark Dickinson · 14 years ago
  24. 66f2623 Remove some unecessary '#ifdef Py_NAN's from floatobject.c by Mark Dickinson · 14 years ago
  25. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  26. 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 14 years ago
  27. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  28. 388122d Issue #9337: Make float.__str__ identical to float.__repr__. by Mark Dickinson · 14 years ago
  29. 21a1f73 Style nit. by Mark Dickinson · 14 years ago
  30. 5d47083 Merged revisions 82447 via svnmerge from by Benjamin Peterson · 14 years ago
  31. d19052c Issue #9089: Remove references to intobject.c and intobject.h from comments. by Mark Dickinson · 14 years ago
  32. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  33. 5036326 Merged revisions 78319 via svnmerge from by Ezio Melotti · 14 years ago
  34. 9ab44b5 Merged revisions 77139-77140 via svnmerge from by Mark Dickinson · 14 years ago
  35. a4962cb Merged revisions 76561 via svnmerge from by Mark Dickinson · 15 years ago
  36. e0d6f60 Fix extra-long line; also makes py3k match trunk here. by Mark Dickinson · 15 years ago
  37. 78565b2 Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,73457,73460,73485-73486,73488-73489,73501-73502,73513-73514 via svnmerge from by Benjamin Peterson · 15 years ago
  38. bd16edd Refactor to remove duplicated nan/inf parsing code in by Mark Dickinson · 15 years ago
  39. d1ec8b2 Merged revisions 72564 via svnmerge from by Mark Dickinson · 15 years ago
  40. 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
  41. aa77d26 Merged revisions 72253 via svnmerge from by Mark Dickinson · 15 years ago
  42. 725bfd8 Issue #5914: Add new C-API function PyOS_string_to_double, to complement by Mark Dickinson · 15 years ago
  43. 6d65df1 Internal plumbing changes for float parsing: by Mark Dickinson · 15 years ago
  44. 3324247 Revert accidental changes to Objects/floatobject.c by Mark Dickinson · 15 years ago
  45. 7abf8d4 The SSE2 detection and enabling could potentially cause by Mark Dickinson · 15 years ago
  46. e6a076d Issue #1869 (and 4707, 5118, 5473, 1456775): use the new by Mark Dickinson · 15 years ago
  47. 0923d1d The other half of Issue #1580: use short float repr where possible. by Eric Smith · 15 years ago
  48. 2808d3c Merged revisions 71627 via svnmerge from by Benjamin Peterson · 15 years ago
  49. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  50. 0156dab Remove attempted long->int conversions in py3k version of float.as_integer_ratio. by Mark Dickinson · 15 years ago
  51. 8055afd Issue #4910, patch 3/3: rename nb_long to nb_reserved by Mark Dickinson · 15 years ago
  52. cce2f21 Issue 4910, patch 2 of (probably) 3: pave the way for renaming of by Mark Dickinson · 15 years ago
  53. baa4546 Add missing Py_CHARMASK when calling isspace(). by Kristján Valur Jónsson · 16 years ago
  54. f10a79a merge from trunk by Benjamin Peterson · 16 years ago
  55. 4561257 Merged revisions 66552-66553 via svnmerge from by Andrew MacIntyre · 16 years ago
  56. 42a72ee Merged revisions 65964 via svnmerge from by Mark Dickinson · 16 years ago
  57. d8fa68b fix cut and paste error in a comment by Gregory P. Smith · 16 years ago
  58. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  59. 943f339 Issue #3369: fix memory leak in floatobject.c. Thanks Kristján Jónsson by Mark Dickinson · 16 years ago
  60. 2ee470f Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from by Georg Brandl · 16 years ago
  61. 65fe25e Merged revisions 64974 via svnmerge from by Mark Dickinson · 16 years ago
  62. 5c960b8 Revert 64451. by Raymond Hettinger · 16 years ago
  63. d11a443 Merge 64438: hex/oct/bin can show floats exactly. by Raymond Hettinger · 16 years ago
  64. 4f92ca4 Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods by Benjamin Peterson · 16 years ago
  65. 4a7d76d Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
  66. c4352b0 Issue 2801: fix bug in float.is_integer where ValueError was incorrectly by Mark Dickinson · 16 years ago
  67. 53876d9 Merged revisions 62380,62382-62383 via svnmerge from by Christian Heimes · 16 years ago
  68. bbe741d Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge from by Christian Heimes · 16 years ago
  69. ba4af49 Merged revisions 61964-61979 via svnmerge from by Christian Heimes · 16 years ago
  70. dd15f6c Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from by Christian Heimes · 16 years ago
  71. 15ebc88 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552-60567 via svnmerge from by Christian Heimes · 16 years ago
  72. 292d351 Merged revisions 60481,60485,60489-60520,60523-60527,60530-60533,60535-60538,60540-60551 via svnmerge from by Christian Heimes · 16 years ago
  73. 7b3ce6a Merged revisions 60441-60474 via svnmerge from by Christian Heimes · 16 years ago
  74. 2685563 Merged revisions 60364-60378 via svnmerge from by Christian Heimes · 16 years ago
  75. 969fe57 Merged revisions 60245-60277 via svnmerge from by Christian Heimes · 16 years ago
  76. d32ed6f Merged revisions 59933-59951 via svnmerge from by Christian Heimes · 16 years ago
  77. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  78. 99170a5 Merged revisions 59541-59561 via svnmerge from by Christian Heimes · 17 years ago
  79. b76922a Merged revisions 59450-59464 via svnmerge from by Christian Heimes · 17 years ago
  80. 827b35c Issue #1580: New free format floating point representation based on "Floating-Point Printer Sample Code", by Robert G. Burger. For example repr(11./5) now returns '2.2' instead of '2.2000000000000002'. by Christian Heimes · 17 years ago
  81. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  82. 9385266 Merged revisions 59245-59254 via svnmerge from by Christian Heimes · 17 years ago
  83. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  84. 3404b3c Check in some documentation tweaks for PEP 3141, add some tests, and implement by Jeffrey Yasskin · 17 years ago
  85. 1fe5f38 Remove checking redundantly for checks of PyInt and PyLong. by Neal Norwitz · 17 years ago
  86. 6deb1bf Use pow() instead of repeated multiplication by 10 in round(x, n). by Guido van Rossum · 17 years ago
  87. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  88. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  89. 2fa33db Finish the work on __round__ and __trunc__. With Alex Martelli and Keir Mierle. by Guido van Rossum · 17 years ago
  90. 447e7c3 Fix memory leak by Neal Norwitz · 17 years ago
  91. 04dbf3b Kill all uses and definitions of tp_print under Objects/. (Others will follow.) by Guido van Rossum · 17 years ago
  92. b43daf7 Changes to long and float by Jeffrey Jasskin to conform to PEP 3141. by Guido van Rossum · 17 years ago
  93. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  94. 7104458 Change float.__getformat__() to return a unicode string. by Walter Dörwald · 17 years ago
  95. 7696ed7 Change float.__str__() and complex.__str__() to return unicode objects. by Walter Dörwald · 17 years ago
  96. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  97. 2be161d Make tset_float pass. float(<unicode>) was never very good -- it used by Guido van Rossum · 17 years ago
  98. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  99. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  100. 428f064 Remove the deprecated and useless "pend" argument from by Georg Brandl · 17 years ago