1. 7e957d3 Remove dead code (reported by HP compiler). by Neal Norwitz · 18 years ago
  2. c48c8db Add PY_SSIZE_T_MIN, as suggested by Ralf W. Grosse-Kunstleve. by Martin v. Löwis · 18 years ago
  3. f4d8f39 Make xrange more Py_ssize_t aware, by assuming a Py_ssize_t is always at by Thomas Wouters · 18 years ago
  4. 54b42f1 Allow long integers in PySlice_GetIndices. by Martin v. Löwis · 18 years ago
  5. d08eaf4 Use Py_ssize_t in slices by Neal Norwitz · 18 years ago
  6. ed02eb6 Bug #1177964: make file iterator raise MemoryError on too big files by Georg Brandl · 18 years ago
  7. 176014f SF patch #1458476 with modifications based on discussions in python-dev. This by Barry Warsaw · 18 years ago
  8. 314861c Minor bugs in the __index__ code (PEP 357), with tests. by Armin Rigo · 18 years ago
  9. ecdc0a9 That one was a mistake. by Georg Brandl · 18 years ago
  10. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 18 years ago
  11. 262c00a Fixed bug #1459029 - unicode reprs were double-escaped. by Anthony Baxter · 18 years ago
  12. 12bec1b fix a comment. by Armin Rigo · 18 years ago
  13. 334b5b2 Tighten an overbroad and misleading assertion. (Reported by Jim Jewett.) by Raymond Hettinger · 18 years ago
  14. 7fbd691 Get rid of warnings on some platforms by using %u for a size_t. by Neal Norwitz · 18 years ago
  15. bee0712 Support throw() of string exceptions. by Phillip J. Eby · 18 years ago
  16. badc086 Stop duplicating code and handle slice indices consistently and correctly by Neal Norwitz · 18 years ago
  17. 8af92d1 Heh -- used the right format for a refcount, but forgot to stop truncating it. by Tim Peters · 18 years ago
  18. 4d073bb _Py_NegativeRefcount(): print the full value of ob_refcnt. by Tim Peters · 18 years ago
  19. 29892cc Update function name to reflect params and stop casting to long to avoid losing data by Neal Norwitz · 18 years ago
  20. 2aa9a5d Use macro versions instead of function versions when we already know the type. by Neal Norwitz · 18 years ago
  21. abd1ff8 Previously, Python code had no easy way to access the contents of a by Georg Brandl · 18 years ago
  22. 5c170fd Fix some missing checks after PyTuple_New, PyList_New, PyDict_New by Georg Brandl · 18 years ago
  23. ae1d0c9 Introduced symbol PY_FORMAT_SIZE_T. See the new comments by Tim Peters · 18 years ago
  24. cf79aac Merge the tim-obmalloc branch to the trunk. by Tim Peters · 18 years ago
  25. 7580146 Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and by Neal Norwitz · 18 years ago
  26. 3daf758 Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExact by Georg Brandl · 18 years ago
  27. a96affe - Reindent a confusingly indented piece of code (no intended code changes by Thomas Wouters · 18 years ago
  28. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 18 years ago
  29. 692cdbc Fix three nits found by Coverity, adding null checks and comments. by Guido van Rossum · 18 years ago
  30. 480f1bb Update Unicode database to Unicode 4.1. by Martin v. Löwis · 18 years ago
  31. 533ff6f Patch #1434038: property() now uses the getter's docstring if there is by Georg Brandl · 18 years ago
  32. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  33. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  34. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  35. 84632ee Oops, forgot to include this in the last checkin. by Neal Norwitz · 18 years ago
  36. 1fc4b77 Change some sequnce APIs to use Py_ssize_t. by Neal Norwitz · 18 years ago
  37. 8c49c82 Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions. by Neal Norwitz · 18 years ago
  38. 8b87a0b Use %ld and casts to long for refcount printing, in absense of a universally by Thomas Wouters · 18 years ago
  39. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 18 years ago
  40. 1a5e21e Updates to the with-statement: by Guido van Rossum · 18 years ago
  41. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  42. 4b92a82 Oops. Fix syntax for C89 compilers. by Guido van Rossum · 18 years ago
  43. 1968ad3 - Patch 1433928: by Guido van Rossum · 18 years ago
  44. 418a1ef RFE #1436243: make integers in [0..256] preallocated. by Georg Brandl · 18 years ago
  45. d02db40 Make staticmethod and classmethod complain about keyword args. by Georg Brandl · 18 years ago
  46. c255c7b Bug #1086854: Rename PyHeapType members adding ht_ prefix. by Georg Brandl · 18 years ago
  47. dde99d2 Remove size constraints in SLICE opcodes. by Martin v. Löwis · 19 years ago
  48. 02cbdd3 Use proper PyArg_Parse format char for Py_ssize_t, instead of 'l', in by Thomas Wouters · 19 years ago
  49. de01774 Use correct PyArg_Parse format char for Py_ssize_t in unicode.center(). Fixes: by Thomas Wouters · 19 years ago
  50. 977485d Use Py_ssize_t in helper function between Py_ssize_t-using functions. by Thomas Wouters · 19 years ago
  51. 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
  52. 82c5a86 Oops, this is supposed to be disabled by default. by Neal Norwitz · 19 years ago
  53. e0e89f7 Revert 42400. by Martin v. Löwis · 19 years ago
  54. 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 19 years ago
  55. 26efe40 Get rid of compiler warnings (gcc 3.3.4 on x86) by Neal Norwitz · 19 years ago
  56. 1523154 doubletounicode(), longtounicode(): by Tim Peters · 19 years ago
  57. 4701af5 Remove two unused Py_ssize_t variables (merge glitches, looks like.) by Thomas Wouters · 19 years ago
  58. b1410fb Avoid unused variables when SIZEOF_SIZE_T == SIZEOF_LONG. Also normalize by Thomas Wouters · 19 years ago
  59. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  60. 967aa8b * Refcount leak. It was just a reference to Py_None, but still. by Armin Rigo · 19 years ago
  61. c45251a SF patch #1397960: When mixing file-iteration and by Thomas Wouters · 19 years ago
  62. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 19 years ago
  63. 553489a As discussed on python-dev, silence three gcc-4.0.x warnings, using assert() by Thomas Wouters · 19 years ago
  64. bab05c9 Fix SF #1412837, compile failed with Watcom compiler by Neal Norwitz · 19 years ago
  65. fc76d63 - Patch #1400181, fix unicode string formatting to not use the locale. by Neal Norwitz · 19 years ago
  66. 0c6e2f1 Remove some shadowed variables by Neal Norwitz · 19 years ago
  67. 76dc081 strlen() returns a size_t, get rid of 64-bit warning by Neal Norwitz · 19 years ago
  68. d43069c Fix icc warnings: remove (sometimes) unused variable conditionally by Neal Norwitz · 19 years ago
  69. b2da01b Fix icc warnings: remove unused variable by Neal Norwitz · 19 years ago
  70. dea59e5 Stop maintaining the buildno file. by Martin v. Löwis · 19 years ago
  71. 50bf51a Fix ref/memory leak introduced in rev 41845. by Neal Norwitz · 19 years ago
  72. 60b2996 Fixed English in a comment; trimmed trailing whitespace; no code changes. by Tim Peters · 19 years ago
  73. 037d1e0 SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro". by Armin Rigo · 19 years ago
  74. fd163f9 SF patch #1390657: by Armin Rigo · 19 years ago
  75. 7c46074 Check return result for error by Neal Norwitz · 19 years ago
  76. 835b243 Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\' by Hye-Shik Chang · 19 years ago
  77. a716eab Revert r41662 and the part of 41552 that originally caused the problem by Neal Norwitz · 19 years ago
  78. e237d50 Add a workaround for file.ftell() to raise IOError for ttys. by Hye-Shik Chang · 19 years ago
  79. ba2fa63 en_sit will be freed when en is DECREF'd. Don't double free. by Neal Norwitz · 19 years ago
  80. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  81. b78a5fc Fix bug by Michael W. Hudson · 19 years ago
  82. d4fff17 Fix leaked reference to None. by Walter Dörwald · 19 years ago
  83. e5e5aa4 Do a better job of not inlining Py_ADDRESS_IN_RANGE() for newer gcc's. by Neal Norwitz · 19 years ago
  84. 6576bd8 Prevent name pollution by making lots of internal functions static. by Neal Norwitz · 19 years ago
  85. c6686b7 Added proper reflection on instances of <type 'method-wrapper'>, e.g. by Armin Rigo · 19 years ago
  86. 8294de5 Another comment typo fix by Andrew M. Kuchling · 19 years ago
  87. 2e2c02f Fix typo in comment. by Walter Dörwald · 19 years ago
  88. ab0f947 Remove .cvsignore files, as they live in svn:ignore properties now. by Martin v. Löwis · 19 years ago
  89. db390c1 fix typos, mostly in comments by Fred Drake · 19 years ago
  90. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  91. b2308bb Fix bug: by Michael W. Hudson · 19 years ago
  92. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  93. 2cb94ab Enhance the performance of two important Unicode character by Marc-André Lemburg · 19 years ago
  94. 95c1e50 SF bug #1331563 ] string_subscript doesn't check for failed PyMem_Malloc. Will backport by Neal Norwitz · 19 years ago
  95. 5c4a9d6 Whitespace corrections. by Marc-André Lemburg · 19 years ago
  96. e115ec8 Bug fix for [ 1331062 ] utf 7 codec broken. by Marc-André Lemburg · 19 years ago
  97. d1c1e10 Part of SF patch #1313939: Speedup charmap decoding by extending by Walter Dörwald · 19 years ago
  98. d45014b Fix PyString_Format so that the "%s" format works again when Unicode is not by Georg Brandl · 19 years ago
  99. ec862b9 (pedronis, arigo) by Armin Rigo · 19 years ago
  100. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago