1. b2e2025 bpo-33073: Rework int.as_integer_ratio() implementation (GH-9303) by Serhiy Storchaka · 6 years ago
  2. cbda8fc closes bpo-34868: Improve error message with '_' is combined with an invalid type specifier. (GH-9666) by Benjamin Peterson · 6 years ago
  3. 5ac7043 bpo-33073: Adding as_integer_ratio to ints. (GH-8750) by Lisa Roach · 6 years ago
  4. 16dfca4 bpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274) by INADA Naoki · 6 years ago
  5. 918403c bpo-29816: Shift operation now has less opportunity to raise OverflowError. (#680) by Serhiy Storchaka · 7 years ago
  6. 89e1b1a Issue 27080: PEP 515: add '_' formatting option. by Eric V. Smith · 8 years ago
  7. 3b09cd6 Merge by Raymond Hettinger · 8 years ago
  8. f0f1c23 Issue 27936: Fix inconsistent round() behavior between float and int by Raymond Hettinger · 8 years ago
  9. 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
  10. ea36c94 Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses. by Serhiy Storchaka · 8 years ago
  11. 1f36443 Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses. by Serhiy Storchaka · 8 years ago
  12. e0b2309 Issues #26289 and #26315: Optimize floor/modulo div for single-digit longs by Yury Selivanov · 8 years ago
  13. 429f28d Issue #25211: Merge test_long from 3.4 into 3.5 by Martin Panter · 9 years ago
  14. cbe16ae Issue #25211: Eliminate lazy error message class by using subTest by Martin Panter · 9 years ago
  15. 38c707e Issue #21741: Update 147 test modules to use test discovery. by Zachary Ware · 9 years ago
  16. 08448a1 Issue #23326: Removed __ne__ implementations. Since fixing default __ne__ by Serhiy Storchaka · 9 years ago
  17. 7fe1049 Issue #21422: Add a test to check that bool << int and bool >> int return an int by Victor Stinner · 10 years ago
  18. 6c9678e Issue #20546: Use specific asserts in int tests. by Serhiy Storchaka · 10 years ago
  19. 3a20a5d Issue #20546: Use specific asserts in int tests. by Serhiy Storchaka · 10 years ago
  20. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  21. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  22. 3fa1aae Issue #17516: do not create useless tuple: remove dummy commas in tests by Victor Stinner · 11 years ago
  23. 9a359bd Issue #14630: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  24. 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
  25. 30970e9 Issue #10925: Add equivalent pure Python code for the builtin int-to-float conversion to test_long. by Mark Dickinson · 13 years ago
  26. 3ab08ca Issue #10624: Use support.requires_IEEE_754 in all appropriate tests. by Eric Smith · 14 years ago
  27. cbd2ab1 #1513299: cleanup some map() uses where a comprehension works better. by Georg Brandl · 14 years ago
  28. f9a5a8e Issue #2844: Make int('42', n) consistently raise ValueError for by Mark Dickinson · 14 years ago
  29. 56544db Merged revisions 81551 via svnmerge from by Mark Dickinson · 14 years ago
  30. 1b37e87 Merged revisions 78093 via svnmerge from by Georg Brandl · 14 years ago
  31. 89fad14 Merged revisions 78018,78035-78040,78042-78043,78046,78048-78052,78054,78059,78075-78080 via svnmerge from by Georg Brandl · 14 years ago
  32. c36c378 Issue #1023290: Added API for the conversion of longs to bytes and vice-versa. by Alexandre Vassalotti · 15 years ago
  33. 2cfda80 Merged revisions 77071 via svnmerge from by Mark Dickinson · 15 years ago
  34. a4e1506 Merged revisions 77066 via svnmerge from by Mark Dickinson · 15 years ago
  35. cbb6274 Merged revisions 77062 via svnmerge from by Mark Dickinson · 15 years ago
  36. 5c2db37 Issue #7435: Remove duplicate int/long tests, and other by Mark Dickinson · 15 years ago
  37. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  38. c630039 Merged revisions 71772 via svnmerge from by Mark Dickinson · 15 years ago
  39. bd79264 Issue #4258: Make it possible to use 30-bit digits for PyLongs: by Mark Dickinson · 15 years ago
  40. 1124e71 Issue #4707: round(x, n) now returns an integer when x is an integer. by Mark Dickinson · 15 years ago
  41. a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 15 years ago
  42. 9ffc020 Issue 4842, patch 2/2: int('3L') should be invalid in Python 3.x. by Mark Dickinson · 16 years ago
  43. e5e298f Issue #4910 (1st patch of a series): fix int() and the corresponding by Mark Dickinson · 16 years ago
  44. 54bc1ec Forward merge of r67822 to py3k: add bit_length method to int. by Mark Dickinson · 16 years ago
  45. 6019208 remove some more references to __cmp__ #1717 by Benjamin Peterson · 16 years ago
  46. 6aa2d1f Merged revisions 65459,65472,65481,65518,65536,65581,65609,65637,65641,65644-65645 via svnmerge from by Georg Brandl · 16 years ago
  47. 6e6f59b Optimization to stop creating new small longs and use the by Facundo Batista · 16 years ago
  48. 875d4c0 move test_long_future into test_long by Benjamin Peterson · 16 years ago
  49. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  50. 5807c41 Merged revisions 63078 via svnmerge from by Eric Smith · 16 years ago
  51. 81ee3ef Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from by Christian Heimes · 16 years ago
  52. 0dd1b63 Renamed test_format to test__format__, since it really tests the __format__ method. It was hiding another method of the same name. by Eric Smith · 16 years ago
  53. fa767ef Partially revert r60376: restore ability for ints to be automatically converted to floats, if a float type specifier is given to an int. PEP 3101 should be clarified on this point.Also, remove unused local variables left over from r60376. by Eric Smith · 16 years ago
  54. 7b69c6c Restrict format presentation types to those specified in the 'Standard Format Specifiers' section of PEP 3101. by Eric Smith · 16 years ago
  55. 386cd1e long(float('nan')) raises an OverflowError as discussed on the mailing list a week ago by Christian Heimes · 17 years ago
  56. 1aa7b30 Fixed test_long by Christian Heimes · 17 years ago
  57. a34706f Merged revisions 59680-59695 via svnmerge from by Christian Heimes · 17 years ago
  58. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  59. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  60. 185e30c Added format tests. by Eric Smith · 17 years ago
  61. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  62. 28bbe42 math.floor(<int>) now returns the argument, by Guido van Rossum · 17 years ago
  63. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  64. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  65. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  66. aa97f04 Fix various spots where int/long and str/unicode unification by Walter Dörwald · 17 years ago
  67. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  68. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  69. d2dbecb repr() of a long int no longer produces a trailing 'L'. by Guido van Rossum · 18 years ago
  70. 3296e69 SF bug #1224347: int/long unification and hex() by Raymond Hettinger · 19 years ago
  71. a002159 Port test_long.py to unittest. by Walter Dörwald · 19 years ago
  72. 307fa78 SF bug #513866: Float/long comparison anomaly. by Tim Peters · 20 years ago
  73. daec961 Changed Karatsuba cutoff to match current reality. by Tim Peters · 20 years ago
  74. 7aa56c9 test_float_overflow(): make shuge (added last week) a little less by Guido van Rossum · 21 years ago
  75. abcb0c0 Fix SF bug# 676155, RuntimeWarning with tp_compare by Neal Norwitz · 21 years ago
  76. f171540 Change int() so that passing a string, unicode, float or long argument by Walter Dörwald · 22 years ago
  77. 7f270ba Added a test specifically to tickle Karatsuba; it costs no appreciable runtime. by Tim Peters · 22 years ago
  78. d0876b8 test_division(): Added one larger digits value, to ensure that the by Tim Peters · 22 years ago
  79. 28b0e2a Machines-- and Python --are a lot faster in relevant ways since this by Tim Peters · 22 years ago
  80. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  81. 05c09d0 Format strings (tuples,) appropriately by Neal Norwitz · 22 years ago
  82. 7852616 Return reasonable results for math.log(long) and math.log10(long) (we were by Tim Peters · 23 years ago
  83. 0dad0f7 Revert one of the "division fixes" in test_long. It intends to try both by Tim Peters · 23 years ago
  84. 54e54c6 The first batch of changes recommended by the fixdiv tool. These are by Guido van Rossum · 23 years ago
  85. 83e7ccc Whitespace normalization. by Tim Peters · 23 years ago
  86. 9fffa3e Raise OverflowError when appropriate on long->float conversion. Most of by Tim Peters · 23 years ago
  87. 32f453e New restriction on pow(x, y, z): If z is not None, x and y must be of by Tim Peters · 23 years ago
  88. a365309 Add a test for the new // operator too. by Tim Peters · 23 years ago
  89. 26c7fa3 SF bug [#454456] int overflow code needs tests. by Tim Peters · 23 years ago
  90. 971e069 Remove test_long's expected-output file. by Tim Peters · 23 years ago
  91. 3661908 This patch removes all uses of "assert" in the regression test suite by Marc-André Lemburg · 24 years ago
  92. 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 24 years ago
  93. 6e277cf Christian Tismer: added test to ensure that multiplication commutes. by Guido van Rossum · 24 years ago
  94. db1bd5c Revise tests to support str(<long int object>) not appending "L". by Fred Drake · 25 years ago
  95. 4581a0c New test_long.py from Tim Peters. by Guido van Rossum · 26 years ago
  96. 4365cab Add Tim Peters' test for long ints by Guido van Rossum · 26 years ago