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