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