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