1. 4f8f976 Add optional fillchar argument to ljust(), rjust(), and center() string methods. by Raymond Hettinger · 21 years ago
  2. bc0f2ab Expose dict_contains() and PyDict_Contains() with is about 10% faster by Raymond Hettinger · 21 years ago
  3. a38123e Factor out more duplicate code. by Raymond Hettinger · 21 years ago
  4. 5f4e45d Stop GCC warning about int literal that's so long that it becomes an by Guido van Rossum · 21 years ago
  5. f5f41bf * Checkin remaining documentation by Raymond Hettinger · 21 years ago
  6. 49ba4c3 * Simplify hash function and add test to show effectiveness of the hash by Raymond Hettinger · 21 years ago
  7. baf0f8f - When method objects have an attribute that can be satisfied either by Guido van Rossum · 21 years ago
  8. bfd334a Extend temporary hashability to remove() and discard(). by Raymond Hettinger · 21 years ago
  9. 19c2d77 Allow temporary hashability for the __contains__ test. by Raymond Hettinger · 21 years ago
  10. 3fbec70 issubset() and issuperset() to work with general iterables by Raymond Hettinger · 21 years ago
  11. 82d73dd Three minor performance improvements: by Raymond Hettinger · 21 years ago
  12. 403a203 SF bug 839548: Bug in type's GC handling causes segfaults. by Tim Peters · 21 years ago
  13. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  14. 4bae2d5 Getting rid of code dependent on GUSI or the MetroWerks compiler. by Jack Jansen · 21 years ago
  15. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
  16. b61982b Implement straightforward suggestions from gcc warnings (remove unused by Guido van Rossum · 21 years ago
  17. 1b92fd5 Use PySequence_Contains() instead of direct access macro. by Raymond Hettinger · 21 years ago
  18. 50a4bb3 Various fixups (most suggested by Armin Rigo). by Raymond Hettinger · 21 years ago
  19. e2c277a Fix output spacing typo by Raymond Hettinger · 21 years ago
  20. a690a99 * Migrate set() and frozenset() from the sandbox. by Raymond Hettinger · 21 years ago
  21. 0bd743c subtype_dealloc(): Simplified overly contorted retracking logic. With by Tim Peters · 21 years ago
  22. f7f9e99 subtype_dealloc(): A more complete fix for critical bug 840829 + by Tim Peters · 21 years ago
  23. add09b4 SF bug 840829: weakref callbacks and gc corrupt memory. by Tim Peters · 21 years ago
  24. 001f228 Improve the reverse list iterator to free memory as soon as the iterator by Raymond Hettinger · 21 years ago
  25. c24c910 Minor code fixup. Make sure that len reflects the current list size. by Raymond Hettinger · 21 years ago
  26. 1021c44 Optimize reversed(list) using a custom iterator. by Raymond Hettinger · 21 years ago
  27. 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
  28. ceac90a Fix compiler warning about possible use of n without assignment. by Jeremy Hylton · 21 years ago
  29. 54a831b Use PyTuple_Pack() to simplify enumerate(). by Raymond Hettinger · 21 years ago
  30. 0a9b9da Add list.sorted() classmethod. by Raymond Hettinger · 21 years ago
  31. 2b3eb40 Deleting cyclic object comparison. by Armin Rigo · 21 years ago
  32. 98779e0 Fix Greg Ward's error message nit: PyObject_SetItem and PySequenceSetItem by Raymond Hettinger · 21 years ago
  33. 4894c30 Fix a bug in the memory reallocation code of PyUnicode_TranslateCharmap(). by Walter Dörwald · 21 years ago
  34. d22bb65 Avoid confusing name for the 3rd argument to str.replace(). by Fred Drake · 21 years ago
  35. e4b9d8c Removing bogus Py_DECREF() reported by Armin Rigo (SF bug 812353). by Jeremy Hylton · 21 years ago
  36. 174d276 Fix indentation. by Jeremy Hylton · 21 years ago
  37. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  38. 01a74b2 Make CObjects mutable. Fixes #477441. by Martin v. Löwis · 21 years ago
  39. 6828e18 Patch #825679: Clarify semantics of .isfoo on empty strings. Backported to 2.3. by Martin v. Löwis · 21 years ago
  40. 849a972 Patch #809535: Mention behaviour of seek on text files. Backported to 2.3. by Martin v. Löwis · 21 years ago
  41. ae4a299 Fix typo found by Neal Norwitz. by Raymond Hettinger · 21 years ago
  42. 42b1ba3 * list.sort() now supports three keyword arguments: cmp, key, and reverse. by Raymond Hettinger · 21 years ago
  43. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  44. cb2da43 Extended tuple's C API to include a new function, PyTuple_Pack() that is by Raymond Hettinger · 21 years ago
  45. 56bb16f Use the simpler and faster PyArg_UnpackTuple() instead of by Raymond Hettinger · 21 years ago
  46. f34f264 SF bug #820397: __nonzero__() returns 1/0 by Raymond Hettinger · 21 years ago
  47. 98c65be Return a bool rather than an int from proxy_has_key(). by Guido van Rossum · 21 years ago
  48. 22c3dda Fix leak introduced by previous typeobject.c checkin. by Guido van Rossum · 21 years ago
  49. 02c58f8 SF patch #820195 by Wojtek Walczak (gminick at users.sourceforge.net): by Guido van Rossum · 21 years ago
  50. 504de6b Fix for SF bug [ 817156 ] invalid \U escape gives 0=length unistr. by Jeremy Hylton · 21 years ago
  51. 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
  52. d808279 Double-fix of crash in Unicode freelist handling. by Jeremy Hylton · 21 years ago
  53. a9e14b7 Fix leak in classobject.c. The leak surfaced on the error exit when by Raymond Hettinger · 21 years ago
  54. deb2dc6 Change checks of PyUnicode_Resize() return value for clarity. by Jeremy Hylton · 21 years ago
  55. 7bbcde7 Only release buffer after file has been closed. Fixes #800824. by Martin v. Löwis · 21 years ago
  56. f1827cf SF bug 801631: file.truncate fault on windows. by Tim Peters · 21 years ago
  57. b859c07 SF bug #800796: Difference between hash() and __hash__() by Raymond Hettinger · 21 years ago
  58. 1e3bdf6 Patch #788249: Pass an explicit buffer to setvbuf in PyFile_SetBufSize(). by Martin v. Löwis · 21 years ago
  59. 574aa32 SF patch #798467: Update docstring of has_key for bool changes by Raymond Hettinger · 21 years ago
  60. 0970dba Remove 'e.g.' from error message by Raymond Hettinger · 21 years ago
  61. 9bfe533 SF bug #795506: Wrong handling of string format code for float values. by Raymond Hettinger · 21 years ago
  62. 98cad48 Fix SF #789402, Memory leak on open() by Neal Norwitz · 21 years ago
  63. 150523e Fix refcounting leak in charmaptranslate_lookup() by Walter Dörwald · 21 years ago
  64. 9b30f20 Fix another refcounting leak in PyUnicode_EncodeCharmap(). by Walter Dörwald · 21 years ago
  65. d4ade08 Fix another refcounting leak (in PyUnicode_DecodeUnicodeEscape()). by Walter Dörwald · 21 years ago
  66. b2c7de4 Fix for by Michael W. Hudson · 21 years ago
  67. da0a067 My last fix left n used unitialized in tha a==b case. by Michael W. Hudson · 21 years ago
  68. 465fa3d complex_new(): This could leak when the argument was neither string nor by Tim Peters · 21 years ago
  69. e5402fb Fix refcount leak in PyUnicode_EncodeCharmap(). The bug surfaces by Walter Dörwald · 21 years ago
  70. b4f4938 Fix reference leak noted in test_types: by Michael W. Hudson · 21 years ago
  71. 71665dc Add a couple of decrefs to error paths. by Michael W. Hudson · 21 years ago
  72. bdc6ea1 Fix silly typo in comment. by Michael W. Hudson · 21 years ago
  73. a6a277d /* XXX From here until type is allocated, "return NULL" leaks bases! */ by Michael W. Hudson · 21 years ago
  74. e723e45 Repair refcounting on error return from type_set_bases. by Michael W. Hudson · 21 years ago
  75. 7555294 Remove code that tried to warn about shadowing builtin names after a by Neil Schemenauer · 21 years ago
  76. f75d9fc Remove stray comments. by Jeremy Hylton · 21 years ago
  77. 1c7a0ea Remove unnecessary check in tests for slots allowed. by Jeremy Hylton · 21 years ago
  78. fe89cc1 Remove proxy_print(), since that caused an inconsistency between by Fred Drake · 21 years ago
  79. 6d3e018 Add whitespace. by Jeremy Hylton · 21 years ago
  80. 0ccda1e Support 'mbcs' as a 'built-in' encoding, so the C API can use it without by Mark Hammond · 21 years ago
  81. d693a81 Fix SF 762891: "del p[key]" on proxy object raises SystemError() by Raymond Hettinger · 21 years ago
  82. f466793 SF patch 703666: Several objects don't decref tmp on failure in subtype_new by Raymond Hettinger · 21 years ago
  83. 3e3159c Require that __nonzero__() return a bool or exactly an int. by Jeremy Hylton · 21 years ago
  84. 090a349 Check return type of __nonzero__() method. by Jeremy Hylton · 21 years ago
  85. 03f6c54 Whitespace normalization. by Walter Dörwald · 21 years ago
  86. 9ff3f03 Fix whitespace. by Walter Dörwald · 21 years ago
  87. be97153 SF bug #753451: classmethod abuse --> SystemError by Raymond Hettinger · 21 years ago
  88. 5ecd6c4 Fix typo in comment. by Walter Dörwald · 21 years ago
  89. e8049bef Use _PyEval_SliceIndex to handle list.index() calls with by Walter Dörwald · 21 years ago
  90. e0a1bb6 Whitespace normalization. by Walter Dörwald · 21 years ago
  91. 2743d87 Fix sloppy index() implementation: by Guido van Rossum · 21 years ago
  92. d05abde SF #754014: list.index() should accept optional start, end arguments by Raymond Hettinger · 21 years ago
  93. 59195fd - SF patch 751998 fixes an unwanted side effect of the previous fix by Guido van Rossum · 21 years ago
  94. 10147f7 Fixed a comment. by Brett Cannon · 21 years ago
  95. 4e3363e Warn about creating global variables by __setattr__ that shadow builtin by Neil Schemenauer · 21 years ago
  96. e2fdc61 Fix SF #749831, copy raises SystemError when getstate raises exception by Neal Norwitz · 21 years ago
  97. 1987c66 Fix for SF 742911. We now clear the weakrefs *before* calling __del__ by Guido van Rossum · 21 years ago
  98. e509b2a Add notes on use cases with paired accesses to the same key. by Raymond Hettinger · 21 years ago
  99. e8b0f04 * Beefed-up tests * Allow tuple re-use * Call tp_iternext directly by Raymond Hettinger · 21 years ago
  100. e87568d SF bug 705231: Assertion failed, python aborts. by Tim Peters · 21 years ago