1. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  2. 8b87a0b Use %ld and casts to long for refcount printing, in absense of a universally by Thomas Wouters · 18 years ago
  3. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  4. 418a1ef RFE #1436243: make integers in [0..256] preallocated. by Georg Brandl · 18 years ago
  5. b1410fb Avoid unused variables when SIZEOF_SIZE_T == SIZEOF_LONG. Also normalize by Thomas Wouters · 18 years ago
  6. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  7. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  8. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  9. c885443 Stop producing or using OverflowWarning. PEP 237 thought this would by Tim Peters · 20 years ago
  10. 3a313e3 Check the type of values returned by __int__, __float__, __long__, by Neil Schemenauer · 20 years ago
  11. a006c37 SF bug #980419: int left-shift causes memory leak by Raymond Hettinger · 20 years ago
  12. 41627bf Reword message by Andrew M. Kuchling · 20 years ago
  13. 204d786 Fix exception wording by Andrew M. Kuchling · 20 years ago
  14. b32e640 SF patch #875689: >100k alloc wasted on startup (Contributed by Mike Pall.) by Raymond Hettinger · 20 years ago
  15. 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 21 years ago
  16. 71665dc Add a couple of decrefs to error paths. by Michael W. Hudson · 21 years ago
  17. f466793 SF patch 703666: Several objects don't decref tmp on failure in subtype_new by Raymond Hettinger · 21 years ago
  18. a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 21 years ago
  19. 850566b Strange control flow in PyInt_AsLong. When nb_int is called inside by Thomas Heller · 21 years ago
  20. 4771065 Issue a warning when int('0...', 0) returns an int with the sign by Guido van Rossum · 21 years ago
  21. de8b94c Fix SF bug #683467, 'int' ability to generate longs not inherited by Neal Norwitz · 21 years ago
  22. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 21 years ago
  23. fa56e2d SF # 669553, fix memory (ref) leaks by Neal Norwitz · 22 years ago
  24. b2501f4 Since the *_Init() are private, prefix with _, suggested by Skip by Neal Norwitz · 22 years ago
  25. c91ed40 SF #561244, Micro optimizations by Neal Norwitz · 22 years ago
  26. 0df2958 Consolidate the int and long sequence repeat code. Before the change, by Neil Schemenauer · 22 years ago
  27. f171540 Change int() so that passing a string, unicode, float or long argument by Walter Dörwald · 22 years ago
  28. 07e1476 Make int("...") return a long if an int would overflow. by Walter Dörwald · 22 years ago
  29. 02fe647 Insert an overflow check when the sequence repetition count is outside by Guido van Rossum · 22 years ago
  30. e3a8e7e Call me anal, but there was a particular phrase that was speading to by Guido van Rossum · 22 years ago
  31. 54df53a More changes of DeprecationWarning to FutureWarning. by Guido van Rossum · 22 years ago
  32. 4571e9d Add an improvement wrinkle to Neil Schemenauer's change to int_mul by Guido van Rossum · 22 years ago
  33. da1a221 int_lshift(): Simplified/sped overflow-checking. by Tim Peters · 22 years ago
  34. 643d59c Use a better check for overflow from a<<b. by Guido van Rossum · 22 years ago
  35. 078151d Implement stage B0 of PEP 237: add warnings for operations that by Guido van Rossum · 22 years ago
  36. 3bc3f28 Only call sq_repeat if the object does not have a nb_multiply slot. One by Neil Schemenauer · 22 years ago
  37. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  38. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  39. 29c0afc Just added comments, and cleared some XXX questions, related to int by Tim Peters · 22 years ago
  40. 9364698 Make sure that tp_free frees the int the same way as tp_dealloc would. by Guido van Rossum · 22 years ago
  41. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  42. e75bfde Bugfix candidate. by Guido van Rossum · 22 years ago
  43. a3c01ce SF bug #488480: integer multiply to return -max_int-1. by Tim Peters · 23 years ago
  44. 4222104 SF bug #487743: test_builtin fails on 64 bit platform. by Tim Peters · 23 years ago
  45. 6197509 PyInt_FromString(), int_repr(), int_oct(), int_hex(): Conversion of by Barry Warsaw · 23 years ago
  46. 1952e38 Add additional coercion support for "self subtypes" to int, long, by Guido van Rossum · 23 years ago
  47. 7e35d57 A fix for SF bug #461546 (bug in long_mul). by Guido van Rossum · 23 years ago
  48. 73a1dfe More bug 460020. When I is a subclass of int, disable the +I(whatever), by Tim Peters · 23 years ago
  49. dea6ef9 Replace a few places where X->ob_type was compared to &PyXXX_Type with by Guido van Rossum · 23 years ago
  50. 4c483c4 Make the error msgs in our pow() implementations consistent. by Tim Peters · 23 years ago
  51. e2a6000 Change long/long true division to return as many good bits as it can; by Tim Peters · 23 years ago
  52. 9c1d7fd Move int_true_divide next to the other division routines. by Tim Peters · 23 years ago
  53. 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
  54. 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 23 years ago
  55. d93dce1 Fix typo: double semicolons. by Guido van Rossum · 23 years ago
  56. bef1417 Make int, long and float subclassable. by Guido van Rossum · 23 years ago
  57. 0b13116 err_ovf(): only raise OverflowError when OverflowWarning was raised. by Guido van Rossum · 23 years ago
  58. 31960db int_pow(): Repair typo when passing on to float pow (the 2nd argument was by Tim Peters · 23 years ago
  59. e27f795 Change all case where we used to raise OverflowError to issue a by Guido van Rossum · 23 years ago
  60. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  61. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  62. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  63. 1bc8fab Kill more warnings from the SGI compiler. Part of SF patch #434992. by Fred Drake · 23 years ago
  64. b82fedc On int to the negative integral power, let float handle it instead of by Guido van Rossum · 23 years ago
  65. 1dad6a8 SF bug 434186: 0x80000000/2 != 0x80000000>>1 by Tim Peters · 23 years ago
  66. 2b6727b Use Py_CHARMASK for ctype macros. Fixes bug #232787. by Martin v. Löwis · 23 years ago
  67. 3968e4c Rich comparisons fall-out: by Guido van Rossum · 24 years ago
  68. 139e72a Make int a new style number type. Sequence repeat is now done here now as well. by Neil Schemenauer · 24 years ago
  69. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  70. c54d190 SF bug 115831 and Ping's SF patch 101751, 0.0**-2.0 returns inf rather than by Tim Peters · 24 years ago
  71. d57731f Move LONG_BIT from intobject.c to pyport.h. #error if it's already been by Tim Peters · 24 years ago
  72. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  73. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  74. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  75. a2f5511 ANSI-fication of the sources. by Fred Drake · 24 years ago
  76. 7d3a511 Cray J90 fixes for long ints. by Tim Peters · 24 years ago
  77. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  78. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  79. a44d353 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  80. c18a6f4 Replace PyErr_BadArgument() error in PyInt_AsLong() with "an integer by Guido van Rossum · 24 years ago
  81. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  82. 9e896b3 Marc-Andre's third try at this bulk patch seems to work (except that by Guido van Rossum · 24 years ago
  83. 4c08d55 Many changes for Unicode, by Marc-Andre Lemburg. by Guido van Rossum · 24 years ago
  84. fb4574e In response to one particular complaint on edu-sig, change some error by Guido van Rossum · 24 years ago
  85. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 25 years ago
  86. 226ae6c Mainlining the string_methods branch. See branch revision log by Barry Warsaw · 25 years ago
  87. e13ff2e Patch by Tim Peters fixing PR#88: by Guido van Rossum · 25 years ago
  88. 51288bc Fix a problem with Vladimir's PyInt_Fini code: clear the free list; if by Guido van Rossum · 25 years ago
  89. 3fce883 Vladimir has restructured his code somewhat so that the blocks are now by Guido van Rossum · 25 years ago
  90. da084ed Patch by Vladimir Marangoz to allow freeing of the allocated blocks of by Guido van Rossum · 25 years ago
  91. fbbd57e Added _Fini() routines to free up some memory by Guido van Rossum · 27 years ago
  92. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  93. 6f72f97 Increased buffer sizes used by hex() and oct() -- on 64-bit or 128-bit by Guido van Rossum · 28 years ago
  94. ebee025 Changed hex() and oct() again, to never emit a '-' sign. by Guido van Rossum · 28 years ago
  95. 80dd9b6 Subtle change to hex/oct formatting so the largest negative number by Guido van Rossum · 28 years ago
  96. 541cdd8 Fix overflow test for multiply to catch some cases it missed. by Guido van Rossum · 28 years ago
  97. 9478dd4 Fix core dump from pow(x,y,0). Make gcc -Wall happy. by Guido van Rossum · 28 years ago
  98. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  99. c206c76 fix memory leak and null pointer dereference by Guido van Rossum · 30 years ago
  100. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago