| Commit message (Expand) | Author | Age | Files | Lines |
* | Make unicode.join() work nice with iterators. This also required a change | Tim Peters | 2001-05-05 | 4 | -13/+65 |
|
|
* | Mark string.join() as done. Turns out string_join() works "for free" now, | Tim Peters | 2001-05-05 | 1 | -1/+2 |
|
|
* | Fix a tiny and unlikely memory leak. Was there before too, and actually | Tim Peters | 2001-05-05 | 1 | -1/+3 |
|
|
* | Generalize tuple() to work nicely with iterators. | Tim Peters | 2001-05-05 | 6 | -49/+89 |
|
|
* | Make PyIter_Next() a little smarter (wrt its knowledge of iterator | Tim Peters | 2001-05-05 | 4 | -66/+35 |
|
|
* | Make the license GPL-compatible. | Guido van Rossum | 2001-05-04 | 1 | -16/+5 |
|
|
* | Add TODO item about x in y -- this should use iterators too, IMO. | Guido van Rossum | 2001-05-04 | 1 | -0/+1 |
|
|
* | Added reminders to make some remaining functions iterator-friendly. Feel | Tim Peters | 2001-05-04 | 1 | -1/+3 |
|
|
* | Generalize reduce() to work with iterators. | Tim Peters | 2001-05-04 | 3 | -12/+33 |
|
|
* | Purge redundant cut&paste line. | Tim Peters | 2001-05-03 | 1 | -2/+1 |
|
|
* | Generalize map() to work with iterators. | Tim Peters | 2001-05-03 | 3 | -66/+104 |
|
|
* | The weakref support in PyObject_InitVar() as well; this should have come out | Fred Drake | 2001-05-03 | 1 | -4/+0 |
|
|
* | Remove unnecessary intialization for the case of weakly-referencable objects; | Fred Drake | 2001-05-03 | 1 | -4/+0 |
|
|
* | Remove an obsolete comment and a "return" before fallig off the end of a | Fred Drake | 2001-05-03 | 1 | -2/+0 |
|
|
* | Since Py_TPFLAGS_HAVE_WEAKREFS is set in Py_TPFLAGS_DEFAULT, it does not | Fred Drake | 2001-05-03 | 2 | -21/+21 |
|
|
* | Remove redundant copy+paste code. | Tim Peters | 2001-05-03 | 1 | -3/+0 |
|
|
* | Generalize max(seq) and min(seq) to work with iterators. | Tim Peters | 2001-05-03 | 3 | -15/+61 |
|
|
* | InteractiveInterpreter.showsyntaxerror(): | Fred Drake | 2001-05-03 | 1 | -0/+1 |
|
|
* | Added support for .__contains__(), .__iter__(), .iterkeys(). | Fred Drake | 2001-05-03 | 1 | -1/+8 |
|
|
* | Added support for .iteritems(), .iterkeys(), .itervalues(). | Fred Drake | 2001-05-03 | 1 | -0/+3 |
|
|
* | The general iteration support is part of 2.2, not 2.1 -- fixed the version | Fred Drake | 2001-05-03 | 2 | -2/+3 |
|
|
* | Add documentation for the StopIteration exception. | Fred Drake | 2001-05-03 | 1 | -0/+8 |
|
|
* | State that Mailbox objects are iterator objects. | Fred Drake | 2001-05-02 | 1 | -2/+2 |
|
|
* | Make the Mailbox objects support iteration -- they already had the | Fred Drake | 2001-05-02 | 1 | -0/+9 |
|
|
* | Update the filter() and list() descriptions to include information about | Fred Drake | 2001-05-02 | 1 | -12/+14 |
|
|
* | Added section describing the iterator protocol. | Fred Drake | 2001-05-02 | 1 | -0/+51 |
|
|
* | Added new parser markers 'et' and 'et#' which do not recode string | Marc-André Lemburg | 2001-05-02 | 2 | -4/+32 |
|
|
* | Mchael Hudson pointed out that the code for detecting changes in | Guido van Rossum | 2001-05-02 | 1 | -4/+4 |
|
|
* | Fix for bug #417030: "print '%*s' fails for unicode string" | Marc-André Lemburg | 2001-05-02 | 2 | -2/+9 |
|
|
* | Generalize filter(f, seq) to work with iterators. This also generalizes | Tim Peters | 2001-05-02 | 3 | -48/+107 |
|
|
* | Plug a memory leak in list(), when appending to the result list. | Tim Peters | 2001-05-02 | 1 | -5/+9 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-05-02 | 2 | -3/+3 |
|
|
* | Added tests for Weak*Dictionary iterator support. | Fred Drake | 2001-05-02 | 1 | -10/+54 |
|
|
* | Added iterator support to the Weak*Dictionary classes. | Fred Drake | 2001-05-02 | 1 | -0/+73 |
|
|
* | Add more news about iterators. | Guido van Rossum | 2001-05-01 | 1 | -0/+12 |
|
|
* | Generalize list(seq) to work with iterators. This also generalizes list() | Tim Peters | 2001-05-01 | 3 | -31/+99 |
|
|
* | Discard a misleading comment about iter_iternext(). | Guido van Rossum | 2001-05-01 | 1 | -1/+0 |
|
|
* | Printing objects to a real file still wasn't done right: if the | Guido van Rossum | 2001-05-01 | 1 | -32/+14 |
|
|
* | Add a proper implementation for the tp_str slot (returning self, of | Guido van Rossum | 2001-05-01 | 1 | -1/+8 |
|
|
* | Add experimental iterkeys(), itervalues(), iteritems() to dict | Guido van Rossum | 2001-05-01 | 1 | -11/+85 |
|
|
* | Well darnit! The innocuous fix I made to PyObject_Print() caused | Guido van Rossum | 2001-04-30 | 1 | -1/+20 |
|
|
* | SF bug #417093: Case sensitive import: dir and .py file w/ same name | Tim Peters | 2001-04-29 | 1 | -8/+5 |
|
|
* | Fix buglet reported on c.l.py: map(fnc, file.xreadlines()) blows up. | Tim Peters | 2001-04-28 | 1 | -9/+19 |
|
|
* | A different approach to the problem reported in | Tim Peters | 2001-04-28 | 2 | -37/+54 |
|
|
* | (Adding this to the trunk as well.) | Guido van Rossum | 2001-04-27 | 1 | -1/+4 |
|
|
* | Got rid of the whole event filtering mess again, I can't get it to work. Simp... | Jack Jansen | 2001-04-27 | 1 | -23/+1 |
|
|
* | Fix 2.1 nested scopes crash reported by Evan Simpson | Jeremy Hylton | 2001-04-27 | 3 | -6/+32 |
|
|
* | improved error message-- names the type of the unexpected object | Jeremy Hylton | 2001-04-27 | 1 | -2/+3 |
|
|
* | Apparently the code to forestall Tk eating events was too aggressive (Tk user... | Jack Jansen | 2001-04-26 | 1 | -5/+5 |
|
|
* | Added more help, and recovery from misspelled sort key arguments. | Eric S. Raymond | 2001-04-26 | 1 | -2/+19 |
|
|