1. 422051a Patch #1953 by Christian Heimes · 18 years ago
  2. 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 18 years ago
  3. 737c73f Make math.{floor,ceil}({int,long}) return float again for backwards by Jeffrey Yasskin · 18 years ago
  4. 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 18 years ago
  5. 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 · 18 years ago
  6. 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 18 years ago
  7. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
  8. d501d1f Port rev 55353 from Guido: by Neal Norwitz · 18 years ago
  9. abe1d48 As per Armin Rigo's suggestion, remove special handing from intobject.c to deal with the peculiarities of classobject's implementation of the number protocol. The nb_long method of classobject now falls back to nb_int if there is no __long__ attribute present. by Kristján Valur Jónsson · 18 years ago
  10. f030394 Fix problems in x64 build that were discovered by the testsuite: by Kristján Valur Jónsson · 18 years ago
  11. ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 18 years ago
  12. 37e6502 Minor change in int() docstring for proper spacing. by Gustavo Niemeyer · 19 years ago
  13. a443bc8 Mention in the int() docstring that a base zero has meaning, as by Gustavo Niemeyer · 19 years ago
  14. 2c1375c Bug #1545497: when given an explicit base, int() did ignore NULs by Georg Brandl · 19 years ago
  15. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 19 years ago
  16. 820d6ac Fix integer negation and absolute value to not rely by Martin v. Löwis · 19 years ago
  17. c10c9d0 "Conceptual" merge of rev 51711 from the 2.5 branch. by Tim Peters · 19 years ago
  18. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 19 years ago
  19. 429433b C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places by Skip Montanaro · 19 years ago
  20. 9cb28bea Fix int() and long() to repr() their argument when formatting the exception, by Thomas Wouters · 19 years ago
  21. 377be11 More C++-compliance. Note especially listobject.c - to get C++ to accept the by Anthony Baxter · 19 years ago
  22. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 19 years ago
  23. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
  24. 8b87a0b Use %ld and casts to long for refcount printing, in absense of a universally by Thomas Wouters · 19 years ago
  25. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  26. 418a1ef RFE #1436243: make integers in [0..256] preallocated. by Georg Brandl · 19 years ago
  27. b1410fb Avoid unused variables when SIZEOF_SIZE_T == SIZEOF_LONG. Also normalize by Thomas Wouters · 19 years ago
  28. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  29. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 20 years ago
  30. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 20 years ago
  31. c885443 Stop producing or using OverflowWarning. PEP 237 thought this would by Tim Peters · 21 years ago
  32. 3a313e3 Check the type of values returned by __int__, __float__, __long__, by Neil Schemenauer · 21 years ago
  33. a006c37 SF bug #980419: int left-shift causes memory leak by Raymond Hettinger · 21 years ago
  34. 41627bf Reword message by Andrew M. Kuchling · 21 years ago
  35. 204d786 Fix exception wording by Andrew M. Kuchling · 21 years ago
  36. b32e640 SF patch #875689: >100k alloc wasted on startup (Contributed by Mike Pall.) by Raymond Hettinger · 22 years ago
  37. 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 22 years ago
  38. 71665dc Add a couple of decrefs to error paths. by Michael W. Hudson · 22 years ago
  39. f466793 SF patch 703666: Several objects don't decref tmp on failure in subtype_new by Raymond Hettinger · 22 years ago
  40. a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 22 years ago
  41. 850566b Strange control flow in PyInt_AsLong. When nb_int is called inside by Thomas Heller · 22 years ago
  42. 4771065 Issue a warning when int('0...', 0) returns an int with the sign by Guido van Rossum · 22 years ago
  43. de8b94c Fix SF bug #683467, 'int' ability to generate longs not inherited by Neal Norwitz · 22 years ago
  44. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 23 years ago
  45. fa56e2d SF # 669553, fix memory (ref) leaks by Neal Norwitz · 23 years ago
  46. b2501f4 Since the *_Init() are private, prefix with _, suggested by Skip by Neal Norwitz · 23 years ago
  47. c91ed40 SF #561244, Micro optimizations by Neal Norwitz · 23 years ago
  48. 0df2958 Consolidate the int and long sequence repeat code. Before the change, by Neil Schemenauer · 23 years ago
  49. f171540 Change int() so that passing a string, unicode, float or long argument by Walter Dörwald · 23 years ago
  50. 07e1476 Make int("...") return a long if an int would overflow. by Walter Dörwald · 23 years ago
  51. 02fe647 Insert an overflow check when the sequence repetition count is outside by Guido van Rossum · 23 years ago
  52. e3a8e7e Call me anal, but there was a particular phrase that was speading to by Guido van Rossum · 23 years ago
  53. 54df53a More changes of DeprecationWarning to FutureWarning. by Guido van Rossum · 23 years ago
  54. 4571e9d Add an improvement wrinkle to Neil Schemenauer's change to int_mul by Guido van Rossum · 23 years ago
  55. da1a221 int_lshift(): Simplified/sped overflow-checking. by Tim Peters · 23 years ago
  56. 643d59c Use a better check for overflow from a<<b. by Guido van Rossum · 23 years ago
  57. 078151d Implement stage B0 of PEP 237: add warnings for operations that by Guido van Rossum · 23 years ago
  58. 3bc3f28 Only call sq_repeat if the object does not have a nb_multiply slot. One by Neil Schemenauer · 23 years ago
  59. 938ace6 staticforward bites the dust. by Jeremy Hylton · 23 years ago
  60. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 23 years ago
  61. 29c0afc Just added comments, and cleared some XXX questions, related to int by Tim Peters · 23 years ago
  62. 9364698 Make sure that tp_free frees the int the same way as tp_dealloc would. by Guido van Rossum · 23 years ago
  63. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 23 years ago
  64. e75bfde Bugfix candidate. by Guido van Rossum · 24 years ago
  65. a3c01ce SF bug #488480: integer multiply to return -max_int-1. by Tim Peters · 24 years ago
  66. 4222104 SF bug #487743: test_builtin fails on 64 bit platform. by Tim Peters · 24 years ago
  67. 6197509 PyInt_FromString(), int_repr(), int_oct(), int_hex(): Conversion of by Barry Warsaw · 24 years ago
  68. 1952e38 Add additional coercion support for "self subtypes" to int, long, by Guido van Rossum · 24 years ago
  69. 7e35d57 A fix for SF bug #461546 (bug in long_mul). by Guido van Rossum · 24 years ago
  70. 73a1dfe More bug 460020. When I is a subclass of int, disable the +I(whatever), by Tim Peters · 24 years ago
  71. dea6ef9 Replace a few places where X->ob_type was compared to &PyXXX_Type with by Guido van Rossum · 24 years ago
  72. 4c483c4 Make the error msgs in our pow() implementations consistent. by Tim Peters · 24 years ago
  73. e2a6000 Change long/long true division to return as many good bits as it can; by Tim Peters · 24 years ago
  74. 9c1d7fd Move int_true_divide next to the other division routines. by Tim Peters · 24 years ago
  75. 32f453e New restriction on pow(x, y, z): If z is not None, x and y must be of by Tim Peters · 24 years ago
  76. 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 24 years ago
  77. d93dce1 Fix typo: double semicolons. by Guido van Rossum · 24 years ago
  78. bef1417 Make int, long and float subclassable. by Guido van Rossum · 24 years ago
  79. 0b13116 err_ovf(): only raise OverflowError when OverflowWarning was raised. by Guido van Rossum · 24 years ago
  80. 31960db int_pow(): Repair typo when passing on to float pow (the 2nd argument was by Tim Peters · 24 years ago
  81. e27f795 Change all case where we used to raise OverflowError to issue a by Guido van Rossum · 24 years ago
  82. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 24 years ago
  83. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 24 years ago
  84. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 24 years ago
  85. 1bc8fab Kill more warnings from the SGI compiler. Part of SF patch #434992. by Fred Drake · 24 years ago
  86. b82fedc On int to the negative integral power, let float handle it instead of by Guido van Rossum · 24 years ago
  87. 1dad6a8 SF bug 434186: 0x80000000/2 != 0x80000000>>1 by Tim Peters · 24 years ago
  88. 2b6727b Use Py_CHARMASK for ctype macros. Fixes bug #232787. by Martin v. Löwis · 24 years ago
  89. 3968e4c Rich comparisons fall-out: by Guido van Rossum · 25 years ago
  90. 139e72a Make int a new style number type. Sequence repeat is now done here now as well. by Neil Schemenauer · 25 years ago
  91. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 25 years ago
  92. c54d190 SF bug 115831 and Ping's SF patch 101751, 0.0**-2.0 returns inf rather than by Tim Peters · 25 years ago
  93. d57731f Move LONG_BIT from intobject.c to pyport.h. #error if it's already been by Tim Peters · 25 years ago
  94. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 25 years ago
  95. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 25 years ago
  96. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 25 years ago
  97. a2f5511 ANSI-fication of the sources. by Fred Drake · 25 years ago
  98. 7d3a511 Cray J90 fixes for long ints. by Tim Peters · 25 years ago
  99. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 25 years ago
  100. fd71b9e Change copyright notice. by Guido van Rossum · 25 years ago