1. 4458449 fix refleak in the shift-by-zero case (#27870) by Benjamin Peterson · 8 years ago
  2. 6507657 Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  3. 02c0c0b 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
  4. 89446b2 Issue #25604: Fix bug in integer true division that could have resulted in off-by-one-ulp results in unusual cases. by Mark Dickinson · 8 years ago
  5. a850ef6 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  6. 8d30ad7 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  7. 61e9ffa Issue #19171: speed some cases of 3-argument long pow(). by Tim Peters · 11 years ago
  8. 74f49ab Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  9. cf095f8 Issue #16761: Raise TypeError when int() or long() called with base argument only. by Serhiy Storchaka · 12 years ago
  10. ad4b000 Issue #14783: Backport changes from 3.2. by Chris Jerdonek · 12 years ago
  11. c2077b0 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  12. 24b07bc #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  13. 43ca377 Wrap multiline macros in a 'do {} while(0)', for safety. by Mark Dickinson · 14 years ago
  14. fda8d11 Post-detabification cleanup: whitespace fixes and long line rewraps only. by Mark Dickinson · 14 years ago
  15. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  16. 22ff664 Issue #8659: Remove redundant ABS calls. Thanks Daniel Stutzbach. by Mark Dickinson · 14 years ago
  17. ef7590e Issue #8328: Silence Visual Studio warnings. by Stefan Krah · 15 years ago
  18. ea7e551 Silence a 'comparison between signed and unsigned integer expressions' gcc warning. by Mark Dickinson · 15 years ago
  19. 3ec9b94 Issue #8259: Get rid of 'outrageous left shift count' error when by Mark Dickinson · 15 years ago
  20. a36507c Issue #7767: Add new C-API function PyLong_AsLongLongAndOverflow, a by Mark Dickinson · 15 years ago
  21. d3e3232 Refactor some longobject internals: PyLong_AsDouble and _PyLong_AsScaledDouble by Mark Dickinson · 15 years ago
  22. 4657283 Issue #1811: Improve accuracy and consistency of true division for integers. by Mark Dickinson · 15 years ago
  23. e31d300 Issue #7528: Backport PyLong_AsLongAndOverflow from py3k to trunk. by Mark Dickinson · 15 years ago
  24. 8d87dc0 Issue #1087418: Small performance boost for bitwise operations on longs. by Mark Dickinson · 15 years ago
  25. 71adc93 Style/consistency/nano-optimization nit: replace occurrences of by Mark Dickinson · 15 years ago
  26. 40ee861 Silence MSVC compiler warnings. by Mark Dickinson · 15 years ago
  27. aa2adc8 Issue #6713: Improve performance of str(n) and repr(n) for integers n by Mark Dickinson · 15 years ago
  28. 1f4fc09 Fix potential signed-overflow bug in _PyLong_Format; also fix by Mark Dickinson · 15 years ago
  29. 752a2da Remove redundant assignment by Mark Dickinson · 15 years ago
  30. d4b5c98 Remove unnecessary use of context for long getters. (Related to issue #5880). by Mark Dickinson · 15 years ago
  31. 6736cf8 Issue #3166: Make long -> float (and int -> float) conversions by Mark Dickinson · 16 years ago
  32. 48e3fd2 sys.long_info attributes should be ints, not longs by Mark Dickinson · 16 years ago
  33. 0b666bf Issue #5512: speed up the long division algorithm for Python longs. by Mark Dickinson · 16 years ago
  34. efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 16 years ago
  35. b646487 Replace long with twodigits, to avoid depending on sizeof(digit) < sizeof(long) by Mark Dickinson · 16 years ago
  36. bcf6b18 A few more minor fixes in longobject.c by Mark Dickinson · 16 years ago
  37. 2ffb26f Issue #5260: Various portability and standards compliance fixes, optimizations by Mark Dickinson · 16 years ago
  38. 4015f62 Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError for by Mark Dickinson · 16 years ago
  39. a0eae03 Fix comment. by Mark Dickinson · 16 years ago
  40. 6ffa4a2 Fix undefined behaviour (left shift of negative value) in long_hash. Also, by Mark Dickinson · 16 years ago
  41. 1afe6dd No need for carry to be type twodigits in _PyLong_AsByteArray; digit is large enough. by Mark Dickinson · 16 years ago
  42. ff84aa8 Issue #4393: fix 3 classes of potential portability problems in longobject.c: by Mark Dickinson · 16 years ago
  43. 1a70798 Issue #3439: add bit_length method to int and long. by Mark Dickinson · 16 years ago
  44. b646757 Issue #1481296: (again!) Make conversion of a float NaN to an int or by Mark Dickinson · 16 years ago
  45. e7d8be8 Security patches from Apple: prevent int overflow when allocating memory by Neal Norwitz · 16 years ago
  46. 9be2ec1 Added additional __sizeof__ implementations and addressed comments made in by Robert Schuppenies · 16 years ago
  47. 9c437af Revert 64424, 64438, and 64439. by Raymond Hettinger · 16 years ago
  48. e3ae655 Make bin() implementation parallel oct() and hex() so that int/long subclasses can override or so that other classes can support. by Raymond Hettinger · 16 years ago
  49. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  50. 7a6de8b Some style nits. Also clarify in the docstrings what __sizeof__ does. by Georg Brandl · 16 years ago
  51. 51df064 Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. by Robert Schuppenies · 16 years ago
  52. dc13b79 Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
  53. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  54. 6f34109 I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. by Christian Heimes · 17 years ago
  55. 27a6325 Fix for possible signed overflow: the behaviour of -LONG_MIN is by Mark Dickinson · 17 years ago
  56. d183bdd Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings. by Neal Norwitz · 17 years ago
  57. 231346e Fix warnings about using char as an array subscript. This is not portable by Neal Norwitz · 17 years ago
  58. 5de250e Fix build on platforms that don't have intptr_t. Patch by Joseph Armbruster. by Jeffrey Yasskin · 17 years ago
  59. 9ff19b5 Finished backporting PEP 3127, Integer Literal Support and Syntax. by Eric Smith · 17 years ago
  60. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
  61. 5e527eb Added PyNumber_ToBase and supporting routines _PyInt_Format and by Eric Smith · 17 years ago
  62. 7f39c9f Backport of several functions from Python 3.0 to 2.6 including PyUnicode_FromString, PyUnicode_Format and PyLong_From/AsSsize_t. The functions are partly required for the backport of the bytearray type and _fileio module. They should also make it easier to port C to 3.0. by Christian Heimes · 17 years ago
  63. 4956d2b Silence Coverity false alerts with CIDs #172, #183, #184 by Christian Heimes · 17 years ago
  64. 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 17 years ago
  65. 737c73f Make math.{floor,ceil}({int,long}) return float again for backwards by Jeffrey Yasskin · 17 years ago
  66. 8267d1d Bug #1481296: Fixed long(float('nan'))!=0L. by Christian Heimes · 17 years ago
  67. 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 17 years ago
  68. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  69. d544df7 Issue #1772851. Alters long.__hash__ from being *almost* completely by Facundo Batista · 17 years ago
  70. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  71. f030394 Fix problems in x64 build that were discovered by the testsuite: by Kristján Valur Jónsson · 17 years ago
  72. c02e131 Add some missing NULL checks which trigger crashes on low-memory conditions. by Georg Brandl · 18 years ago
  73. 00cd818 Patch #1638879: don't accept strings with embedded NUL bytes in long(). by Georg Brandl · 18 years ago
  74. ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 18 years ago
  75. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  76. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  77. c09efa8 Move the initialization of size_a down below the check for a being NULL. by Neal Norwitz · 18 years ago
  78. ef02b9e a & b were dereffed above, so they are known to be valid pointers. by Neal Norwitz · 18 years ago
  79. 9faa3ed PyLong_FromString(): Continued fraction analysis (explained in by Tim Peters · 18 years ago
  80. d89fc22 Patch #1494387: SVN longobject.c compiler warnings by Tim Peters · 18 years ago
  81. a85bf20 Faster path for PyLong_FromLongLong, using PyLong_FromLong algorithm by Bob Ippolito · 18 years ago
  82. da53afa A new table to help string->integer conversion was added yesterday to by Tim Peters · 18 years ago
  83. 696cf43 Heavily fiddled variant of patch #1442927: PyLong_FromString optimization. by Tim Peters · 18 years ago
  84. c6a989a Fix problems found by Coverity. by Neal Norwitz · 18 years ago
  85. 429433b C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places by Skip Montanaro · 19 years ago
  86. 9cb28bea Fix int() and long() to repr() their argument when formatting the exception, by Thomas Wouters · 19 years ago
  87. 377be11 More C++-compliance. Note especially listobject.c - to get C++ to accept the by Anthony Baxter · 19 years ago
  88. 0bc2ab9 Patch #837242: id() for large ptr should return a long. by Martin v. Löwis · 19 years ago
  89. c48c8db Add PY_SSIZE_T_MIN, as suggested by Ralf W. Grosse-Kunstleve. by Martin v. Löwis · 19 years ago
  90. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 19 years ago
  91. 12bec1b fix a comment. by Armin Rigo · 19 years ago
  92. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
  93. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 19 years ago
  94. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  95. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  96. 553489a As discussed on python-dev, silence three gcc-4.0.x warnings, using assert() by Thomas Wouters · 19 years ago
  97. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  98. de7990b SF bug #1238681: freed pointer is used in longobject.c:long_pow(). by Tim Peters · 19 years ago
  99. 3296e69 SF bug #1224347: int/long unification and hex() by Raymond Hettinger · 19 years ago
  100. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 20 years ago