1. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  2. 4b92a82 Oops. Fix syntax for C89 compilers. by Guido van Rossum · 18 years ago
  3. 1968ad3 - Patch 1433928: by Guido van Rossum · 18 years ago
  4. 418a1ef RFE #1436243: make integers in [0..256] preallocated. by Georg Brandl · 18 years ago
  5. d02db40 Make staticmethod and classmethod complain about keyword args. by Georg Brandl · 18 years ago
  6. c255c7b Bug #1086854: Rename PyHeapType members adding ht_ prefix. by Georg Brandl · 18 years ago
  7. dde99d2 Remove size constraints in SLICE opcodes. by Martin v. Löwis · 18 years ago
  8. 02cbdd3 Use proper PyArg_Parse format char for Py_ssize_t, instead of 'l', in by Thomas Wouters · 18 years ago
  9. de01774 Use correct PyArg_Parse format char for Py_ssize_t in unicode.center(). Fixes: by Thomas Wouters · 18 years ago
  10. 977485d Use Py_ssize_t in helper function between Py_ssize_t-using functions. by Thomas Wouters · 18 years ago
  11. eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 18 years ago
  12. 82c5a86 Oops, this is supposed to be disabled by default. by Neal Norwitz · 18 years ago
  13. e0e89f7 Revert 42400. by Martin v. Löwis · 18 years ago
  14. 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 18 years ago
  15. 26efe40 Get rid of compiler warnings (gcc 3.3.4 on x86) by Neal Norwitz · 18 years ago
  16. 1523154 doubletounicode(), longtounicode(): by Tim Peters · 18 years ago
  17. 4701af5 Remove two unused Py_ssize_t variables (merge glitches, looks like.) by Thomas Wouters · 18 years ago
  18. b1410fb Avoid unused variables when SIZEOF_SIZE_T == SIZEOF_LONG. Also normalize by Thomas Wouters · 18 years ago
  19. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  20. 967aa8b * Refcount leak. It was just a reference to Py_None, but still. by Armin Rigo · 18 years ago
  21. c45251a SF patch #1397960: When mixing file-iteration and by Thomas Wouters · 18 years ago
  22. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  23. 553489a As discussed on python-dev, silence three gcc-4.0.x warnings, using assert() by Thomas Wouters · 18 years ago
  24. bab05c9 Fix SF #1412837, compile failed with Watcom compiler by Neal Norwitz · 18 years ago
  25. fc76d63 - Patch #1400181, fix unicode string formatting to not use the locale. by Neal Norwitz · 19 years ago
  26. 0c6e2f1 Remove some shadowed variables by Neal Norwitz · 19 years ago
  27. 76dc081 strlen() returns a size_t, get rid of 64-bit warning by Neal Norwitz · 19 years ago
  28. d43069c Fix icc warnings: remove (sometimes) unused variable conditionally by Neal Norwitz · 19 years ago
  29. b2da01b Fix icc warnings: remove unused variable by Neal Norwitz · 19 years ago
  30. dea59e5 Stop maintaining the buildno file. by Martin v. Löwis · 19 years ago
  31. 50bf51a Fix ref/memory leak introduced in rev 41845. by Neal Norwitz · 19 years ago
  32. 60b2996 Fixed English in a comment; trimmed trailing whitespace; no code changes. by Tim Peters · 19 years ago
  33. 037d1e0 SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro". by Armin Rigo · 19 years ago
  34. fd163f9 SF patch #1390657: by Armin Rigo · 19 years ago
  35. 7c46074 Check return result for error by Neal Norwitz · 19 years ago
  36. 835b243 Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\' by Hye-Shik Chang · 19 years ago
  37. a716eab Revert r41662 and the part of 41552 that originally caused the problem by Neal Norwitz · 19 years ago
  38. e237d50 Add a workaround for file.ftell() to raise IOError for ttys. by Hye-Shik Chang · 19 years ago
  39. ba2fa63 en_sit will be freed when en is DECREF'd. Don't double free. by Neal Norwitz · 19 years ago
  40. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  41. b78a5fc Fix bug by Michael W. Hudson · 19 years ago
  42. d4fff17 Fix leaked reference to None. by Walter Dörwald · 19 years ago
  43. e5e5aa4 Do a better job of not inlining Py_ADDRESS_IN_RANGE() for newer gcc's. by Neal Norwitz · 19 years ago
  44. 6576bd8 Prevent name pollution by making lots of internal functions static. by Neal Norwitz · 19 years ago
  45. c6686b7 Added proper reflection on instances of <type 'method-wrapper'>, e.g. by Armin Rigo · 19 years ago
  46. 8294de5 Another comment typo fix by Andrew M. Kuchling · 19 years ago
  47. 2e2c02f Fix typo in comment. by Walter Dörwald · 19 years ago
  48. ab0f947 Remove .cvsignore files, as they live in svn:ignore properties now. by Martin v. Löwis · 19 years ago
  49. db390c1 fix typos, mostly in comments by Fred Drake · 19 years ago
  50. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  51. b2308bb Fix bug: by Michael W. Hudson · 19 years ago
  52. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  53. 2cb94ab Enhance the performance of two important Unicode character by Marc-André Lemburg · 19 years ago
  54. 95c1e50 SF bug #1331563 ] string_subscript doesn't check for failed PyMem_Malloc. Will backport by Neal Norwitz · 19 years ago
  55. 5c4a9d6 Whitespace corrections. by Marc-André Lemburg · 19 years ago
  56. e115ec8 Bug fix for [ 1331062 ] utf 7 codec broken. by Marc-André Lemburg · 19 years ago
  57. d1c1e10 Part of SF patch #1313939: Speedup charmap decoding by extending by Walter Dörwald · 19 years ago
  58. d45014b Fix PyString_Format so that the "%s" format works again when Unicode is not by Georg Brandl · 19 years ago
  59. ec862b9 (pedronis, arigo) by Armin Rigo · 19 years ago
  60. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  61. acb1424 The key to the various sort columns got lost. Pulled from by Skip Montanaro · 19 years ago
  62. 630db60 - On 64-bit platforms, when __len__() returns a value that cannot be by Guido van Rossum · 19 years ago
  63. ba3e6ec A minor fix for 64-bit platforms: when __len__() returns Python int by Guido van Rossum · 19 years ago
  64. 9bda1d6 No longer ignore exceptions raised by comparisons during key lookup. by Raymond Hettinger · 19 years ago
  65. c404ff2 patch [ 1118729 ] Error in representation of complex numbers(again) by Georg Brandl · 19 years ago
  66. ab61923 Fix bug in last checkin (2.231). To match previous behavior, unicode by Neil Schemenauer · 19 years ago
  67. a47d1c0 SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complain by Walter Dörwald · 19 years ago
  68. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 19 years ago
  69. 9c1491f * Add a fast equality check path for frozensets where the hash value has by Raymond Hettinger · 19 years ago
  70. a710b33 SF bug #1242657: list(obj) can swallow KeyboardInterrupt by Raymond Hettinger · 19 years ago
  71. d8e1338 Add shortcuts for a|a and a&a. by Raymond Hettinger · 19 years ago
  72. f81e450 Fix nits. by Raymond Hettinger · 19 years ago
  73. f408ddf Results of a line-by-line comparison back to dictobject.c. by Raymond Hettinger · 19 years ago
  74. c47e01d Numerous fix-ups to C API and docs. Added tests for C API. by Raymond Hettinger · 19 years ago
  75. 994c2c1 DECREF --> XDECREF by Raymond Hettinger · 19 years ago
  76. beb3101 Add a C API for sets and frozensets. by Raymond Hettinger · 19 years ago
  77. ce8185e More function re-ordering (placing like functions together). by Raymond Hettinger · 19 years ago
  78. ed6c1ef * Bring lookkey() and lookkey_string() closer to dict version. by Raymond Hettinger · 19 years ago
  79. 0014822 Fix a too-aggressive assert (see SF#1257960). Previously, gen_iternext by Phillip J. Eby · 19 years ago
  80. b02c35e * Fix SF #1257731. Make __contains__(), remove(), and discard() only do by Raymond Hettinger · 19 years ago
  81. cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 19 years ago
  82. c991db2 * Add short-circuit code for in-place operations with self (such as by Raymond Hettinger · 19 years ago
  83. bc841a1 * Bring in INIT_NONZERO_SET_SLOTS macro from dictionary code. by Raymond Hettinger · 19 years ago
  84. 99220fa * Removed checked_error flag which no longer provides any benefit. by Raymond Hettinger · 19 years ago
  85. 5ba0cbe * set_new() doesn't need to zero the structure a second time after tp_alloc by Raymond Hettinger · 19 years ago
  86. fe889f3 Factor away a redundant clear() function. by Raymond Hettinger · 19 years ago
  87. a580c47 * Improve a variable name: entry0 --> table. by Raymond Hettinger · 19 years ago
  88. a9d9936 * Move copyright notice to top and indicate derivation from sets.py and by Raymond Hettinger · 19 years ago
  89. 67962ab Model set.pop() after dict.popitem(). by Raymond Hettinger · 19 years ago
  90. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
  91. d794666 * Improve code for the empty frozenset singleton: by Raymond Hettinger · 19 years ago
  92. e295676 Fix build on gcc: PySetIter_Type should be static in definition part also. by Hye-Shik Chang · 19 years ago
  93. 06d8cf8 Improve variable names. by Raymond Hettinger · 19 years ago
  94. 9dcb17c Fix frozenset() ref count and a comment typo. by Raymond Hettinger · 19 years ago
  95. 934d63e Comment on the set_swap_bodies() helper function. by Raymond Hettinger · 19 years ago
  96. 9f1a679 Revised the set() and frozenset() implementaion to use its own internal by Raymond Hettinger · 19 years ago
  97. de7990b SF bug #1238681: freed pointer is used in longobject.c:long_pow(). by Tim Peters · 19 years ago
  98. 0edc7a0 Fix: by Michael W. Hudson · 19 years ago
  99. ecc6e6a SF bug 1185883: PyObject_Realloc can't safely take over a block currently by Tim Peters · 19 years ago
  100. 3095ad0 Apparently some compiler gives a warning on by Michael W. Hudson · 19 years ago