1. 4581ae5 Make test_base64 pass. by Guido van Rossum · 17 years ago
  2. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  3. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  4. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  5. 61c31b0 Another refleak, this time in PyLong_AsLong. Fixes leaks showing in by Georg Brandl · 17 years ago
  6. 27d517b Merged revisions 53875-53911 via svnmerge from by Thomas Wouters · 17 years ago
  7. 14b6d92 Fix refcounting bugs related to CONVERT_BINOP. by Martin v. Löwis · 17 years ago
  8. 523d4f9 Fix the sqlite failure -- it was the usual, PyInt_Check -> PyInt_CheckExact. by Guido van Rossum · 18 years ago
  9. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  10. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  11. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  12. ca81046 Get rid of more coerce cruft (really check in this time :-) by Neal Norwitz · 18 years ago
  13. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  14. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  15. d2dbecb repr() of a long int no longer produces a trailing 'L'. by Guido van Rossum · 18 years ago
  16. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  17. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  18. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  19. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  20. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  21. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  22. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  23. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  24. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  25. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  26. 553489a As discussed on python-dev, silence three gcc-4.0.x warnings, using assert() by Thomas Wouters · 18 years ago
  27. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  28. de7990b SF bug #1238681: freed pointer is used in longobject.c:long_pow(). by Tim Peters · 19 years ago
  29. 3296e69 SF bug #1224347: int/long unification and hex() by Raymond Hettinger · 19 years ago
  30. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  31. 6ce7ed2 Revert previous checkin on getargs 'L' code. Try to convert all by Martin v. Löwis · 19 years ago
  32. 729d47d Patch #1024670: Support int objects in PyLong_AsUnsignedLong[Mask]. by Martin v. Löwis · 20 years ago
  33. cd97da3 long_pow(): Fix more instances of leaks in error cases. by Tim Peters · 20 years ago
  34. 47e52ee SF patch 936813: fast modular exponentiation by Tim Peters · 20 years ago
  35. 0973b99 SF patch 936813: fast modular exponentiation by Tim Peters · 20 years ago
  36. f466793 SF patch 703666: Several objects don't decref tmp on failure in subtype_new by Raymond Hettinger · 21 years ago
  37. c7bc0b9 SF patch 730594: assert from longobject.c, line 1215. by Tim Peters · 21 years ago
  38. fc61f9a Silence compiler warnings in VC 7. by Jeremy Hylton · 21 years ago
  39. a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 21 years ago
  40. b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 21 years ago
  41. d5a65a7 Fix SF bug #689659, 64-bit int and long hash keys incompatible by Neal Norwitz · 21 years ago
  42. 004a65c _PyLong_Sign(): remove an assert that needed a variable ndigits that by Guido van Rossum · 21 years ago
  43. 1a3b19a long_from_binary_base(): Sped this a little by computing the # of bits by Tim Peters · 21 years ago
  44. efb9625 Tightened a too-generous assert. by Tim Peters · 21 years ago
  45. bf2674b long(string, base) now takes time linear in len(string) when base is a by Tim Peters · 21 years ago
  46. ee1a53c cPickle.c: Full support for the new LONG1 and LONG4. Added comments. by Tim Peters · 21 years ago
  47. 08a1d9c Squash compiler wng about signed/unsigned comparison mismatch. by Tim Peters · 21 years ago
  48. 5b8132f _PyLong_NumBits(): The definition of this was too specific to the quirky by Tim Peters · 21 years ago
  49. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 21 years ago
  50. baefd9e Added new private API function _PyLong_NumBits. This will be used at the by Tim Peters · 21 years ago
  51. 0df2958 Consolidate the int and long sequence repeat code. Before the change, by Neil Schemenauer · 22 years ago
  52. f171540 Change int() so that passing a string, unicode, float or long argument by Walter Dörwald · 22 years ago
  53. 07e1476 Make int("...") return a long if an int would overflow. by Walter Dörwald · 22 years ago
  54. d581d77 replace thread state objects' ticker and checkinterval fields with two by Skip Montanaro · 22 years ago
  55. 0d2d87d long_format(), long_lshift(): Someone on c.l.py is trying to boost by Tim Peters · 22 years ago
  56. e417de0 Illustrating by example one good reason not to trust a proof <wink>. by Tim Peters · 22 years ago
  57. ab86c2b k_mul() comments: In honor of Dijkstra, made the proof that "t3 fits" by Tim Peters · 22 years ago
  58. 9973d74 long_mul(): Simplified exit code. In particular, k_mul() returns a by Tim Peters · 22 years ago
  59. 48d52c0 k_mul() comments: Simplified the simplified explanation of why ah*bh and by Tim Peters · 22 years ago
  60. 8e966ee k_mul() comments: Explained why there's always enough room to subtract by Tim Peters · 22 years ago
  61. cba6e96 Fixed error in new comment. by Tim Peters · 22 years ago
  62. d6974a5 k_mul(): The fix for (ah+al)*(bh+bl) spilling 1 bit beyond the allocated by Tim Peters · 22 years ago
  63. d8c8048 Fix comment for PyLong_AsUnsignedLong() to say that the return value by Guido van Rossum · 22 years ago
  64. 1203403 k_lopsided_mul(): This allocated more space for bslice than necessary. by Tim Peters · 22 years ago
  65. 6000464 Added new function k_lopsided_mul(), which is much more efficient than by Tim Peters · 22 years ago
  66. 547607c k_mul(): Moved an assert down. In a debug build, interrupting a by Tim Peters · 22 years ago
  67. 70b041b k_mul(): Heh -- I checked in two fixes for the last problem. Only keep by Tim Peters · 22 years ago
  68. d8b2173 k_mul(): White-box testing turned up that (ah+al)*(bh+bl) can, in rare by Tim Peters · 22 years ago
  69. 115c888 x_mul(): Made life easier for C optimizers in the "grade school" by Tim Peters · 22 years ago
  70. d64c1de k_mul() and long_mul(): I'm confident that the Karatsuba algorithm is by Tim Peters · 22 years ago
  71. 738eda7 k_mul: Rearranged computation for better cache use. Ignored overflow by Tim Peters · 22 years ago
  72. 44121a6 x_mul(): This failed to normalize its result. by Tim Peters · 22 years ago
  73. 877a212 Introduced helper functions v_iadd and v_isub, for in-place digit-vector by Tim Peters · 22 years ago
  74. fc07e56 k_mul(): Repaired another typo in another comment. by Tim Peters · 22 years ago
  75. 18c15b9 k_mul(): Repaired typo in comment. by Tim Peters · 22 years ago
  76. 5af4e6c Cautious introduction of a patch that started from by Tim Peters · 22 years ago
  77. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  78. b6d29b7 Undef MIN and MAX before defining them, to avoid warnings on certain platforms. by Guido van Rossum · 22 years ago
  79. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  80. c4ad0bc Clarify return value of PyLong_AsLongLong(). by Jeremy Hylton · 22 years ago
  81. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  82. c8bb9eb Patch #494047: removes 64-bit ?: to cope on plan9. by Martin v. Löwis · 22 years ago
  83. 5329cdb _PyLong_Copy(): was creating a copy of the absolute value, but should by Tim Peters · 22 years ago
  84. a5854c2 Patch #508038: Do not use a type as a variable name. by Martin v. Löwis · 22 years ago
  85. 6f97e49 long_true_divide(): decref its converted arguments. test_long_future.py by Tim Peters · 23 years ago
  86. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  87. d38b1c7 SF [#466125] PyLong_AsLongLong works for any integer. by Tim Peters · 23 years ago
  88. 1952e38 Add additional coercion support for "self subtypes" to int, long, by Guido van Rossum · 23 years ago
  89. 7e35d57 A fix for SF bug #461546 (bug in long_mul). by Guido van Rossum · 23 years ago
  90. bafedec based upon a suggestion in c.l.py, this slight expansion of the by Skip Montanaro · 23 years ago
  91. 40c397d long_invert(): tiny speed and space optimization. by Tim Peters · 23 years ago
  92. 69c2de3 More bug 460020. Disable a number of long optimizations for long subclasses. by Tim Peters · 23 years ago
  93. 64b5ce3 SF bug #460020: bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  94. e56ed9b long_true_divide: reliably force underflow to 0 when the denominator by Tim Peters · 23 years ago
  95. 4c483c4 Make the error msgs in our pow() implementations consistent. by Tim Peters · 23 years ago
  96. 57f282a Try to recover from that glibc's ldexp apparently doesn't set errno on by Tim Peters · 23 years ago
  97. e2a6000 Change long/long true division to return as many good bits as it can; by Tim Peters · 23 years ago
  98. 20dab9f Move long_true_divide next to the other division routines (for clarity!). by Tim Peters · 23 years ago
  99. 9fffa3e Raise OverflowError when appropriate on long->float conversion. Most of by Tim Peters · 23 years ago
  100. a1c1b0f Introduce new private API function _PyLong_AsScaledDouble. Not used yet, by Tim Peters · 23 years ago