1. 9b6c60c bpo-31979: Simplify transforming decimals to ASCII (#4336) by Serhiy Storchaka · 7 years ago
  2. 2bb69a5 bpo-31373: remove overly strict float range checks (#3486) by Benjamin Peterson · 7 years ago
  3. a853a8b bpo-31373: fix undefined floating-point demotions (#3396) by Benjamin Peterson · 7 years ago
  4. bae6881 Update Argument Clinic generated code for bpo-29878. (#1001) by Serhiy Storchaka · 7 years ago
  5. ba85d69 bpo-29878: Add global instances of int for 0 and 1. (#852) by Serhiy Storchaka · 7 years ago
  6. 18b250f bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615) by Serhiy Storchaka · 7 years ago
  7. b5c51d3 bpo-20185: Convert float object implementation to Argument Clinic. (#543) by Serhiy Storchaka · 7 years ago
  8. 2e56424 bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() and tuple(). (#518) by Serhiy Storchaka · 7 years ago
  9. 58d23e6 bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486) by Serhiy Storchaka · 7 years ago
  10. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 8 years ago
  11. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 8 years ago
  12. 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 8 years ago
  13. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  14. a721aba Issue #26331: Implement the parsing part of PEP 515. by Brett Cannon · 8 years ago
  15. 7c4e409 Issue #11734: Add support for IEEE 754 half-precision floats to the struct module. Original patch by Eli Stevens. by Mark Dickinson · 8 years ago
  16. 16931c3 Issue #26983: float() now always return an instance of exact float. by Serhiy Storchaka · 8 years ago
  17. 5787ef6 Issue #27005: Fixed the call of PyObject_CallFunctionObjArgs(). by Serhiy Storchaka · 8 years ago
  18. 25885d1 Issue #27005: Optimized the float.fromhex() class method for exact float. by Serhiy Storchaka · 8 years ago
  19. 59865e7 Issue #26200: Restored more safe usages of Py_SETREF. by Serhiy Storchaka · 8 years ago
  20. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  21. 4e6aad1 Clean up float.as_integer_ratio(). by Serhiy Storchaka · 9 years ago
  22. 0d250bc Issue #25971: Optimized creating Fractions from floats by 2 times and from by Serhiy Storchaka · 9 years ago
  23. f9afda5 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  24. 1509580 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  25. eeb896c Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary by Martin Panter · 9 years ago
  26. 61d6e4a Issue #24802: Merge null termination fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  27. cb39d1f Issue 19933: Provide default argument for ndigits in round. Patch by Vajrasky Kok. by Steve Dower · 9 years ago
  28. abda8dd merge 3.4 (#23590) by Benjamin Peterson · 9 years ago
  29. a915723 fix potential refleak in PyFloat_AsDouble (closes #23590) by Benjamin Peterson · 9 years ago
  30. 3dd3e26 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  31. 4fdb684 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  32. 20b39b2 Removed redundant casts to `char *`. by Serhiy Storchaka · 10 years ago
  33. d3afe78 Silence expression result unused warnings with clang. by Christian Heimes · 11 years ago
  34. a4b7a75 Issue #3158: doctest can now find doctests in functions and methods by Zachary Ware · 11 years ago
  35. a5b9599 #17080: improve error message of float/complex when the wrong type is passed. by Ezio Melotti · 11 years ago
  36. e898153 #19069: merge with 3.3. by Ezio Melotti · 11 years ago
  37. 7760b4e #19069: use imperative mood in float object docstrings. Patch by Marco Buttu. by Ezio Melotti · 11 years ago
  38. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  39. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  40. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  41. 1c8f059 Issue #18520: Add a new PyStructSequence_InitType2() function, same than by Victor Stinner · 11 years ago
  42. 640c35c Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros by Victor Stinner · 11 years ago
  43. 8f674cc Close #17694: Add minimum length to _PyUnicodeWriter by Victor Stinner · 11 years ago
  44. 3f5db39 Fix a few typos and a double semicolon. Patch by Eitan Adler. by Ezio Melotti · 11 years ago
  45. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  46. d3f0882 Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args and str.format(args) by Victor Stinner · 12 years ago
  47. daa0654 Issue #14435: Remove special block allocation code from floatobject.c by Kristján Valur Jónsson · 12 years ago
  48. 963816d Merge 3.2 -> default (issue 13889) by Mark Dickinson · 12 years ago
  49. 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
  50. f5cff56 Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 by Victor Stinner · 13 years ago
  51. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  52. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  53. 736e7fc Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2 by Jesus Cea · 13 years ago
  54. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  55. 7b1bee4 Use copysign to produce appropriately signed zeros instead of trying to worm around possible compiler optimizations. by Mark Dickinson · 14 years ago
  56. d2a9b20 Issue #10596: Fix float.__mod__ to have the same behaviour as by Mark Dickinson · 14 years ago
  57. 66f2623 Remove some unecessary '#ifdef Py_NAN's from floatobject.c by Mark Dickinson · 14 years ago
  58. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  59. 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 14 years ago
  60. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  61. 388122d Issue #9337: Make float.__str__ identical to float.__repr__. by Mark Dickinson · 14 years ago
  62. 21a1f73 Style nit. by Mark Dickinson · 14 years ago
  63. 5d47083 Merged revisions 82447 via svnmerge from by Benjamin Peterson · 14 years ago
  64. d19052c Issue #9089: Remove references to intobject.c and intobject.h from comments. by Mark Dickinson · 14 years ago
  65. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  66. 5036326 Merged revisions 78319 via svnmerge from by Ezio Melotti · 14 years ago
  67. 9ab44b5 Merged revisions 77139-77140 via svnmerge from by Mark Dickinson · 15 years ago
  68. a4962cb Merged revisions 76561 via svnmerge from by Mark Dickinson · 15 years ago
  69. e0d6f60 Fix extra-long line; also makes py3k match trunk here. by Mark Dickinson · 15 years ago
  70. 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
  71. bd16edd Refactor to remove duplicated nan/inf parsing code in by Mark Dickinson · 15 years ago
  72. d1ec8b2 Merged revisions 72564 via svnmerge from by Mark Dickinson · 15 years ago
  73. 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
  74. aa77d26 Merged revisions 72253 via svnmerge from by Mark Dickinson · 15 years ago
  75. 725bfd8 Issue #5914: Add new C-API function PyOS_string_to_double, to complement by Mark Dickinson · 15 years ago
  76. 6d65df1 Internal plumbing changes for float parsing: by Mark Dickinson · 15 years ago
  77. 3324247 Revert accidental changes to Objects/floatobject.c by Mark Dickinson · 15 years ago
  78. 7abf8d4 The SSE2 detection and enabling could potentially cause by Mark Dickinson · 15 years ago
  79. e6a076d Issue #1869 (and 4707, 5118, 5473, 1456775): use the new by Mark Dickinson · 15 years ago
  80. 0923d1d The other half of Issue #1580: use short float repr where possible. by Eric Smith · 15 years ago
  81. 2808d3c Merged revisions 71627 via svnmerge from by Benjamin Peterson · 15 years ago
  82. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  83. 0156dab Remove attempted long->int conversions in py3k version of float.as_integer_ratio. by Mark Dickinson · 16 years ago
  84. 8055afd Issue #4910, patch 3/3: rename nb_long to nb_reserved by Mark Dickinson · 16 years ago
  85. cce2f21 Issue 4910, patch 2 of (probably) 3: pave the way for renaming of by Mark Dickinson · 16 years ago
  86. baa4546 Add missing Py_CHARMASK when calling isspace(). by Kristján Valur Jónsson · 16 years ago
  87. f10a79a merge from trunk by Benjamin Peterson · 16 years ago
  88. 4561257 Merged revisions 66552-66553 via svnmerge from by Andrew MacIntyre · 16 years ago
  89. 42a72ee Merged revisions 65964 via svnmerge from by Mark Dickinson · 16 years ago
  90. d8fa68b fix cut and paste error in a comment by Gregory P. Smith · 16 years ago
  91. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  92. 943f339 Issue #3369: fix memory leak in floatobject.c. Thanks Kristján Jónsson by Mark Dickinson · 16 years ago
  93. 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
  94. 65fe25e Merged revisions 64974 via svnmerge from by Mark Dickinson · 16 years ago
  95. 5c960b8 Revert 64451. by Raymond Hettinger · 16 years ago
  96. d11a443 Merge 64438: hex/oct/bin can show floats exactly. by Raymond Hettinger · 16 years ago
  97. 4f92ca4 Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods by Benjamin Peterson · 16 years ago
  98. 4a7d76d Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
  99. c4352b0 Issue 2801: fix bug in float.is_integer where ValueError was incorrectly by Mark Dickinson · 16 years ago
  100. 53876d9 Merged revisions 62380,62382-62383 via svnmerge from by Christian Heimes · 16 years ago