1. dd431b3 PyLong_FromString(): fix Coverity CID 1424951 (#4738) by Victor Stinner · 7 years ago
  2. 29ba688 bpo-31619: Fixed integer overflow in converting huge strings to int. (#3884) by Serhiy Storchaka · 7 years ago
  3. 28b6248 bpo-16055: Fixes incorrect error text for int('1', base=1000) (#4376) by Sanyam Khurana · 7 years ago
  4. 9b6c60c bpo-31979: Simplify transforming decimals to ASCII (#4336) by Serhiy Storchaka · 7 years ago
  5. e8b1965 bpo-23699: Use a macro to reduce boilerplate code in rich comparison functions (GH-793) by stratakis · 7 years ago
  6. 85c0b89 bpo-31619: Fixed a ValueError when convert a string with large number of underscores (#3827) by Serhiy Storchaka · 7 years ago
  7. b2e5794 bpo-31338 (#3374) by Barry Warsaw · 7 years ago
  8. 918403c bpo-29816: Shift operation now has less opportunity to raise OverflowError. (#680) by Serhiy Storchaka · 7 years ago
  9. ba85d69 bpo-29878: Add global instances of int for 0 and 1. (#852) by Serhiy Storchaka · 7 years ago
  10. 18b250f bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615) by Serhiy Storchaka · 7 years ago
  11. 390a096 bpo-29749: Update int() docstring (GH-565) by svelankar · 7 years ago
  12. 2e56424 bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() and tuple(). (#518) by Serhiy Storchaka · 7 years ago
  13. 86aa269 remove 3 redundant casts in Objects/longobject.c (#445) by orenmn · 7 years ago
  14. 58d23e6 bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486) by Serhiy Storchaka · 7 years ago
  15. 196a7bc Issue #29421: Make int.to_bytes() and int.from_bytes() slightly faster by Serhiy Storchaka · 7 years ago
  16. 495e880 Issue #20185: Converted the int class to Argument Clinic. by Serhiy Storchaka · 7 years ago
  17. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 8 years ago
  18. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 8 years ago
  19. 460bd0d Issue #19569: Compiler warnings are now emitted if use most of deprecated by Serhiy Storchaka · 8 years ago
  20. 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 8 years ago
  21. 1a73bf3 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  22. 3b73ea1 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  23. f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  24. b2e64f9 Issue #28621: Sped up converting int to float by reusing faster bits counting by Serhiy Storchaka · 8 years ago
  25. c1c4a64 Issue #27111: Minor simplication to long_add and long_sub fast path code. Thanks Oren Milman. by Mark Dickinson · 8 years ago
  26. fba121f Issue #27441: Remove some redundant assignments to ob_size in longobject.c. Thanks Oren Milman. by Mark Dickinson · 8 years ago
  27. 92ca535 Issue #27222: various cleanups in long_rshift. Thanks Oren Milman. by Mark Dickinson · 8 years ago
  28. 82cb124 Issue #25221: merge from 3.5. by Mark Dickinson · 8 years ago
  29. 36820dd Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is compiled with NSMALLPOSINTS = 0. by Mark Dickinson · 8 years ago
  30. a721aba Issue #26331: Implement the parsing part of PEP 515. by Brett Cannon · 8 years ago
  31. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  32. 2f8bfef replace PY_SIZE_MAX with SIZE_MAX by Benjamin Peterson · 8 years ago
  33. ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
  34. d953f8e remove some silly defined() tests by Benjamin Peterson · 8 years ago
  35. af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 8 years ago
  36. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  37. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  38. 82a9527 Issue #27870: A left shift of zero by a large integer no longer attempts to allocate large amounts of memory. by Mark Dickinson · 8 years ago
  39. 4e1de16 Issue #25402: in int-to-decimal-string conversion, reduce intermediate storage requirements and relax restriction on converting large integers. Patch by Serhiy Storchaka. by Mark Dickinson · 8 years ago
  40. 583c6e8 Issue #27214: Fix potential bug and remove useless optimization in long_invert. Thanks Oren Milman. by Mark Dickinson · 8 years ago
  41. b820d7f Issue #27792: force int return type for modulo operations involving bools. by Mark Dickinson · 8 years ago
  42. 1dc3c89 Untabify Objects/longobject.c. by Mark Dickinson · 8 years ago
  43. dc590a4 Issue #25604: Fix minor bug in integer true division, which could by Mark Dickinson · 8 years ago
  44. 8bcf312 Issue #27786: Simplify x_sub() by Victor Stinner · 8 years ago
  45. 8bde911 Issue #27626: Merge spelling fixes from 3.5 by Martin Panter · 8 years ago
  46. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  47. e63e5d6 Issue #27073: Removed redundant checks in long_add and long_sub. by Serhiy Storchaka · 8 years ago
  48. ea36c94 Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses. by Serhiy Storchaka · 8 years ago
  49. 1f36443 Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses. by Serhiy Storchaka · 8 years ago
  50. f963c13 longobject.c: fix compilation warning on Windows 64-bit by Victor Stinner · 8 years ago
  51. e0b2309 Issues #26289 and #26315: Optimize floor/modulo div for single-digit longs by Yury Selivanov · 8 years ago
  52. a0fcaca Issue #26288: Fix comment by Yury Selivanov · 8 years ago
  53. 186c30b Issue #26288: Optimize PyLong_AsDouble. by Yury Selivanov · 8 years ago
  54. bb6e4a0 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  55. f9afda5 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  56. 1509580 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  57. 1285e5c Fix compiler warnings (uninitialized variables), false alarms in fact by Victor Stinner · 9 years ago
  58. 199c9a6 Fix long_format_binary() by Victor Stinner · 9 years ago
  59. be75b8c Issue #25349: Optimize bytes % int by Victor Stinner · 9 years ago
  60. 5783fd2 Issue #24999: In longobject.c, use two shifts instead of ">> 2*PyLong_SHIFT" to by Victor Stinner · 9 years ago
  61. 48e47aa Issue #22486: Added the math.gcd() function. The fractions.gcd() function now is by Serhiy Storchaka · 9 years ago
  62. 861470c #16518: Bring error messages in harmony with docs ("bytes-like object") by R David Murray · 10 years ago
  63. 20b39b2 Removed redundant casts to `char *`. by Serhiy Storchaka · 10 years ago
  64. 12174a5 Issue #22156: Fix "comparison between signed and unsigned integers" compiler by Victor Stinner · 10 years ago
  65. 45e8e2f Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY() by Victor Stinner · 10 years ago
  66. 0c346d8 Issue #21193: Make (e.g.,) pow(2, -3, 5) raise ValueError rather than TypeError. Patch by Josh Rosenberg. by Mark Dickinson · 10 years ago
  67. 1aca78d merge 3.3 by Benjamin Peterson · 10 years ago
  68. 45c9dce fix c89 declaration order by Benjamin Peterson · 10 years ago
  69. dfa8228 merge 3.3 by Benjamin Peterson · 10 years ago
  70. 041c38a don't do pointer arithmetic with signed numbers by Benjamin Peterson · 10 years ago
  71. c836a28 Issue #17576: Removed deprecation warnings added in changeset 618cca51a27e. by Serhiy Storchaka · 11 years ago
  72. c4f3212 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 11 years ago
  73. 31a6554 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 11 years ago
  74. d3afe78 Silence expression result unused warnings with clang. by Christian Heimes · 11 years ago
  75. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  76. 9259c21 Issue #19171: speed some cases of 3-argument long pow(). by Tim Peters · 11 years ago
  77. 81a9315 Issue #19171: speed some cases of 3-argument long pow(). by Tim Peters · 11 years ago
  78. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  79. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  80. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  81. 579ddc2 Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 11 years ago
  82. f6d0aee Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 11 years ago
  83. 02515f7 Minor consistency fixes for some longobject.c exception messages: by Mark Dickinson · 11 years ago
  84. 1c8f059 Issue #18520: Add a new PyStructSequence_InitType2() function, same than by Victor Stinner · 11 years ago
  85. 08a80b1 longobject.c: add an assertion to ensure that MEDIUM_VALUE() is only called on by Victor Stinner · 11 years ago
  86. 8aed6f1 Issue #18408: Rewrite NEGATE() macro in longobject.c to handle PyLong_FromLong() failure by Victor Stinner · 11 years ago
  87. 640c35c Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros by Victor Stinner · 11 years ago
  88. 8f674cc Close #17694: Add minimum length to _PyUnicodeWriter by Victor Stinner · 11 years ago
  89. 8ad5b07 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  90. c73c561 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  91. 4de7457 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  92. 07c7136 Issue #16772: in int(x, base), non-integer bases must have an __index__ method. by Mark Dickinson · 12 years ago
  93. 9101e23 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  94. 441d30f Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  95. 7898043 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  96. c819b07 Issue #16761: Raise TypeError when int() called with base argument only. by Serhiy Storchaka · 12 years ago
  97. 00e2843 Issue #16761: Raise TypeError when int() called with base argument only. by Serhiy Storchaka · 12 years ago
  98. 0b386d5 Issue #16761: Raise TypeError when int() called with base argument only. by Serhiy Storchaka · 12 years ago
  99. 513762f use more specific type by Benjamin Peterson · 12 years ago
  100. a689e52 Test for issue16772 and redoes the previous fix to accept __index__-aware by Gregory P. Smith · 12 years ago