1. efb9625 Tightened a too-generous assert. by Tim Peters · 21 years ago
  2. bf2674b long(string, base) now takes time linear in len(string) when base is a by Tim Peters · 21 years ago
  3. ee1a53c cPickle.c: Full support for the new LONG1 and LONG4. Added comments. by Tim Peters · 21 years ago
  4. 08a1d9c Squash compiler wng about signed/unsigned comparison mismatch. by Tim Peters · 21 years ago
  5. 5b8132f _PyLong_NumBits(): The definition of this was too specific to the quirky by Tim Peters · 21 years ago
  6. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 21 years ago
  7. baefd9e Added new private API function _PyLong_NumBits. This will be used at the by Tim Peters · 21 years ago
  8. 0df2958 Consolidate the int and long sequence repeat code. Before the change, by Neil Schemenauer · 22 years ago
  9. f171540 Change int() so that passing a string, unicode, float or long argument by Walter Dörwald · 22 years ago
  10. 07e1476 Make int("...") return a long if an int would overflow. by Walter Dörwald · 22 years ago
  11. d581d77 replace thread state objects' ticker and checkinterval fields with two by Skip Montanaro · 22 years ago
  12. 0d2d87d long_format(), long_lshift(): Someone on c.l.py is trying to boost by Tim Peters · 22 years ago
  13. e417de0 Illustrating by example one good reason not to trust a proof <wink>. by Tim Peters · 22 years ago
  14. ab86c2b k_mul() comments: In honor of Dijkstra, made the proof that "t3 fits" by Tim Peters · 22 years ago
  15. 9973d74 long_mul(): Simplified exit code. In particular, k_mul() returns a by Tim Peters · 22 years ago
  16. 48d52c0 k_mul() comments: Simplified the simplified explanation of why ah*bh and by Tim Peters · 22 years ago
  17. 8e966ee k_mul() comments: Explained why there's always enough room to subtract by Tim Peters · 22 years ago
  18. cba6e96 Fixed error in new comment. by Tim Peters · 22 years ago
  19. d6974a5 k_mul(): The fix for (ah+al)*(bh+bl) spilling 1 bit beyond the allocated by Tim Peters · 22 years ago
  20. d8c8048 Fix comment for PyLong_AsUnsignedLong() to say that the return value by Guido van Rossum · 22 years ago
  21. 1203403 k_lopsided_mul(): This allocated more space for bslice than necessary. by Tim Peters · 22 years ago
  22. 6000464 Added new function k_lopsided_mul(), which is much more efficient than by Tim Peters · 22 years ago
  23. 547607c k_mul(): Moved an assert down. In a debug build, interrupting a by Tim Peters · 22 years ago
  24. 70b041b k_mul(): Heh -- I checked in two fixes for the last problem. Only keep by Tim Peters · 22 years ago
  25. d8b2173 k_mul(): White-box testing turned up that (ah+al)*(bh+bl) can, in rare by Tim Peters · 22 years ago
  26. 115c888 x_mul(): Made life easier for C optimizers in the "grade school" by Tim Peters · 22 years ago
  27. d64c1de k_mul() and long_mul(): I'm confident that the Karatsuba algorithm is by Tim Peters · 22 years ago
  28. 738eda7 k_mul: Rearranged computation for better cache use. Ignored overflow by Tim Peters · 22 years ago
  29. 44121a6 x_mul(): This failed to normalize its result. by Tim Peters · 22 years ago
  30. 877a212 Introduced helper functions v_iadd and v_isub, for in-place digit-vector by Tim Peters · 22 years ago
  31. fc07e56 k_mul(): Repaired another typo in another comment. by Tim Peters · 22 years ago
  32. 18c15b9 k_mul(): Repaired typo in comment. by Tim Peters · 22 years ago
  33. 5af4e6c Cautious introduction of a patch that started from by Tim Peters · 22 years ago
  34. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  35. b6d29b7 Undef MIN and MAX before defining them, to avoid warnings on certain platforms. by Guido van Rossum · 22 years ago
  36. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  37. c4ad0bc Clarify return value of PyLong_AsLongLong(). by Jeremy Hylton · 22 years ago
  38. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  39. c8bb9eb Patch #494047: removes 64-bit ?: to cope on plan9. by Martin v. Löwis · 22 years ago
  40. 5329cdb _PyLong_Copy(): was creating a copy of the absolute value, but should by Tim Peters · 22 years ago
  41. a5854c2 Patch #508038: Do not use a type as a variable name. by Martin v. Löwis · 22 years ago
  42. 6f97e49 long_true_divide(): decref its converted arguments. test_long_future.py by Tim Peters · 23 years ago
  43. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  44. d38b1c7 SF [#466125] PyLong_AsLongLong works for any integer. by Tim Peters · 23 years ago
  45. 1952e38 Add additional coercion support for "self subtypes" to int, long, by Guido van Rossum · 23 years ago
  46. 7e35d57 A fix for SF bug #461546 (bug in long_mul). by Guido van Rossum · 23 years ago
  47. bafedec based upon a suggestion in c.l.py, this slight expansion of the by Skip Montanaro · 23 years ago
  48. 40c397d long_invert(): tiny speed and space optimization. by Tim Peters · 23 years ago
  49. 69c2de3 More bug 460020. Disable a number of long optimizations for long subclasses. by Tim Peters · 23 years ago
  50. 64b5ce3 SF bug #460020: bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  51. e56ed9b long_true_divide: reliably force underflow to 0 when the denominator by Tim Peters · 23 years ago
  52. 4c483c4 Make the error msgs in our pow() implementations consistent. by Tim Peters · 23 years ago
  53. 57f282a Try to recover from that glibc's ldexp apparently doesn't set errno on by Tim Peters · 23 years ago
  54. e2a6000 Change long/long true division to return as many good bits as it can; by Tim Peters · 23 years ago
  55. 20dab9f Move long_true_divide next to the other division routines (for clarity!). by Tim Peters · 23 years ago
  56. 9fffa3e Raise OverflowError when appropriate on long->float conversion. Most of by Tim Peters · 23 years ago
  57. a1c1b0f Introduce new private API function _PyLong_AsScaledDouble. Not used yet, by Tim Peters · 23 years ago
  58. 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
  59. 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 23 years ago
  60. 13228a6 Ah, the joy of writing test cases... by Guido van Rossum · 23 years ago
  61. bef1417 Make int, long and float subclassable. by Guido van Rossum · 23 years ago
  62. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  63. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  64. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  65. 0d5dd68 Python.h: Don't attempt to redefine NDEBUG if it's already defined. by Tim Peters · 23 years ago
  66. 586b2e3 long_format: Simplify the overly elaborate base-is-a-power-of-2 code. by Tim Peters · 23 years ago
  67. 212e614 divrem1 & long_format: found a clean way to factor divrem1 so that by Tim Peters · 23 years ago
  68. c8a6b9b long_format(): Simplify new code a bit. by Tim Peters · 23 years ago
  69. fad225f long_format(): Easy speedup for output bases that aren't a power of 2 (in by Tim Peters · 23 years ago
  70. 0ec9aba On long to the negative long power, let float handle it instead of by Guido van Rossum · 23 years ago
  71. 70128a1 PyLong_{As, From}VoidPtr: cleanup, replacing assumptions in comments with by Tim Peters · 23 years ago
  72. cf37dfc Change IS_LITTLE_ENDIAN macro -- a little faster now. by Tim Peters · 23 years ago
  73. ede0509 _PyLong_AsByteArray: simplify the logic for dealing with the most- by Tim Peters · 23 years ago
  74. ce9de2f PyLong_From{Unsigned,}Long: count the # of digits first, so no more space by Tim Peters · 23 years ago
  75. f251d06 _PyLong_FromByteArray: changed decl of "carry" to match "thisbyte". No by Tim Peters · 23 years ago
  76. 05607ad _PyLong_AsByteArray: Don't do the "delicate overflow" check unless it's by Tim Peters · 23 years ago
  77. 898cf85 _PyLong_AsByteArray: added assert that the input is normalized. This is by Tim Peters · 23 years ago
  78. 9cb0c38 PyLong_As{Unsigned,}LongLong: fiddled final result casting. by Tim Peters · 23 years ago
  79. d1a7da6 longobject.c: by Tim Peters · 23 years ago
  80. 8bc84b4 _PyLong_{As,From}ByteArray: Minor code rearrangement aimed at improving by Tim Peters · 23 years ago
  81. 7a3bfc3 Added q/Q standard (x-platform 8-byte ints) mode in struct module. by Tim Peters · 23 years ago
  82. 2a9b367 Two new private longobject API functions, by Tim Peters · 23 years ago
  83. 6fd867b Rich comparisons fall-out: by Guido van Rossum · 24 years ago
  84. ba872e2 Make long a new style number type. Sequence repeat is now done here by Neil Schemenauer · 24 years ago
  85. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  86. c54d190 SF bug 115831 and Ping's SF patch 101751, 0.0**-2.0 returns inf rather than by Tim Peters · 24 years ago
  87. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  88. 39dce29 Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470. by Tim Peters · 24 years ago
  89. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  90. 7d3a511 Cray J90 fixes for long ints. by Tim Peters · 24 years ago
  91. 43f04a3 The tail end of x_sub implicitly assumed that an unsigned short by Tim Peters · 24 years ago
  92. 9ace6bc Got RID of redundant coercions in longobject.c (as spotted by Greg by Tim Peters · 24 years ago
  93. 9f688bf Some cleanup of longs in prepartion for Cray J90 fixes: got by Tim Peters · 24 years ago
  94. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  95. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  96. 4c7fdfc Trent Mick <trentm@ActiveState.com>: by Fred Drake · 24 years ago
  97. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  98. ba71a24 Simple optimization by Christian Tismer, who gives credit to Lenny by Guido van Rossum · 24 years ago
  99. 9e896b3 Marc-Andre's third try at this bulk patch seems to work (except that by Guido van Rossum · 24 years ago
  100. 121ee27 long_format(): Now takes a third parameter, addL; iff true, a by Fred Drake · 25 years ago