1. 429e34a Merged revisions 74769 via svnmerge from by Mark Dickinson · 15 years ago
  2. 74e010a Merged revisions 74689 via svnmerge from by Mark Dickinson · 15 years ago
  3. b47fac4 PyLong_BASE_TWODIGITS_TYPE should be BASE_TWODIGITS_TYPE by Mark Dickinson · 16 years ago
  4. 2405854 Merged revisions 68974-68975 via svnmerge from by Mark Dickinson · 16 years ago
  5. e72bab3 Merged revisions 68947 via svnmerge from by Mark Dickinson · 16 years ago
  6. 76eb789 Merged revisions 68890 via svnmerge from by Mark Dickinson · 16 years ago
  7. b646757 Issue #1481296: (again!) Make conversion of a float NaN to an int or by Mark Dickinson · 16 years ago
  8. e7d8be8 Security patches from Apple: prevent int overflow when allocating memory by Neal Norwitz · 16 years ago
  9. 9be2ec1 Added additional __sizeof__ implementations and addressed comments made in by Robert Schuppenies · 16 years ago
  10. 9c437af Revert 64424, 64438, and 64439. by Raymond Hettinger · 16 years ago
  11. 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
  12. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  13. 7a6de8b Some style nits. Also clarify in the docstrings what __sizeof__ does. by Georg Brandl · 16 years ago
  14. 51df064 Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. by Robert Schuppenies · 16 years ago
  15. dc13b79 Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
  16. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  17. 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 · 17 years ago
  18. 27a6325 Fix for possible signed overflow: the behaviour of -LONG_MIN is by Mark Dickinson · 17 years ago
  19. d183bdd Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings. by Neal Norwitz · 17 years ago
  20. 231346e Fix warnings about using char as an array subscript. This is not portable by Neal Norwitz · 17 years ago
  21. 5de250e Fix build on platforms that don't have intptr_t. Patch by Joseph Armbruster. by Jeffrey Yasskin · 17 years ago
  22. 9ff19b5 Finished backporting PEP 3127, Integer Literal Support and Syntax. by Eric Smith · 17 years ago
  23. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
  24. 5e527eb Added PyNumber_ToBase and supporting routines _PyInt_Format and by Eric Smith · 17 years ago
  25. 7f39c9f Backport of several functions from Python 3.0 to 2.6 including PyUnicode_FromString, PyUnicode_Format and PyLong_From/AsSsize_t. The functions are partly required for the backport of the bytearray type and _fileio module. They should also make it easier to port C to 3.0. by Christian Heimes · 17 years ago
  26. 4956d2b Silence Coverity false alerts with CIDs #172, #183, #184 by Christian Heimes · 17 years ago
  27. 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 17 years ago
  28. 737c73f Make math.{floor,ceil}({int,long}) return float again for backwards by Jeffrey Yasskin · 17 years ago
  29. 8267d1d Bug #1481296: Fixed long(float('nan'))!=0L. by Christian Heimes · 17 years ago
  30. 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 17 years ago
  31. 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
  32. d544df7 Issue #1772851. Alters long.__hash__ from being *almost* completely by Facundo Batista · 17 years ago
  33. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  34. f030394 Fix problems in x64 build that were discovered by the testsuite: by Kristján Valur Jónsson · 17 years ago
  35. c02e131 Add some missing NULL checks which trigger crashes on low-memory conditions. by Georg Brandl · 18 years ago
  36. 00cd818 Patch #1638879: don't accept strings with embedded NUL bytes in long(). by Georg Brandl · 18 years ago
  37. ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 18 years ago
  38. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  39. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  40. c09efa8 Move the initialization of size_a down below the check for a being NULL. by Neal Norwitz · 18 years ago
  41. ef02b9e a & b were dereffed above, so they are known to be valid pointers. by Neal Norwitz · 18 years ago
  42. 9faa3ed PyLong_FromString(): Continued fraction analysis (explained in by Tim Peters · 18 years ago
  43. d89fc22 Patch #1494387: SVN longobject.c compiler warnings by Tim Peters · 18 years ago
  44. a85bf20 Faster path for PyLong_FromLongLong, using PyLong_FromLong algorithm by Bob Ippolito · 18 years ago
  45. da53afa A new table to help string->integer conversion was added yesterday to by Tim Peters · 18 years ago
  46. 696cf43 Heavily fiddled variant of patch #1442927: PyLong_FromString optimization. by Tim Peters · 18 years ago
  47. c6a989a Fix problems found by Coverity. by Neal Norwitz · 18 years ago
  48. 429433b C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places by Skip Montanaro · 19 years ago
  49. 9cb28bea Fix int() and long() to repr() their argument when formatting the exception, by Thomas Wouters · 19 years ago
  50. 377be11 More C++-compliance. Note especially listobject.c - to get C++ to accept the by Anthony Baxter · 19 years ago
  51. 0bc2ab9 Patch #837242: id() for large ptr should return a long. by Martin v. Löwis · 19 years ago
  52. c48c8db Add PY_SSIZE_T_MIN, as suggested by Ralf W. Grosse-Kunstleve. by Martin v. Löwis · 19 years ago
  53. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 19 years ago
  54. 12bec1b fix a comment. by Armin Rigo · 19 years ago
  55. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
  56. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 19 years ago
  57. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  58. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  59. 553489a As discussed on python-dev, silence three gcc-4.0.x warnings, using assert() by Thomas Wouters · 19 years ago
  60. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  61. de7990b SF bug #1238681: freed pointer is used in longobject.c:long_pow(). by Tim Peters · 19 years ago
  62. 3296e69 SF bug #1224347: int/long unification and hex() by Raymond Hettinger · 19 years ago
  63. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  64. 6ce7ed2 Revert previous checkin on getargs 'L' code. Try to convert all by Martin v. Löwis · 20 years ago
  65. 729d47d Patch #1024670: Support int objects in PyLong_AsUnsignedLong[Mask]. by Martin v. Löwis · 20 years ago
  66. cd97da3 long_pow(): Fix more instances of leaks in error cases. by Tim Peters · 20 years ago
  67. 47e52ee SF patch 936813: fast modular exponentiation by Tim Peters · 20 years ago
  68. 0973b99 SF patch 936813: fast modular exponentiation by Tim Peters · 20 years ago
  69. f466793 SF patch 703666: Several objects don't decref tmp on failure in subtype_new by Raymond Hettinger · 21 years ago
  70. c7bc0b9 SF patch 730594: assert from longobject.c, line 1215. by Tim Peters · 21 years ago
  71. fc61f9a Silence compiler warnings in VC 7. by Jeremy Hylton · 21 years ago
  72. a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 22 years ago
  73. b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 22 years ago
  74. d5a65a7 Fix SF bug #689659, 64-bit int and long hash keys incompatible by Neal Norwitz · 22 years ago
  75. 004a65c _PyLong_Sign(): remove an assert that needed a variable ndigits that by Guido van Rossum · 22 years ago
  76. 1a3b19a long_from_binary_base(): Sped this a little by computing the # of bits by Tim Peters · 22 years ago
  77. efb9625 Tightened a too-generous assert. by Tim Peters · 22 years ago
  78. bf2674b long(string, base) now takes time linear in len(string) when base is a by Tim Peters · 22 years ago
  79. ee1a53c cPickle.c: Full support for the new LONG1 and LONG4. Added comments. by Tim Peters · 22 years ago
  80. 08a1d9c Squash compiler wng about signed/unsigned comparison mismatch. by Tim Peters · 22 years ago
  81. 5b8132f _PyLong_NumBits(): The definition of this was too specific to the quirky by Tim Peters · 22 years ago
  82. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 22 years ago
  83. baefd9e Added new private API function _PyLong_NumBits. This will be used at the by Tim Peters · 22 years ago
  84. 0df2958 Consolidate the int and long sequence repeat code. Before the change, by Neil Schemenauer · 22 years ago
  85. f171540 Change int() so that passing a string, unicode, float or long argument by Walter Dörwald · 22 years ago
  86. 07e1476 Make int("...") return a long if an int would overflow. by Walter Dörwald · 22 years ago
  87. d581d77 replace thread state objects' ticker and checkinterval fields with two by Skip Montanaro · 22 years ago
  88. 0d2d87d long_format(), long_lshift(): Someone on c.l.py is trying to boost by Tim Peters · 22 years ago
  89. e417de0 Illustrating by example one good reason not to trust a proof <wink>. by Tim Peters · 22 years ago
  90. ab86c2b k_mul() comments: In honor of Dijkstra, made the proof that "t3 fits" by Tim Peters · 22 years ago
  91. 9973d74 long_mul(): Simplified exit code. In particular, k_mul() returns a by Tim Peters · 22 years ago
  92. 48d52c0 k_mul() comments: Simplified the simplified explanation of why ah*bh and by Tim Peters · 22 years ago
  93. 8e966ee k_mul() comments: Explained why there's always enough room to subtract by Tim Peters · 22 years ago
  94. cba6e96 Fixed error in new comment. by Tim Peters · 22 years ago
  95. d6974a5 k_mul(): The fix for (ah+al)*(bh+bl) spilling 1 bit beyond the allocated by Tim Peters · 22 years ago
  96. d8c8048 Fix comment for PyLong_AsUnsignedLong() to say that the return value by Guido van Rossum · 22 years ago
  97. 1203403 k_lopsided_mul(): This allocated more space for bslice than necessary. by Tim Peters · 22 years ago
  98. 6000464 Added new function k_lopsided_mul(), which is much more efficient than by Tim Peters · 22 years ago
  99. 547607c k_mul(): Moved an assert down. In a debug build, interrupting a by Tim Peters · 22 years ago
  100. 70b041b k_mul(): Heh -- I checked in two fixes for the last problem. Only keep by Tim Peters · 22 years ago