1. 6685128 Fix more ssize_t issues. by Martin v. Löwis · 18 years ago
  2. 568f1d0 Py_ssize_t issue; repr()'ing a very large string would result in a teensy by Thomas Wouters · 18 years ago
  3. 4e90810 Fix variable/format-char discrepancy in new-style class __getitem__, by Thomas Wouters · 18 years ago
  4. dc5f808 Make s.replace() work with explicit counts exceeding 2Gb. by Thomas Wouters · 18 years ago
  5. 4abb366 Use Py_ssize_t to hold the 'width' argument to the ljust, rjust, center and by Thomas Wouters · 18 years ago
  6. a4ebc13 Refactor: Move code that uses co_lnotab from ceval to codeobject by Jeremy Hylton · 18 years ago
  7. 2060d1b Comment typo fix by Andrew M. Kuchling · 18 years ago
  8. 45294a9 Remove types from type_list if they have no objects by Martin v. Löwis · 18 years ago
  9. 429433b C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places by Skip Montanaro · 18 years ago
  10. 54e964d C++ compilation cleanup: Migrate declaration of by Skip Montanaro · 18 years ago
  11. 0e2cbab No need to cast a Py_ssize_t, use %z in PyErr_Format by Neal Norwitz · 18 years ago
  12. 715a4cd Use %zd instead of %i as format character (in call to PyErr_Format) for by Thomas Wouters · 18 years ago
  13. 81b092d gen_del(): Looks like much this was copy/pasted from by Tim Peters · 18 years ago
  14. ffe2395 Remove now-unused variables from tp_traverse and tp_clear methods. by Tim Peters · 18 years ago
  15. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 18 years ago
  16. 447d095 - Whitespace normalization by Thomas Wouters · 18 years ago
  17. edf17d8 Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for by Thomas Wouters · 18 years ago
  18. ed8f783 Clear dummy and emptyfrozenset, so that we don't have by Martin v. Löwis · 18 years ago
  19. c597d1b Unlink the structseq type from the global list of by Martin v. Löwis · 18 years ago
  20. adcd25e frame_clear(): Explain why it's important to make the frame by Tim Peters · 18 years ago
  21. de2acf6 frame_traverse(): Use the standard Py_VISIT macro. by Tim Peters · 18 years ago
  22. a13131c Trimmed trailing whitespace. by Tim Peters · 18 years ago
  23. 8ebb28d Fix SF#1470508: crash in generator cycle finalization. There were two by Phillip J. Eby · 18 years ago
  24. 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 18 years ago
  25. 83687c9 Change more occurrences of maxsplit to Py_ssize_t. by Martin v. Löwis · 18 years ago
  26. 9c83076 Change maxsplit types to Py_ssize_t. by Martin v. Löwis · 18 years ago
  27. b1ed7fa Replace INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 18 years ago
  28. 2a19074 Replace INT_MAX with PY_SSIZE_T_MAX where string length are concerned. by Martin v. Löwis · 18 years ago
  29. f15da69 Remove another INT_MAX limitation by Martin v. Löwis · 18 years ago
  30. 8ce358f Replace most INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 18 years ago
  31. 412fb67 Change more ints to Py_ssize_t. by Martin v. Löwis · 18 years ago
  32. 80d2e59 Revert 34153: Py_UNICODE should not be signed. by Martin v. Löwis · 18 years ago
  33. ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 18 years ago
  34. 3109d62 Add a cast to make code compile with a C++ compiler. by Anthony Baxter · 18 years ago
  35. 8920bf2 Don't set gi_frame to Py_None, use NULL instead, eliminating some insane by Phillip J. Eby · 18 years ago
  36. e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 18 years ago
  37. 017749c wrap docstrings so they are less than 80 columns. add spaces after commas. by Neal Norwitz · 18 years ago
  38. a5a80cb gen_throw(): The caller doesn't own PyArg_ParseTuple() by Tim Peters · 18 years ago
  39. 9cb28bea Fix int() and long() to repr() their argument when formatting the exception, by Thomas Wouters · 18 years ago
  40. cbd6f18 _Py_PrintReferenceAddresses,_Py_PrintReferences: by Tim Peters · 18 years ago
  41. ee36d65 Correct casts to char*. by Martin v. Löwis · 18 years ago
  42. 72d2067 Remove "static forward" declaration. Move constructors after the type objects. by Martin v. Löwis · 18 years ago
  43. 9b26122 Get compiling again by Neal Norwitz · 18 years ago
  44. a628621 More low-hanging fruit. Still need to re-arrange some code (or find a better by Anthony Baxter · 18 years ago
  45. 377be11 More C++-compliance. Note especially listobject.c - to get C++ to accept the by Anthony Baxter · 18 years ago
  46. 0bc2ab9 Patch #837242: id() for large ptr should return a long. by Martin v. Löwis · 18 years ago
  47. 2ba9661 SF Patch #1463867: Improved generator finalization to allow generators by Phillip J. Eby · 18 years ago
  48. 7e957d3 Remove dead code (reported by HP compiler). by Neal Norwitz · 18 years ago
  49. c48c8db Add PY_SSIZE_T_MIN, as suggested by Ralf W. Grosse-Kunstleve. by Martin v. Löwis · 18 years ago
  50. f4d8f39 Make xrange more Py_ssize_t aware, by assuming a Py_ssize_t is always at by Thomas Wouters · 18 years ago
  51. 54b42f1 Allow long integers in PySlice_GetIndices. by Martin v. Löwis · 18 years ago
  52. d08eaf4 Use Py_ssize_t in slices by Neal Norwitz · 18 years ago
  53. ed02eb6 Bug #1177964: make file iterator raise MemoryError on too big files by Georg Brandl · 18 years ago
  54. 176014f SF patch #1458476 with modifications based on discussions in python-dev. This by Barry Warsaw · 18 years ago
  55. 314861c Minor bugs in the __index__ code (PEP 357), with tests. by Armin Rigo · 18 years ago
  56. ecdc0a9 That one was a mistake. by Georg Brandl · 18 years ago
  57. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 18 years ago
  58. 262c00a Fixed bug #1459029 - unicode reprs were double-escaped. by Anthony Baxter · 18 years ago
  59. 12bec1b fix a comment. by Armin Rigo · 18 years ago
  60. 334b5b2 Tighten an overbroad and misleading assertion. (Reported by Jim Jewett.) by Raymond Hettinger · 18 years ago
  61. 7fbd691 Get rid of warnings on some platforms by using %u for a size_t. by Neal Norwitz · 18 years ago
  62. bee0712 Support throw() of string exceptions. by Phillip J. Eby · 18 years ago
  63. badc086 Stop duplicating code and handle slice indices consistently and correctly by Neal Norwitz · 18 years ago
  64. 8af92d1 Heh -- used the right format for a refcount, but forgot to stop truncating it. by Tim Peters · 18 years ago
  65. 4d073bb _Py_NegativeRefcount(): print the full value of ob_refcnt. by Tim Peters · 18 years ago
  66. 29892cc Update function name to reflect params and stop casting to long to avoid losing data by Neal Norwitz · 18 years ago
  67. 2aa9a5d Use macro versions instead of function versions when we already know the type. by Neal Norwitz · 18 years ago
  68. abd1ff8 Previously, Python code had no easy way to access the contents of a by Georg Brandl · 18 years ago
  69. 5c170fd Fix some missing checks after PyTuple_New, PyList_New, PyDict_New by Georg Brandl · 18 years ago
  70. ae1d0c9 Introduced symbol PY_FORMAT_SIZE_T. See the new comments by Tim Peters · 18 years ago
  71. cf79aac Merge the tim-obmalloc branch to the trunk. by Tim Peters · 18 years ago
  72. 7580146 Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and by Neal Norwitz · 18 years ago
  73. 3daf758 Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExact by Georg Brandl · 18 years ago
  74. a96affe - Reindent a confusingly indented piece of code (no intended code changes by Thomas Wouters · 18 years ago
  75. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 18 years ago
  76. 692cdbc Fix three nits found by Coverity, adding null checks and comments. by Guido van Rossum · 18 years ago
  77. 480f1bb Update Unicode database to Unicode 4.1. by Martin v. Löwis · 18 years ago
  78. 533ff6f Patch #1434038: property() now uses the getter's docstring if there is by Georg Brandl · 18 years ago
  79. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  80. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  81. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  82. 84632ee Oops, forgot to include this in the last checkin. by Neal Norwitz · 18 years ago
  83. 1fc4b77 Change some sequnce APIs to use Py_ssize_t. by Neal Norwitz · 18 years ago
  84. 8c49c82 Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions. by Neal Norwitz · 18 years ago
  85. 8b87a0b Use %ld and casts to long for refcount printing, in absense of a universally by Thomas Wouters · 18 years ago
  86. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 18 years ago
  87. 1a5e21e Updates to the with-statement: by Guido van Rossum · 18 years ago
  88. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  89. 4b92a82 Oops. Fix syntax for C89 compilers. by Guido van Rossum · 18 years ago
  90. 1968ad3 - Patch 1433928: by Guido van Rossum · 18 years ago
  91. 418a1ef RFE #1436243: make integers in [0..256] preallocated. by Georg Brandl · 18 years ago
  92. d02db40 Make staticmethod and classmethod complain about keyword args. by Georg Brandl · 18 years ago
  93. c255c7b Bug #1086854: Rename PyHeapType members adding ht_ prefix. by Georg Brandl · 18 years ago
  94. dde99d2 Remove size constraints in SLICE opcodes. by Martin v. Löwis · 18 years ago
  95. 02cbdd3 Use proper PyArg_Parse format char for Py_ssize_t, instead of 'l', in by Thomas Wouters · 19 years ago
  96. de01774 Use correct PyArg_Parse format char for Py_ssize_t in unicode.center(). Fixes: by Thomas Wouters · 19 years ago
  97. 977485d Use Py_ssize_t in helper function between Py_ssize_t-using functions. by Thomas Wouters · 19 years ago
  98. eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 19 years ago
  99. 82c5a86 Oops, this is supposed to be disabled by default. by Neal Norwitz · 19 years ago
  100. e0e89f7 Revert 42400. by Martin v. Löwis · 19 years ago