1. 91a364d Bugfix candidate. by Tim Peters · 23 years ago
  2. 1928314 Speed dictresize by collapsing its two passes into one; the reason given by Tim Peters · 23 years ago
  3. d7ed3bf Speed tuple comparisons in two ways: by Tim Peters · 23 years ago
  4. 2d92041 This patch changes the way the string .encode() method works slightly by Marc-André Lemburg · 23 years ago
  5. 342c65e Aggressive reordering of dict comparisons. In case of collision, it stands by Tim Peters · 23 years ago
  6. 2f228e7 Get rid of the superstitious "~" in dict hashing's "i = (~hash) & mask". by Tim Peters · 23 years ago
  7. 16cabc0 Repair "module has no attribute xxx" error msg; bug introduced when by Tim Peters · 23 years ago
  8. d85e102 Variant of patch #423262: Change module attribute get & set by Tim Peters · 23 years ago
  9. 1b0feb4 Variant of SF patch 423181 by Jeremy Hylton · 23 years ago
  10. 5acbfcc Cosmetic: code under "else" clause was missing indent. by Tim Peters · 23 years ago
  11. 4fa58bf Restore dicts' tp_compare slot, and change dict_richcompare to say it by Tim Peters · 23 years ago
  12. 3918fb2 Repair typo in comment. by Tim Peters · 23 years ago
  13. 95bf939 SF bug #422121 Insecurities in dict comparison. by Tim Peters · 23 years ago
  14. 9c012af Heh. I need a break. After this: stropmodule & stringobject were more by Tim Peters · 23 years ago
  15. 4cd44ef Fudge. stropmodule and stringobject both had copies of the buggy by Tim Peters · 23 years ago
  16. 1a97d5f SF patch #416247 2.1c1 stringobject: unused vrbl cleanup. Thanks to Mark Favas. by Tim Peters · 23 years ago
  17. 4862ab7 Sheesh -- repair the dodge around "cast isn't an lvalue" complaints to by Tim Peters · 23 years ago
  18. 9e897f4 Mark Favas reported that gcc caught me using casts as lvalues. Dodge it. by Tim Peters · 23 years ago
  19. b4bbcd7 Ack! Restore the COUNT_ALLOCS one_strings code. by Tim Peters · 23 years ago
  20. cf5ad5d My change to string_item() left an extra reference to each 1-character by Tim Peters · 23 years ago
  21. 5b4d477 Intern 1-character strings as soon as they're created. As-is, they aren't by Tim Peters · 23 years ago
  22. 72f98e9 SF bug #422177: Results from .pyc differs from .py by Tim Peters · 23 years ago
  23. e63415e SF patch #421922: Implement rich comparison for dicts. by Tim Peters · 23 years ago
  24. 4c88901 SF patch 419176 from MvL; fixed bug 418977 by Jeremy Hylton · 23 years ago
  25. d37292b Remove unused variable by Jeremy Hylton · 23 years ago
  26. 6d60b2e SF bug #422108 - Error in rich comparisons. by Tim Peters · 23 years ago
  27. cb8d368 Reimplement PySequence_Contains() and instance_contains(), so they work by Tim Peters · 23 years ago
  28. 75f8e35 Generalize PySequence_Count() (operator.countOf) to work with iterators. by Tim Peters · 23 years ago
  29. de9725f Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. by Tim Peters · 23 years ago
  30. 2cfe368 Make unicode.join() work nice with iterators. This also required a change by Tim Peters · 23 years ago
  31. 12d0a6c Fix a tiny and unlikely memory leak. Was there before too, and actually by Tim Peters · 23 years ago
  32. 6912d4d Generalize tuple() to work nicely with iterators. by Tim Peters · 23 years ago
  33. f4848da Make PyIter_Next() a little smarter (wrt its knowledge of iterator by Tim Peters · 23 years ago
  34. 6aebded The weakref support in PyObject_InitVar() as well; this should have come out by Fred Drake · 23 years ago
  35. ba40ec4 Remove unnecessary intialization for the case of weakly-referencable objects; by Fred Drake · 23 years ago
  36. 4dcb85b Since Py_TPFLAGS_HAVE_WEAKREFS is set in Py_TPFLAGS_DEFAULT, it does not by Fred Drake · 23 years ago
  37. b1f35bf Mchael Hudson pointed out that the code for detecting changes in by Guido van Rossum · 23 years ago
  38. 542fe56 Fix for bug #417030: "print '%*s' fails for unicode string" by Marc-André Lemburg · 23 years ago
  39. 6ad22c4 Plug a memory leak in list(), when appending to the result list. by Tim Peters · 23 years ago
  40. f553f89 Generalize list(seq) to work with iterators. This also generalizes list() by Tim Peters · 23 years ago
  41. 4766892 Discard a misleading comment about iter_iternext(). by Guido van Rossum · 23 years ago
  42. 4f288ab Printing objects to a real file still wasn't done right: if the by Guido van Rossum · 23 years ago
  43. 189f1df Add a proper implementation for the tp_str slot (returning self, of by Guido van Rossum · 23 years ago
  44. 09e563a Add experimental iterkeys(), itervalues(), iteritems() to dict objects. by Guido van Rossum · 23 years ago
  45. 82c690f Well darnit! The innocuous fix I made to PyObject_Print() caused by Guido van Rossum · 23 years ago
  46. b3d8d1f A different approach to the problem reported in by Tim Peters · 23 years ago
  47. 3a80c4a (Adding this to the trunk as well.) by Guido van Rossum · 23 years ago
  48. 8155e0e This patch originated from an idea by Martin v. Loewis who submitted a by Marc-André Lemburg · 23 years ago
  49. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 23 years ago
  50. 6596725 Oops, forgot to merge this from the iter-branch to the trunk. by Guido van Rossum · 23 years ago
  51. cf96de0 SF but #417587: compiler warnings compiling 2.1. by Tim Peters · 23 years ago
  52. 0531148 Adding iterobject.[ch], which were accidentally not added. Sorry\! by Guido van Rossum · 23 years ago
  53. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  54. 55ad67d Oops. Removed dictiter_new decl that wasn't supposed to go in yet. by Guido van Rossum · 23 years ago
  55. 0dbb4fb Implement, test and document "key in dict" and "key not in dict". by Guido van Rossum · 23 years ago
  56. 78fe530 CVS patch 416248: 2.1c1 unicodeobject: unused vrbl cleanup, from Mark Favas. by Tim Peters · 23 years ago
  57. b8a9321 Revert previous checkin, which caused test_unicodedata to fail. by Jeremy Hylton · 23 years ago
  58. da3dc5b Patch #416953: Cache ASCII characters to speed up ASCII decoding. by Martin v. Löwis · 23 years ago
  59. e04eaec Tim pointed out a remaining vulnerability in popitem(): the by Guido van Rossum · 23 years ago
  60. a4dd011 Tentative fix for a problem that Tim discovered at the last moment, by Guido van Rossum · 23 years ago
  61. 6b356e7 Make one more private symbol static. by Guido van Rossum · 23 years ago
  62. f68d8e5 Make some private symbols static. by Guido van Rossum · 23 years ago
  63. fff5325 Bug 415514 reported that e.g. by Tim Peters · 23 years ago
  64. 711088d Fix for SF bug #415514: "%#x" % 0 caused assertion failure/abort. by Tim Peters · 23 years ago
  65. ae60534 Fixed ref count bug. Patch #411191. Found by Walter Dörwald. by Marc-André Lemburg · 23 years ago
  66. db81e8d Add support for weak references to the function and method types. by Fred Drake · 23 years ago
  67. 4e262a9 A small change to the C API for weakly-referencable types: Such types by Fred Drake · 23 years ago
  68. 6783070 Make PyDict_Next safe to use for loops that merely modify the values by Tim Peters · 23 years ago
  69. 823649d Move the code implementing isinstance() and issubclass() to new C by Guido van Rossum · 23 years ago
  70. 220ae7c Fix PyFrame_FastToLocals() and counterpart to deal with cells and by Jeremy Hylton · 23 years ago
  71. a1351fb SF patch #408326 by Robin Thomas: slice objects comparable, not hashable by Guido van Rossum · 23 years ago
  72. 0f33604 SF bug [ #409448 ] Complex division is braindead by Tim Peters · 23 years ago
  73. 30c9f39 Variety of small INC/DECREF patches that fix reported memory leaks by Jeremy Hylton · 23 years ago
  74. b233652 Identifiers matching _[A-Z_]\w* are reserved for C implementations. by Tim Peters · 23 years ago
  75. 7069512 When 1.6 boosted the # of digits produced by repr(float), repr(complex) by Tim Peters · 23 years ago
  76. 01c6526 Avoid giving prototypes on Solaris. by Martin v. Löwis · 23 years ago
  77. 2b6727b Use Py_CHARMASK for ctype macros. Fixes bug #232787. by Martin v. Löwis · 23 years ago
  78. 4f53da0 Two improvements to large file support: by Guido van Rossum · 23 years ago
  79. a52e8fe Visit the closure during traversal and XDECREF it on during deallocation. by Jeremy Hylton · 23 years ago
  80. 3f571d6 Fix SF buf 404774 submitted by Gregory H. Ball by Jeremy Hylton · 23 years ago
  81. a35c688 Add Vladimir Marangozov's object allocator. It is disabled by default. This by Neil Schemenauer · 23 years ago
  82. b60654b The return value from PyObject_ClearWeakRefs() is no longer meaningful, by Fred Drake · 23 years ago
  83. 4f9b13b instancemethod_setattro(): Raise TypeError if an attempt is made to by Barry Warsaw · 23 years ago
  84. a903ad98 _Py_ReleaseInternedStrings(): Private API function to decref and by Barry Warsaw · 23 years ago
  85. eefb107 _PyObject_Dump(): If argument is NULL, print "NULL" instead of crashing. by Barry Warsaw · 23 years ago
  86. 2da0ea8 In try_3way_to_rich_compare(), swap the call to default_3way_compare() by Guido van Rossum · 23 years ago
  87. ccc7473 reorganized PyUnicode_DecodeUnicodeEscape a bit (in order to make it by Fredrik Lundh · 23 years ago
  88. b86c549 Fix core dump whenever PyList_Reverse() was called. by Guido van Rossum · 23 years ago
  89. 693291b Superseded by $(srcdir)/Makefile.pre.in. by Neil Schemenauer · 23 years ago
  90. 2492a20 SF patch 103543 from tg@freebsd.org: by Jeremy Hylton · 23 years ago
  91. 41deb1e PEP 205, Weak References -- initial checkin. by Fred Drake · 23 years ago
  92. 3202c6f Rename dubiously named local variable 'cmpfunc' -- this is also a by Guido van Rossum · 24 years ago
  93. 2b724da Remove f_closure slot of frameobject and use f_localsplus instead. by Jeremy Hylton · 24 years ago
  94. 09ac89a fix indentation glitch by Jeremy Hylton · 24 years ago
  95. fde66e1 Fixed .capitalize() method of Unicode objects to work like the by Marc-André Lemburg · 24 years ago
  96. 497671e The one thing I love more then writing code is deleting code. by Moshe Zadka · 24 years ago
  97. 5cc2c8c Re-factored PyInstance_New() into PyInstance_New() and PyInstance_NewRaw(). by Fred Drake · 24 years ago
  98. 64949cb PEP 227 implementation by Jeremy Hylton · 24 years ago
  99. fbd849f PEP 227 implementation by Jeremy Hylton · 24 years ago
  100. d1f06b9 Check the Py_TPFLAGS_HAVE_RICHCOMPARE flag before using the by Guido van Rossum · 24 years ago