2001-05-04 |
Guido van Rossum | Add TODO item about x in y -- this should use iterators... |
commit | commitdiff | tree | snapshot |
2001-05-04 |
Tim Peters | Added reminders to make some remaining functions iterat... |
commit | commitdiff | tree | snapshot |
2001-05-04 |
Tim Peters | Generalize reduce() to work with iterators. |
commit | commitdiff | tree | snapshot |
2001-05-03 |
Tim Peters | Purge redundant cut&paste line. |
commit | commitdiff | tree | snapshot |
2001-05-03 |
Tim Peters | Generalize map() to work with iterators. |
commit | commitdiff | tree | snapshot |
2001-05-03 |
Fred Drake | The weakref support in PyObject_InitVar() as well;... |
commit | commitdiff | tree | snapshot |
2001-05-03 |
Fred Drake | Remove unnecessary intialization for the case of weakly... |
commit | commitdiff | tree | snapshot |
2001-05-03 |
Fred Drake | Remove an obsolete comment and a "return" before fallig... |
commit | commitdiff | tree | snapshot |
2001-05-03 |
Fred Drake | Since Py_TPFLAGS_HAVE_WEAKREFS is set in Py_TPFLAGS_DEF... |
commit | commitdiff | tree | snapshot |
2001-05-03 |
Tim Peters | Remove redundant copy+paste code. |
commit | commitdiff | tree | snapshot |
2001-05-03 |
Tim Peters | Generalize max(seq) and min(seq) to work with iterators. |
commit | commitdiff | tree | snapshot |
2001-05-03 |
Fred Drake | InteractiveInterpreter.showsyntaxerror(): |
commit | commitdiff | tree | snapshot |
2001-05-03 |
Fred Drake | Added support for .__contains__(), .__iter__(), .iterke... |
commit | commitdiff | tree | snapshot |
2001-05-03 |
Fred Drake | Added support for .iteritems(), .iterkeys(), .itervalues(). |
commit | commitdiff | tree | snapshot |
2001-05-03 |
Fred Drake | The general iteration support is part of 2.2, not 2... |
commit | commitdiff | tree | snapshot |
2001-05-03 |
Fred Drake | Add documentation for the StopIteration exception. |
commit | commitdiff | tree | snapshot |
2001-05-02 |
Fred Drake | State that Mailbox objects are iterator objects. |
commit | commitdiff | tree | snapshot |
2001-05-02 |
Fred Drake | Make the Mailbox objects support iteration -- they... |
commit | commitdiff | tree | snapshot |
2001-05-02 |
Fred Drake | Update the filter() and list() descriptions to include... |
commit | commitdiff | tree | snapshot |
2001-05-02 |
Fred Drake | Added section describing the iterator protocol. |
commit | commitdiff | tree | snapshot |
2001-05-02 |
Marc-André... | Added new parser markers 'et' and 'et#' which do not... |
commit | commitdiff | tree | snapshot |
2001-05-02 |
Guido van Rossum | Mchael Hudson pointed out that the code for detecting... |
commit | commitdiff | tree | snapshot |
2001-05-02 |
Marc-André... | Fix for bug #417030: "print '%*s' fails for unicode... |
commit | commitdiff | tree | snapshot |
2001-05-02 |
Tim Peters | Generalize filter(f, seq) to work with iterators. ... |
commit | commitdiff | tree | snapshot |
2001-05-02 |
Tim Peters | Plug a memory leak in list(), when appending to the... |
commit | commitdiff | tree | snapshot |
2001-05-02 |
Tim Peters | Whitespace normalization. |
commit | commitdiff | tree | snapshot |
2001-05-02 |
Fred Drake | Added tests for Weak*Dictionary iterator support. |
commit | commitdiff | tree | snapshot |
2001-05-02 |
Fred Drake | Added iterator support to the Weak*Dictionary classes. |
commit | commitdiff | tree | snapshot |
2001-05-01 |
Guido van Rossum | Add more news about iterators. |
commit | commitdiff | tree | snapshot |
2001-05-01 |
Tim Peters | Generalize list(seq) to work with iterators. This... |
commit | commitdiff | tree | snapshot |
2001-05-01 |
Guido van Rossum | Discard a misleading comment about iter_iternext(). |
commit | commitdiff | tree | snapshot |
2001-05-01 |
Guido van Rossum | Printing objects to a real file still wasn't done right... |
commit | commitdiff | tree | snapshot |
2001-05-01 |
Guido van Rossum | Add a proper implementation for the tp_str slot (return... |
commit | commitdiff | tree | snapshot |
2001-05-01 |
Guido van Rossum | Add experimental iterkeys(), itervalues(), iteritems... |
commit | commitdiff | tree | snapshot |
2001-04-30 |
Guido van Rossum | Well darnit! The innocuous fix I made to PyObject_Prin... |
commit | commitdiff | tree | snapshot |
2001-04-29 |
Tim Peters | SF bug #417093: Case sensitive import: dir and .py... |
commit | commitdiff | tree | snapshot |
2001-04-28 |
Tim Peters | Fix buglet reported on c.l.py: map(fnc, file.xreadline... |
commit | commitdiff | tree | snapshot |
2001-04-28 |
Tim Peters | A different approach to the problem reported in |
commit | commitdiff | tree | snapshot |
2001-04-27 |
Guido van Rossum | (Adding this to the trunk as well.) |
commit | commitdiff | tree | snapshot |
2001-04-27 |
Jack Jansen | Got rid of the whole event filtering mess again, I... |
commit | commitdiff | tree | snapshot |
2001-04-27 |
Jeremy Hylton | Fix 2.1 nested scopes crash reported by Evan Simpson |
commit | commitdiff | tree | snapshot |
2001-04-27 |
Jeremy Hylton | improved error message-- names the type of the unexpect... |
commit | commitdiff | tree | snapshot |
2001-04-26 |
Jack Jansen | Apparently the code to forestall Tk eating events was... |
commit | commitdiff | tree | snapshot |
2001-04-26 |
Eric S. Raymond | Added more help, and recovery from misspelled sort... |
commit | commitdiff | tree | snapshot |
2001-04-25 |
Jack Jansen | Files for 2.1 distribution. |
commit | commitdiff | tree | snapshot |
2001-04-25 |
Jack Jansen | Check RefCon backpointer to python object with IsPointe... |
commit | commitdiff | tree | snapshot |
2001-04-25 |
Jack Jansen | Updated copyright info (which was long due). |
commit | commitdiff | tree | snapshot |
2001-04-25 |
Jack Jansen | - Raise console window on input. Fixes Carbon hang. |
commit | commitdiff | tree | snapshot |
2001-04-25 |
Jack Jansen | - Raise console window on input. Fixes Carbon hang. |
commit | commitdiff | tree | snapshot |
2001-04-25 |
Jack Jansen | Don't crash if InfoScrap doesn't exist (as is the case... |
commit | commitdiff | tree | snapshot |
2001-04-25 |
Fred Drake | Correct two floating-point representations printed... |
commit | commitdiff | tree | snapshot |
2001-04-25 |
Fred Drake | Update test to accomodate the change to the namespace_s... |
commit | commitdiff | tree | snapshot |
2001-04-25 |
Fred Drake | ParserCreate(): Allow an empty string for the namespac... |
commit | commitdiff | tree | snapshot |
2001-04-25 |
Tim Peters | SF bug 418615: regular expression bug in pipes.py. |
commit | commitdiff | tree | snapshot |
2001-04-24 |
Tim Peters | SF bug 418296: WinMain.c should use WIN32_LEAN_AND_MEAN. |
commit | commitdiff | tree | snapshot |
2001-04-23 |
Andrew M. Kuchling | Fix typo in docstring |
commit | commitdiff | tree | snapshot |
2001-04-23 |
Andrew M. Kuchling | Bump version # for final release |
commit | commitdiff | tree | snapshot |
2001-04-23 |
Marc-André... | This patch originated from an idea by Martin v. Loewis... |
commit | commitdiff | tree | snapshot |
2001-04-23 |
Guido van Rossum | Mondo changes to the iterator stuff, without changing... |
commit | commitdiff | tree | snapshot |
2001-04-23 |
Guido van Rossum | At the suggestion of Peter Funk, document 'key in dict... |
commit | commitdiff | tree | snapshot |
2001-04-22 |
Fred Drake | Update publish-to-SourceForge scripts to automatically... |
commit | commitdiff | tree | snapshot |
2001-04-22 |
Fred Drake | Only document <file>.xreadlines() once; added version... |
commit | commitdiff | tree | snapshot |
2001-04-21 |
Neil Schemenauer | Process Setup* files with makesetup in the same order... |
commit | commitdiff | tree | snapshot |
2001-04-21 |
Guido van Rossum | Add test suite for iterators. |
commit | commitdiff | tree | snapshot |
2001-04-21 |
Guido van Rossum | Oops, forgot to merge this from the iter-branch to... |
commit | commitdiff | tree | snapshot |
2001-04-21 |
Tim Peters | Give UserDict new __contains__ and __iter__ methods. |
commit | commitdiff | tree | snapshot |
2001-04-21 |
Fred Drake | encode(): Handle Latin-1 input characters better. |
commit | commitdiff | tree | snapshot |
2001-04-21 |
Fred Drake | Add support for <memberline/> (needs markup improvement!). |
commit | commitdiff | tree | snapshot |
2001-04-21 |
Fred Drake | Fix a number of minor markup errors. |
commit | commitdiff | tree | snapshot |
2001-04-21 |
Fred Drake | The (fairly recent) \textasciicircum is not supported... |
commit | commitdiff | tree | snapshot |
2001-04-21 |
Tim Peters | SF bug #417508: 'hypot' not found with Borland C++Build. |
commit | commitdiff | tree | snapshot |
2001-04-21 |
Tim Peters | SF but #417587: compiler warnings compiling 2.1. |
commit | commitdiff | tree | snapshot |
2001-04-20 |
Tim Peters | Teach Windows about new iterobject.c. |
commit | commitdiff | tree | snapshot |
2001-04-20 |
Guido van Rossum | Adding iterobject.[ch], which were accidentally not... |
commit | commitdiff | tree | snapshot |
2001-04-20 |
Guido van Rossum | Iterators phase 1. This comprises: |
commit | commitdiff | tree | snapshot |
2001-04-20 |
Jeremy Hylton | dispatcher.__repr__() was unprepared to handle the... |
commit | commitdiff | tree | snapshot |
2001-04-20 |
Guido van Rossum | Oops. Removed dictiter_new decl that wasn't supposed... |
commit | commitdiff | tree | snapshot |
2001-04-20 |
Guido van Rossum | Implement, test and document "key in dict" and "key... |
commit | commitdiff | tree | snapshot |
2001-04-19 |
Tim Peters | CVS patch 416248: 2.1c1 unicodeobject: unused vrbl... |
commit | commitdiff | tree | snapshot |
2001-04-19 |
Jeremy Hylton | Revert previous checkin, which caused test_unicodedata... |
commit | commitdiff | tree | snapshot |
2001-04-19 |
Fred Drake | Weak*Dictionary: Added docstrings to the classes. |
commit | commitdiff | tree | snapshot |
2001-04-19 |
Fred Drake | Add versioning notes: many of the signatures changed... |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Tim Peters | Move Windows stuff to 2.2, so CVS builds won't interfer... |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Fred Drake | Cut-&-paste-o noted by Wolfgang Teschner: decompressob... |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Fred Drake | Remove BrowserControl module; this had been left in... |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Fred Drake | Remove legacy support for the BrowserControl module... |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Fred Drake | Suggestion from Keith Briggs: refer to RE objects... |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Martin v. Löwis | Patch #416953: Cache ASCII characters to speed up ASCII... |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Fred Drake | Sync version number with the current CVS version. |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Fred Drake | Add description of the "explanation" optional parameter... |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Fred Drake | Make a number of small clarifications and correct a... |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Fred Drake | Sync version number with the current CVS version. |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Guido van Rossum | Bump the version number in more places |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Guido van Rossum | Change the version to 2.2a0. This may look strange... |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Barry Warsaw | update_yourself(): Removed unused local variable report... |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Barry Warsaw | __init__(): Removed unused local variable reported... |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Barry Warsaw | StripWidget.__init__(), update_yourself(): Removed... |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Barry Warsaw | Helpwin.__init__(): Removed an unused local variable... |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Barry Warsaw | Bump the version to 1.1 |
commit | commitdiff | tree | snapshot |
2001-04-18 |
Barry Warsaw | There have been a few new Python releases <wink> in... |
commit | commitdiff | tree | snapshot |
next |