1. c4f3212 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 11 years ago
  2. 31a6554 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 11 years ago
  3. d3afe78 Silence expression result unused warnings with clang. by Christian Heimes · 11 years ago
  4. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  5. 9259c21 Issue #19171: speed some cases of 3-argument long pow(). by Tim Peters · 11 years ago
  6. 81a9315 Issue #19171: speed some cases of 3-argument long pow(). by Tim Peters · 11 years ago
  7. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  8. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  9. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  10. 579ddc2 Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 11 years ago
  11. f6d0aee Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 11 years ago
  12. 02515f7 Minor consistency fixes for some longobject.c exception messages: by Mark Dickinson · 11 years ago
  13. 1c8f059 Issue #18520: Add a new PyStructSequence_InitType2() function, same than by Victor Stinner · 11 years ago
  14. 08a80b1 longobject.c: add an assertion to ensure that MEDIUM_VALUE() is only called on by Victor Stinner · 11 years ago
  15. 8aed6f1 Issue #18408: Rewrite NEGATE() macro in longobject.c to handle PyLong_FromLong() failure by Victor Stinner · 11 years ago
  16. 640c35c Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros by Victor Stinner · 11 years ago
  17. 8f674cc Close #17694: Add minimum length to _PyUnicodeWriter by Victor Stinner · 11 years ago
  18. 8ad5b07 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  19. c73c561 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  20. 4de7457 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  21. 07c7136 Issue #16772: in int(x, base), non-integer bases must have an __index__ method. by Mark Dickinson · 11 years ago
  22. 9101e23 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 11 years ago
  23. 441d30f Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 11 years ago
  24. 7898043 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 11 years ago
  25. c819b07 Issue #16761: Raise TypeError when int() called with base argument only. by Serhiy Storchaka · 12 years ago
  26. 00e2843 Issue #16761: Raise TypeError when int() called with base argument only. by Serhiy Storchaka · 12 years ago
  27. 0b386d5 Issue #16761: Raise TypeError when int() called with base argument only. by Serhiy Storchaka · 12 years ago
  28. 513762f use more specific type by Benjamin Peterson · 12 years ago
  29. a689e52 Test for issue16772 and redoes the previous fix to accept __index__-aware by Gregory P. Smith · 12 years ago
  30. 4fbbf8c Fixes issue #16772: int() constructor second argument (base) must be an int. by Gregory P. Smith · 12 years ago
  31. e453e4c Issue 16280: Drop questionable special-casing of null pointer in PyLong_FromVoidPtr. by Mark Dickinson · 12 years ago
  32. 5cb6591 Issue #16277: merge fix from 3.3 by Mark Dickinson · 12 years ago
  33. 44362a8 Issue #16277: merge fix from 3.2 by Mark Dickinson · 12 years ago
  34. 9104479 Issue #16277: in PyLong_FromVoidPtr, add missing branch for sizeof(void*) <= sizeof(long). by Mark Dickinson · 12 years ago
  35. 743e0cd Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unified by Christian Heimes · 12 years ago
  36. 4a7df9a Issue #14783: Merge changes from 3.3. by Chris Jerdonek · 12 years ago
  37. 042fa65 Issue #14783: Merge changes from 3.2. by Chris Jerdonek · 12 years ago
  38. 83fe2e1 Issue #14783: Improve int() docstring and also str(), range(), and slice(). by Chris Jerdonek · 12 years ago
  39. cf46d62 Issue #16096: port fix from 3.3 by Mark Dickinson · 12 years ago
  40. fc9adb6 Issue #16096: Fix signed overflow in Objects/longobject.c. Thanks Serhiy Storchaka. by Mark Dickinson · 12 years ago
  41. 9cc98c9 long_to_decimal_string_internal() doesn't need to write the final NULL character by Victor Stinner · 12 years ago
  42. 5710c2a Issue 15959: Merge from 3.2. by Mark Dickinson · 12 years ago
  43. c286e58 Issue 15959: Fix type mismatch for quick{_neg}_int_allocs. Thanks Serhiy Storchaka. by Mark Dickinson · 12 years ago
  44. 7ae251a Fix out of bounds read in long_new() for empty bytes with an explicit base. int(b'', somebase) calls PyLong_FromString() with char* of length 1 but the function accesses the first argument at offset 1. CID 715359 by Christian Heimes · 12 years ago
  45. 79b97ee Fix out of bounds read in long_new() for empty bytes with an explicit base. int(b'', somebase) calls PyLong_FromString() with char* of length 1 but the function accesses the first argument at offset 1. CID 715359 by Christian Heimes · 12 years ago
  46. 110ac16 Fixed resource leak to scratch when _PyUnicodeWriter_Prepare fails by Christian Heimes · 12 years ago
  47. e577ab3 Issue #14744: Fix compilation on Windows by Victor Stinner · 12 years ago
  48. d3f0882 Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args and str.format(args) by Victor Stinner · 12 years ago
  49. 3065093 long_to_decimal_string() and _PyLong_Format() check the consistency of newly by Victor Stinner · 12 years ago
  50. 9a359bd Issue #14630: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  51. bcc17ee Issue #14630: Fix an incorrect access of ob_digit[0] for a zero instance of an int subclass. by Mark Dickinson · 12 years ago
  52. e284654 Issue #14339: Improve speed of bin, oct and hex builtins. Patch by Serhiy Storchaka (with minor modifications). by Mark Dickinson · 12 years ago
  53. 8d48b43 Issue #12965: Fix some inaccurate comments in Objects/longobject.c. Thanks Stefan Krah. by Mark Dickinson · 13 years ago
  54. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 13 years ago
  55. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  56. 2d78a87 Merge fix for issue #12963. by Stefan Krah · 13 years ago
  57. b77c6c6 Issue #12963: PyLong_AsSize_t() now returns (size_t)-1 in all error cases. by Stefan Krah · 13 years ago
  58. 3d5881e Issue #12909: Make PyLong_As* functions consistent in their use of exceptions. by Nadeem Vawda · 13 years ago
  59. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  60. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  61. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  62. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  63. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  64. c9fb3c6 Fix indentation in Objects/longobject.c by Mark Dickinson · 14 years ago
  65. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  66. 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 14 years ago
  67. 8035bc5 follow up to #9778: define and use an unsigned hash type by Benjamin Peterson · 14 years ago
  68. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  69. fa68a61 Fix naming inconsistency. by Mark Dickinson · 14 years ago
  70. f9a5a8e Issue #2844: Make int('42', n) consistently raise ValueError for by Mark Dickinson · 14 years ago
  71. 7f1bf80 Issue #8817: Expose round-to-nearest variant of divmod in _PyLong_Divmod_Near by Mark Dickinson · 14 years ago
  72. dc787d2 Issue #8188: Introduce a new scheme for computing hashes of numbers by Mark Dickinson · 14 years ago
  73. cdd01d2 Merged revisions 81037 via svnmerge from by Mark Dickinson · 14 years ago
  74. 22b2018 Merged revisions 81036 via svnmerge from by Mark Dickinson · 14 years ago
  75. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  76. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  77. e97ecba Merged revisions 80961 via svnmerge from by Mark Dickinson · 14 years ago
  78. 639e184 Issue #8328: Silence Visual Studio warnings. by Stefan Krah · 14 years ago
  79. 0091e5e Merged revisions 79885 via svnmerge from by Stefan Krah · 14 years ago
  80. 49a519c Merged revisions 79856 via svnmerge from by Mark Dickinson · 14 years ago
  81. 3318d29 Merged revisions 79843-79844 via svnmerge from by Mark Dickinson · 14 years ago
  82. bee1fb0 Merged revisions 78918,78920 via svnmerge from by Mark Dickinson · 14 years ago
  83. 4310652 Remove out-of-date comment about making ints and longs hash equal. by Mark Dickinson · 14 years ago
  84. d59b416 Issue #8014: Fix PyLong_As<c-integer-type> methods not to produce an by Mark Dickinson · 14 years ago
  85. 078c253 Move docstrings for long.to_bytes and long.from_bytes after the corresponding functions. by Mark Dickinson · 14 years ago
  86. 93f562c Merged revisions 77842 via svnmerge from by Mark Dickinson · 14 years ago
  87. 0c0e229 simplify string comparison of from_bytes/to_bytes by Benjamin Peterson · 15 years ago
  88. c36c378 Issue #1023290: Added API for the conversion of longs to bytes and vice-versa. by Alexandre Vassalotti · 15 years ago
  89. 6ecd9e5 Merged revisions 77234 via svnmerge from by Mark Dickinson · 15 years ago
  90. cbb6274 Merged revisions 77062 via svnmerge from by Mark Dickinson · 15 years ago
  91. 309aa2d Keep PyLong_AsLongAndOverflow documentation and implementation in sync by Mark Dickinson · 15 years ago
  92. 0b9293f Fix error message, for consistency with messages for % and //, and for consistency with trunk by Mark Dickinson · 15 years ago
  93. 074e5ed Merge in the new GIL. by Antoine Pitrou · 15 years ago
  94. 27a87a2 Merged revisions 75697 via svnmerge from by Mark Dickinson · 15 years ago
  95. 24f5785 Merged revisions 75110 via svnmerge from by Mark Dickinson · 15 years ago
  96. 1f7e18c Silence compiler warning by Mark Dickinson · 15 years ago
  97. 741984d Merged revisions 75003 via svnmerge from by Mark Dickinson · 15 years ago
  98. cd06812 Issue #6713 (continued): remove unused arbitrary-base conversion code by Mark Dickinson · 15 years ago
  99. 8accd6b Revert accidental changes to Objects/longobject.c by Mark Dickinson · 15 years ago
  100. 2e72b0d Add some more module maintainers. by Mark Dickinson · 15 years ago