1. 01a74b2 Make CObjects mutable. Fixes #477441. by Martin v. Löwis · 21 years ago
  2. 6828e18 Patch #825679: Clarify semantics of .isfoo on empty strings. Backported to 2.3. by Martin v. Löwis · 21 years ago
  3. 849a972 Patch #809535: Mention behaviour of seek on text files. Backported to 2.3. by Martin v. Löwis · 21 years ago
  4. ae4a299 Fix typo found by Neal Norwitz. by Raymond Hettinger · 21 years ago
  5. 42b1ba3 * list.sort() now supports three keyword arguments: cmp, key, and reverse. by Raymond Hettinger · 21 years ago
  6. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  7. cb2da43 Extended tuple's C API to include a new function, PyTuple_Pack() that is by Raymond Hettinger · 21 years ago
  8. 56bb16f Use the simpler and faster PyArg_UnpackTuple() instead of by Raymond Hettinger · 21 years ago
  9. f34f264 SF bug #820397: __nonzero__() returns 1/0 by Raymond Hettinger · 21 years ago
  10. 98c65be Return a bool rather than an int from proxy_has_key(). by Guido van Rossum · 21 years ago
  11. 22c3dda Fix leak introduced by previous typeobject.c checkin. by Guido van Rossum · 21 years ago
  12. 02c58f8 SF patch #820195 by Wojtek Walczak (gminick at users.sourceforge.net): by Guido van Rossum · 21 years ago
  13. 504de6b Fix for SF bug [ 817156 ] invalid \U escape gives 0=length unistr. by Jeremy Hylton · 21 years ago
  14. ced69f8 On c.l.py, Martin v. Löwis said that Py_UNICODE could be of a signed type, by Tim Peters · 21 years ago
  15. d808279 Double-fix of crash in Unicode freelist handling. by Jeremy Hylton · 21 years ago
  16. a9e14b7 Fix leak in classobject.c. The leak surfaced on the error exit when by Raymond Hettinger · 21 years ago
  17. deb2dc6 Change checks of PyUnicode_Resize() return value for clarity. by Jeremy Hylton · 21 years ago
  18. 7bbcde7 Only release buffer after file has been closed. Fixes #800824. by Martin v. Löwis · 21 years ago
  19. f1827cf SF bug 801631: file.truncate fault on windows. by Tim Peters · 21 years ago
  20. b859c07 SF bug #800796: Difference between hash() and __hash__() by Raymond Hettinger · 21 years ago
  21. 1e3bdf6 Patch #788249: Pass an explicit buffer to setvbuf in PyFile_SetBufSize(). by Martin v. Löwis · 21 years ago
  22. 574aa32 SF patch #798467: Update docstring of has_key for bool changes by Raymond Hettinger · 21 years ago
  23. 0970dba Remove 'e.g.' from error message by Raymond Hettinger · 21 years ago
  24. 9bfe533 SF bug #795506: Wrong handling of string format code for float values. by Raymond Hettinger · 21 years ago
  25. 98cad48 Fix SF #789402, Memory leak on open() by Neal Norwitz · 21 years ago
  26. 150523e Fix refcounting leak in charmaptranslate_lookup() by Walter Dörwald · 21 years ago
  27. 9b30f20 Fix another refcounting leak in PyUnicode_EncodeCharmap(). by Walter Dörwald · 21 years ago
  28. d4ade08 Fix another refcounting leak (in PyUnicode_DecodeUnicodeEscape()). by Walter Dörwald · 21 years ago
  29. b2c7de4 Fix for by Michael W. Hudson · 21 years ago
  30. da0a067 My last fix left n used unitialized in tha a==b case. by Michael W. Hudson · 21 years ago
  31. 465fa3d complex_new(): This could leak when the argument was neither string nor by Tim Peters · 21 years ago
  32. e5402fb Fix refcount leak in PyUnicode_EncodeCharmap(). The bug surfaces by Walter Dörwald · 21 years ago
  33. b4f4938 Fix reference leak noted in test_types: by Michael W. Hudson · 21 years ago
  34. 71665dc Add a couple of decrefs to error paths. by Michael W. Hudson · 21 years ago
  35. bdc6ea1 Fix silly typo in comment. by Michael W. Hudson · 21 years ago
  36. a6a277d /* XXX From here until type is allocated, "return NULL" leaks bases! */ by Michael W. Hudson · 21 years ago
  37. e723e45 Repair refcounting on error return from type_set_bases. by Michael W. Hudson · 21 years ago
  38. 7555294 Remove code that tried to warn about shadowing builtin names after a by Neil Schemenauer · 21 years ago
  39. f75d9fc Remove stray comments. by Jeremy Hylton · 21 years ago
  40. 1c7a0ea Remove unnecessary check in tests for slots allowed. by Jeremy Hylton · 21 years ago
  41. fe89cc1 Remove proxy_print(), since that caused an inconsistency between by Fred Drake · 21 years ago
  42. 6d3e018 Add whitespace. by Jeremy Hylton · 21 years ago
  43. 0ccda1e Support 'mbcs' as a 'built-in' encoding, so the C API can use it without by Mark Hammond · 21 years ago
  44. d693a81 Fix SF 762891: "del p[key]" on proxy object raises SystemError() by Raymond Hettinger · 21 years ago
  45. f466793 SF patch 703666: Several objects don't decref tmp on failure in subtype_new by Raymond Hettinger · 21 years ago
  46. 3e3159c Require that __nonzero__() return a bool or exactly an int. by Jeremy Hylton · 21 years ago
  47. 090a349 Check return type of __nonzero__() method. by Jeremy Hylton · 21 years ago
  48. 03f6c54 Whitespace normalization. by Walter Dörwald · 21 years ago
  49. 9ff3f03 Fix whitespace. by Walter Dörwald · 21 years ago
  50. be97153 SF bug #753451: classmethod abuse --> SystemError by Raymond Hettinger · 21 years ago
  51. 5ecd6c4 Fix typo in comment. by Walter Dörwald · 21 years ago
  52. e8049bef Use _PyEval_SliceIndex to handle list.index() calls with by Walter Dörwald · 21 years ago
  53. e0a1bb6 Whitespace normalization. by Walter Dörwald · 21 years ago
  54. 2743d87 Fix sloppy index() implementation: by Guido van Rossum · 21 years ago
  55. d05abde SF #754014: list.index() should accept optional start, end arguments by Raymond Hettinger · 21 years ago
  56. 59195fd - SF patch 751998 fixes an unwanted side effect of the previous fix by Guido van Rossum · 21 years ago
  57. 10147f7 Fixed a comment. by Brett Cannon · 21 years ago
  58. 4e3363e Warn about creating global variables by __setattr__ that shadow builtin by Neil Schemenauer · 21 years ago
  59. e2fdc61 Fix SF #749831, copy raises SystemError when getstate raises exception by Neal Norwitz · 21 years ago
  60. 1987c66 Fix for SF 742911. We now clear the weakrefs *before* calling __del__ by Guido van Rossum · 21 years ago
  61. e509b2a Add notes on use cases with paired accesses to the same key. by Raymond Hettinger · 21 years ago
  62. e8b0f04 * Beefed-up tests * Allow tuple re-use * Call tp_iternext directly by Raymond Hettinger · 21 years ago
  63. e87568d SF bug 705231: Assertion failed, python aborts. by Tim Peters · 21 years ago
  64. 3cfe754 PyType_Ready(): Complain if the type is a base type, and gc'able, and by Tim Peters · 21 years ago
  65. 6624e68 SF bug #604716: faster [None]*n or []*n by Raymond Hettinger · 21 years ago
  66. be67d87 Fixing the previous patch to have the changes be to the proper docstrings. by Brett Cannon · 21 years ago
  67. 154da9b Fix docstrings for __(get|set|del)slice__ to mention that negative indices are not supported. by Brett Cannon · 21 years ago
  68. 415da6e Only encode Unicode objects when printing them raw. by Martin v. Löwis · 21 years ago
  69. 9a3a9f7 Consider \U-escapes in raw-unicode-escape. Fixes #444514. by Martin v. Löwis · 21 years ago
  70. 19472b2 Removed the out of date and no-longer-referenced xxobject.c example by Jim Fulton · 21 years ago
  71. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 21 years ago
  72. 5467d4c Patch #612627: Add encoding attribute to file objects, and determine by Martin v. Löwis · 21 years ago
  73. 686b14d SF bug #730296: Unexpected Changes in list Iterator by Raymond Hettinger · 21 years ago
  74. c8d2290 SF patch #729395: Dictionary tuning by Raymond Hettinger · 21 years ago
  75. 8657845 SF bug #692959: new.function ignores keyword arguments by Raymond Hettinger · 21 years ago
  76. 3539f6b SF patch #729395: Dictionary tuning by Raymond Hettinger · 21 years ago
  77. 4887a12 Add notes from python-dev about readonly dictionaries. by Raymond Hettinger · 21 years ago
  78. c7bc0b9 SF patch 730594: assert from longobject.c, line 1215. by Tim Peters · 21 years ago
  79. 258dfeb * Note how dummy entry re-use benefits use cases with interspersed deletes by Raymond Hettinger · 21 years ago
  80. 015dd82 Somewhere along the way, the softspace attr of file objects became read- by Tim Peters · 21 years ago
  81. cd12bfc Patch #708604: Check more function results. Will backport to 2.2. by Martin v. Löwis · 21 years ago
  82. 930427b Add a reference to dictnotes.txt. It does no good if you don't know it's by Raymond Hettinger · 21 years ago
  83. 5466296 Research notes and explorations for optimizing Python dictionaries. by Raymond Hettinger · 21 years ago
  84. fc61f9a Silence compiler warnings in VC 7. by Jeremy Hylton · 21 years ago
  85. 2af713c Squashed new compiler wngs about trying to compare pointers to by Tim Peters · 21 years ago
  86. 9928571 SF bug 665835: filter() treatment of str and tuple inconsistent by Raymond Hettinger · 21 years ago
  87. 636688d Improve the message about metatype/metaclass conflicts. by Guido van Rossum · 21 years ago
  88. fbbe347 Add a useful docstring to enumerate. by Jeremy Hylton · 22 years ago
  89. aa86e35 - bool() called without arguments now returns False rather than by Guido van Rossum · 22 years ago
  90. 21d7d4d _Py_PrintReferenceAddresses(): also print the type name. In real use by Tim Peters · 22 years ago
  91. 269b2a6 _Py_PrintReferences(): Changed to print object address at start of each by Tim Peters · 22 years ago
  92. a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 22 years ago
  93. c1f6e8c - The repr() of a weakref object now shows the __name__ attribute of by Guido van Rossum · 22 years ago
  94. 6cc5bb6 Sigh. The crucial change was still missing from the previous checkin. :-( by Guido van Rossum · 22 years ago
  95. 76ba09f - super() no longer ignores data descriptors, except __class__. See by Guido van Rossum · 22 years ago
  96. 19a02ba Fix three (!) object leaks in the code for assignment to __bases__. by Guido van Rossum · 22 years ago
  97. 52b2705 Ouch, it's Carlo Verre, not Verre Carlo. by Guido van Rossum · 22 years ago
  98. 0fc8f00 - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() by Guido van Rossum · 22 years ago
  99. 4dcdb78 Close off the "Verre Carlo hack" as discussed on python-dev. by Guido van Rossum · 22 years ago
  100. 2fd02eb super_getattro(): kill some dead code; explain a mystery. by Guido van Rossum · 22 years ago