1. 8bc10b0 Purge redundant cut&paste line. by Tim Peters · 23 years ago
  2. 4e9afdc Generalize map() to work with iterators. by Tim Peters · 23 years ago
  3. 6aebded The weakref support in PyObject_InitVar() as well; this should have come out by Fred Drake · 23 years ago
  4. ba40ec4 Remove unnecessary intialization for the case of weakly-referencable objects; by Fred Drake · 23 years ago
  5. 9b03e59 Remove an obsolete comment and a "return" before fallig off the end of a by Fred Drake · 23 years ago
  6. 4dcb85b Since Py_TPFLAGS_HAVE_WEAKREFS is set in Py_TPFLAGS_DEFAULT, it does not by Fred Drake · 23 years ago
  7. efdae39 Remove redundant copy+paste code. by Tim Peters · 23 years ago
  8. c307453 Generalize max(seq) and min(seq) to work with iterators. NEEDS DOC CHANGES. by Tim Peters · 23 years ago
  9. c7745d4 InteractiveInterpreter.showsyntaxerror(): by Fred Drake · 23 years ago
  10. a7cc69e Added support for .__contains__(), .__iter__(), .iterkeys(). by Fred Drake · 23 years ago
  11. bedebbd Added support for .iteritems(), .iterkeys(), .itervalues(). by Fred Drake · 23 years ago
  12. f42cc45 The general iteration support is part of 2.2, not 2.1 -- fixed the version by Fred Drake · 23 years ago
  13. 9cfe182 Add documentation for the StopIteration exception. by Fred Drake · 23 years ago
  14. 287c4cb State that Mailbox objects are iterator objects. by Fred Drake · 23 years ago
  15. 72987a4 Make the Mailbox objects support iteration -- they already had the by Fred Drake · 23 years ago
  16. eacdec6 Update the filter() and list() descriptions to include information about by Fred Drake · 23 years ago
  17. 93656e7 Added section describing the iterator protocol. by Fred Drake · 23 years ago
  18. 6f15e57 Added new parser markers 'et' and 'et#' which do not recode string by Marc-André Lemburg · 23 years ago
  19. b1f35bf Mchael Hudson pointed out that the code for detecting changes in by Guido van Rossum · 23 years ago
  20. 542fe56 Fix for bug #417030: "print '%*s' fails for unicode string" by Marc-André Lemburg · 23 years ago
  21. 0e57abf Generalize filter(f, seq) to work with iterators. This also generalizes by Tim Peters · 23 years ago
  22. 6ad22c4 Plug a memory leak in list(), when appending to the result list. by Tim Peters · 23 years ago
  23. 8ae2df4 Whitespace normalization. by Tim Peters · 23 years ago
  24. 0e540c3 Added tests for Weak*Dictionary iterator support. by Fred Drake · 23 years ago
  25. 101209d Added iterator support to the Weak*Dictionary classes. by Fred Drake · 23 years ago
  26. 1031582 Add more news about iterators. by Guido van Rossum · 23 years ago
  27. f553f89 Generalize list(seq) to work with iterators. This also generalizes list() by Tim Peters · 23 years ago
  28. 4766892 Discard a misleading comment about iter_iternext(). by Guido van Rossum · 23 years ago
  29. 4f288ab Printing objects to a real file still wasn't done right: if the by Guido van Rossum · 23 years ago
  30. 189f1df Add a proper implementation for the tp_str slot (returning self, of by Guido van Rossum · 23 years ago
  31. 09e563a Add experimental iterkeys(), itervalues(), iteritems() to dict objects. by Guido van Rossum · 23 years ago
  32. 82c690f Well darnit! The innocuous fix I made to PyObject_Print() caused by Guido van Rossum · 23 years ago
  33. cab3f68 SF bug #417093: Case sensitive import: dir and .py file w/ same name by Tim Peters · 23 years ago
  34. 748b8bb Fix buglet reported on c.l.py: map(fnc, file.xreadlines()) blows up. by Tim Peters · 23 years ago
  35. b3d8d1f A different approach to the problem reported in by Tim Peters · 23 years ago
  36. 3a80c4a (Adding this to the trunk as well.) by Guido van Rossum · 23 years ago
  37. e9bcb5c Got rid of the whole event filtering mess again, I can't get it to work. Simply disabling the Tk event handling hook in _tkinter is not as nice, but at least it works. by Jack Jansen · 23 years ago
  38. ddc4fd0 Fix 2.1 nested scopes crash reported by Evan Simpson by Jeremy Hylton · 23 years ago
  39. 960d948 improved error message-- names the type of the unexpected object by Jeremy Hylton · 23 years ago
  40. 69f086c Apparently the code to forestall Tk eating events was too aggressive (Tk user input stopped working). Fixed (I hope:-). by Jack Jansen · 23 years ago
  41. 53b809d Added more help, and recovery from misspelled sort key arguments. by Eric S. Raymond · 23 years ago
  42. c1218bc Files for 2.1 distribution. by Jack Jansen · 23 years ago
  43. c54be42 Check RefCon backpointer to python object with IsPointerValid() before dereferencing it (carbon only). by Jack Jansen · 23 years ago
  44. 26e51e1 Updated copyright info (which was long due). by Jack Jansen · 23 years ago
  45. b4b27be - Raise console window on input. Fixes Carbon hang. by Jack Jansen · 23 years ago
  46. 15f1c08 - Raise console window on input. Fixes Carbon hang. by Jack Jansen · 23 years ago
  47. ee67791 Don't crash if InfoScrap doesn't exist (as is the case in Carbon). by Jack Jansen · 23 years ago
  48. 9188b21 Correct two floating-point representations printed by the interpreter in by Fred Drake · 23 years ago
  49. 8f42e2b Update test to accomodate the change to the namespace_separator parameter by Fred Drake · 23 years ago
  50. cde7913 ParserCreate(): Allow an empty string for the namespace_separator argument; by Fred Drake · 23 years ago
  51. c09cee4 SF bug 418615: regular expression bug in pipes.py. by Tim Peters · 23 years ago
  52. d29abb9 SF bug 418296: WinMain.c should use WIN32_LEAN_AND_MEAN. by Tim Peters · 23 years ago
  53. b3ca303 Fix typo in docstring by Andrew M. Kuchling · 23 years ago
  54. c42402f Bump version # for final release by Andrew M. Kuchling · 23 years ago
  55. 8155e0e This patch originated from an idea by Martin v. Loewis who submitted a by Marc-André Lemburg · 23 years ago
  56. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 23 years ago
  57. 8b3d6ca At the suggestion of Peter Funk, document 'key in dict' and 'key not by Guido van Rossum · 23 years ago
  58. 34b48e8 Update publish-to-SourceForge scripts to automatically determine if the by Fred Drake · 23 years ago
  59. 82f93c6 Only document <file>.xreadlines() once; added version annotation. by Fred Drake · 23 years ago
  60. f8b71c5 Process Setup* files with makesetup in the same order as the makefile. by Neil Schemenauer · 23 years ago
  61. 8b48cf9 Add test suite for iterators. by Guido van Rossum · 23 years ago
  62. 6596725 Oops, forgot to merge this from the iter-branch to the trunk. by Guido van Rossum · 23 years ago
  63. a3f98d6 Give UserDict new __contains__ and __iter__ methods. by Tim Peters · 23 years ago
  64. e99b97e encode(): Handle Latin-1 input characters better. by Fred Drake · 23 years ago
  65. bda0556 Add support for <memberline/> (needs markup improvement!). by Fred Drake · 23 years ago
  66. 4cacec5 Fix a number of minor markup errors. by Fred Drake · 23 years ago
  67. 056a71d The (fairly recent) \textasciicircum is not supported by LaTeX2HTML; add by Fred Drake · 23 years ago
  68. 7f00deb SF bug #417508: 'hypot' not found with Borland C++Build. by Tim Peters · 23 years ago
  69. cf96de0 SF but #417587: compiler warnings compiling 2.1. by Tim Peters · 23 years ago
  70. 9dfe4cd Teach Windows about new iterobject.c. by Tim Peters · 23 years ago
  71. 0531148 Adding iterobject.[ch], which were accidentally not added. Sorry\! by Guido van Rossum · 23 years ago
  72. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  73. 12e73bb dispatcher.__repr__() was unprepared to handle the address for a Unix by Jeremy Hylton · 23 years ago
  74. 55ad67d Oops. Removed dictiter_new decl that wasn't supposed to go in yet. by Guido van Rossum · 23 years ago
  75. 0dbb4fb Implement, test and document "key in dict" and "key not in dict". by Guido van Rossum · 23 years ago
  76. 78fe530 CVS patch 416248: 2.1c1 unicodeobject: unused vrbl cleanup, from Mark Favas. by Tim Peters · 23 years ago
  77. b8a9321 Revert previous checkin, which caused test_unicodedata to fail. by Jeremy Hylton · 23 years ago
  78. bd7f818 Weak*Dictionary: Added docstrings to the classes. by Fred Drake · 23 years ago
  79. 1aec3a1 Add versioning notes: many of the signatures changed to allow the time by Fred Drake · 23 years ago
  80. 52709e3 Move Windows stuff to 2.2, so CVS builds won't interfere with 2.1 installations. by Tim Peters · 23 years ago
  81. bc524c4 Cut-&-paste-o noted by Wolfgang Teschner: decompressobj() returns by Fred Drake · 23 years ago
  82. 223ac0a Remove BrowserControl module; this had been left in for Python 1.5.2 support. by Fred Drake · 23 years ago
  83. 6e06531 Remove legacy support for the BrowserControl module; the webbrowser by Fred Drake · 23 years ago
  84. 895aa9d Suggestion from Keith Briggs: refer to RE objects consistently instead of by Fred Drake · 23 years ago
  85. da3dc5b Patch #416953: Cache ASCII characters to speed up ASCII decoding. by Martin v. Löwis · 23 years ago
  86. f384832 Sync version number with the current CVS version. by Fred Drake · 23 years ago
  87. 3151f44 Add description of the "explanation" optional parameter added to the by Fred Drake · 23 years ago
  88. 4c6f17a Make a number of small clarifications and correct a whole bunch of typos, by Fred Drake · 23 years ago
  89. 635a7cf Sync version number with the current CVS version. by Fred Drake · 23 years ago
  90. 6db412b Bump the version number in more places by Guido van Rossum · 23 years ago
  91. 879a186 Change the version to 2.2a0. This may look strange, but indicates by Guido van Rossum · 23 years ago
  92. 2720d38 update_yourself(): Removed unused local variable reported by PyChecker. by Barry Warsaw · 23 years ago
  93. 31c2dae __init__(): Removed unused local variable reported by PyChecker. by Barry Warsaw · 23 years ago
  94. 741eae0 StripWidget.__init__(), update_yourself(): Removed some unused local by Barry Warsaw · 23 years ago
  95. 6a55226 Helpwin.__init__(): Removed an unused local variable (via import) by Barry Warsaw · 23 years ago
  96. cc8a60c Bump the version to 1.1 by Barry Warsaw · 23 years ago
  97. 6330b52 There have been a few new Python releases <wink> in the 2 years since by Barry Warsaw · 23 years ago
  98. 293f77a Add note about the version in which GetoptError was added -- this can by Fred Drake · 23 years ago
  99. c2b29d0 Added support for optional explanation parameter to the \versionadded macro. by Fred Drake · 23 years ago
  100. fdfb05b \versionadded: Add support for including an explanatory note along with by Fred Drake · 23 years ago