1. 2177607 Merged revisions 69498 via svnmerge from by Mark Dickinson · 15 years ago
  2. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  3. 1124e71 Issue #4707: round(x, n) now returns an integer when x is an integer. by Mark Dickinson · 15 years ago
  4. a5cafdf Merged revisions 68974-68975 via svnmerge from by Mark Dickinson · 15 years ago
  5. 1e2d870 Merged revisions 68947 via svnmerge from by Mark Dickinson · 15 years ago
  6. 17e5587 Merged revisions 68890 via svnmerge from by Mark Dickinson · 15 years ago
  7. d4624c3 Some minor cleanups in PyLong_FromLong: by Mark Dickinson · 15 years ago
  8. 9ffc020 Issue 4842, patch 2/2: int('3L') should be invalid in Python 3.x. by Mark Dickinson · 16 years ago
  9. 8055afd Issue #4910, patch 3/3: rename nb_long to nb_reserved by Mark Dickinson · 16 years ago
  10. cce2f21 Issue 4910, patch 2 of (probably) 3: pave the way for renaming of by Mark Dickinson · 16 years ago
  11. 3563153 Reduce the size of the _PyLong_DigitValue table. by Raymond Hettinger · 16 years ago
  12. 51f3ef9 Issue #3106: Speedup some comparisons. This also removes the last call by Antoine Pitrou · 16 years ago
  13. 54bc1ec Forward merge of r67822 to py3k: add bit_length method to int. by Mark Dickinson · 16 years ago
  14. 50b2b6e Issue 4497: silence compiler warnings on Windows. by Mark Dickinson · 16 years ago
  15. 3ce5d92 Closes release blocker #3627. by Neal Norwitz · 16 years ago
  16. 6aa2d1f Merged revisions 65459,65472,65481,65518,65536,65581,65609,65637,65641,65644-65645 via svnmerge from by Georg Brandl · 16 years ago
  17. 6e6f59b Optimization to stop creating new small longs and use the by Facundo Batista · 16 years ago
  18. fbe94c5 Merged revisions 64842,64853,64856,64945 via svnmerge from by Robert Schuppenies · 16 years ago
  19. 029656f Issue #3236: Return small longs from PyLong_FromString. by Martin v. Löwis · 16 years ago
  20. 4f92ca4 Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods by Benjamin Peterson · 16 years ago
  21. 00709aa Merged revisions 63856-63857,63859-63860 via svnmerge from by Martin v. Löwis · 16 years ago
  22. 4a7d76d Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
  23. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  24. 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 16 years ago
  25. dae2a89 Merged revisions 62350-62355,62358-62359,62364-62365,62370,62372-62375,62378-62379,62381 via svnmerge from by Christian Heimes · 16 years ago
  26. 53876d9 Merged revisions 62380,62382-62383 via svnmerge from by Christian Heimes · 16 years ago
  27. 7ab6be2 PyLong_FromSsize_t was incorrect when sizeof(size_t) > sizeof(long); by Mark Dickinson · 16 years ago
  28. bbe741d Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge from by Christian Heimes · 16 years ago
  29. ba4af49 Merged revisions 61964-61979 via svnmerge from by Christian Heimes · 16 years ago
  30. 48aa4b1 Get the ref counting for static allocated longs right. by Christian Heimes · 16 years ago
  31. dfc12ed Fixed multiple reinitialization of the Python interpreter. The small int list in longobject.c has caused a seg fault during the third finalization. by Christian Heimes · 16 years ago
  32. 2336bdd Fix Issue #1769: Now int('- 1') or int('+ 1') is not allowed by Facundo Batista · 17 years ago
  33. 386cd1e long(float('nan')) raises an OverflowError as discussed on the mailing list a week ago by Christian Heimes · 17 years ago
  34. c36625b Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful for later versions of MSVC. VS6 claims that fortran is a reserved word by Christian Heimes · 17 years ago
  35. a34706f Merged revisions 59680-59695 via svnmerge from by Christian Heimes · 17 years ago
  36. 8445104 Drop _PyLong_FitsInLong. Fixes #1666. by Martin v. Löwis · 17 years ago
  37. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  38. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  39. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
  40. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  41. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  42. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  43. ce272b6 Merged revisions 58203-58210 via svnmerge from by Thomas Wouters · 17 years ago
  44. da86fcc Drop convert_binop. by Martin v. Löwis · 17 years ago
  45. 20594cc round(1e20) wrongly returned 0. This fixes test_builtin on windows. by Thomas Heller · 17 years ago
  46. ed2b739 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  47. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  48. 2fa33db Finish the work on __round__ and __trunc__. With Alex Martelli and Keir Mierle. by Guido van Rossum · 17 years ago
  49. 2523621 Change the error reporting when an invalid string is encountered to avoid by Guido van Rossum · 17 years ago
  50. 2220122 Oops. I killed a bit too much and not enough when I deleted intobject.c. by Guido van Rossum · 17 years ago
  51. b43daf7 Changes to long and float by Jeffrey Jasskin to conform to PEP 3141. by Guido van Rossum · 17 years ago
  52. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  53. 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 17 years ago
  54. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  55. 4581ae5 Make test_base64 pass. by Guido van Rossum · 17 years ago
  56. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  57. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  58. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  59. 61c31b0 Another refleak, this time in PyLong_AsLong. Fixes leaks showing in by Georg Brandl · 17 years ago
  60. 27d517b Merged revisions 53875-53911 via svnmerge from by Thomas Wouters · 17 years ago
  61. 14b6d92 Fix refcounting bugs related to CONVERT_BINOP. by Martin v. Löwis · 17 years ago
  62. 523d4f9 Fix the sqlite failure -- it was the usual, PyInt_Check -> PyInt_CheckExact. by Guido van Rossum · 18 years ago
  63. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  64. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  65. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  66. ca81046 Get rid of more coerce cruft (really check in this time :-) by Neal Norwitz · 18 years ago
  67. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  68. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  69. d2dbecb repr() of a long int no longer produces a trailing 'L'. by Guido van Rossum · 18 years ago
  70. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  71. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  72. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  73. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  74. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  75. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  76. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  77. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  78. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  79. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  80. 553489a As discussed on python-dev, silence three gcc-4.0.x warnings, using assert() by Thomas Wouters · 18 years ago
  81. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  82. de7990b SF bug #1238681: freed pointer is used in longobject.c:long_pow(). by Tim Peters · 19 years ago
  83. 3296e69 SF bug #1224347: int/long unification and hex() by Raymond Hettinger · 19 years ago
  84. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  85. 6ce7ed2 Revert previous checkin on getargs 'L' code. Try to convert all by Martin v. Löwis · 19 years ago
  86. 729d47d Patch #1024670: Support int objects in PyLong_AsUnsignedLong[Mask]. by Martin v. Löwis · 20 years ago
  87. cd97da3 long_pow(): Fix more instances of leaks in error cases. by Tim Peters · 20 years ago
  88. 47e52ee SF patch 936813: fast modular exponentiation by Tim Peters · 20 years ago
  89. 0973b99 SF patch 936813: fast modular exponentiation by Tim Peters · 20 years ago
  90. f466793 SF patch 703666: Several objects don't decref tmp on failure in subtype_new by Raymond Hettinger · 21 years ago
  91. c7bc0b9 SF patch 730594: assert from longobject.c, line 1215. by Tim Peters · 21 years ago
  92. fc61f9a Silence compiler warnings in VC 7. by Jeremy Hylton · 21 years ago
  93. a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 21 years ago
  94. b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 21 years ago
  95. d5a65a7 Fix SF bug #689659, 64-bit int and long hash keys incompatible by Neal Norwitz · 21 years ago
  96. 004a65c _PyLong_Sign(): remove an assert that needed a variable ndigits that by Guido van Rossum · 21 years ago
  97. 1a3b19a long_from_binary_base(): Sped this a little by computing the # of bits by Tim Peters · 21 years ago
  98. efb9625 Tightened a too-generous assert. by Tim Peters · 21 years ago
  99. bf2674b long(string, base) now takes time linear in len(string) when base is a by Tim Peters · 21 years ago
  100. ee1a53c cPickle.c: Full support for the new LONG1 and LONG4. Added comments. by Tim Peters · 21 years ago