| Commit message (Expand) | Author | Age | Files | Lines |
* | Generalize zip() to work with iterators. | Tim Peters | 2001-05-06 | 1 | -8/+4 |
|
|
* | Generalize PySequence_Count() (operator.countOf) to work with iterators. | Tim Peters | 2001-05-05 | 1 | -2/+4 |
|
|
* | Remove redundant line. | Tim Peters | 2001-05-05 | 1 | -1/+0 |
|
|
* | Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. | Tim Peters | 2001-05-05 | 1 | -2/+2 |
|
|
* | Make unicode.join() work nice with iterators. This also required a change | Tim Peters | 2001-05-05 | 1 | -1/+1 |
|
|
* | Mark string.join() as done. Turns out string_join() works "for free" now, | Tim Peters | 2001-05-05 | 1 | -1/+2 |
|
|
* | Generalize tuple() to work nicely with iterators. | Tim Peters | 2001-05-05 | 1 | -2/+2 |
|
|
* | 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 | 1 | -0/+1 |
|
|
* | Generalize map() to work with iterators. | Tim Peters | 2001-05-03 | 1 | -0/+1 |
|
|
* | Generalize max(seq) and min(seq) to work with iterators. | Tim Peters | 2001-05-03 | 1 | -0/+2 |
|
|
* | Generalize filter(f, seq) to work with iterators. This also generalizes | Tim Peters | 2001-05-02 | 1 | -8/+9 |
|
|
* | 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 | 1 | -0/+10 |
|
|
* | SF bug 418296: WinMain.c should use WIN32_LEAN_AND_MEAN. | Tim Peters | 2001-04-24 | 1 | -0/+1 |
|
|
* | SF bug #417508: 'hypot' not found with Borland C++Build. | Tim Peters | 2001-04-21 | 1 | -0/+1 |
|
|
* | Noted what's new in 2.1 (final). | Guido van Rossum | 2001-04-16 | 1 | -0/+21 |
|
|
* | Added news for 2.1c2. | Guido van Rossum | 2001-04-16 | 1 | -11/+192 |
|
|
* | SF bug reporters. | Guido van Rossum | 2001-04-15 | 1 | -0/+2 |
|
|
* | Another ACK. | Guido van Rossum | 2001-04-14 | 1 | -0/+1 |
|
|
* | Note additions to pydoc and pstats. | Guido van Rossum | 2001-04-13 | 1 | -0/+5 |
|
|
* | Note that __debug__ assignments are legal again. | Guido van Rossum | 2001-04-12 | 1 | -0/+3 |
|
|
* | (py-pdbtrack-track-stack-file): On Ken's suggestion, add "pdbtrack:" | Barry Warsaw | 2001-04-11 | 1 | -3/+3 |
|
|
* | Noted the improved RISCOS port and the new Unixware 7 port. | Guido van Rossum | 2001-04-11 | 2 | -0/+5 |
|
|
* | Added news about the updated python-mode.el | Barry Warsaw | 2001-04-11 | 1 | -0/+10 |
|
|
* | intermediate | Barry Warsaw | 2001-04-11 | 1 | -51/+148 |
|
|
* | Some new names. | Guido van Rossum | 2001-04-10 | 1 | -0/+3 |
|
|
* | Completely revamped BeOS notes, by Donn Cave (SF patch 411834). | Guido van Rossum | 2001-04-10 | 1 | -109/+23 |
|
|
* | This is for BeOS users who want to build all the modules. It's | Guido van Rossum | 2001-04-10 | 1 | -0/+606 |
|
|
* | Fixing Itamar's name, as per his request. | Moshe Zadka | 2001-04-09 | 1 | -1/+1 |
|
|
* | Get rid of useless string import, as reported by Neal Norwitz's PyChecker.py | Tim Peters | 2001-04-08 | 1 | -0/+1 |
|
|
* | Mention pydoc in the man page | Andrew M. Kuchling | 2001-04-05 | 1 | -0/+5 |
|
|
* | Remove the backed-out version requirement | Andrew M. Kuchling | 2001-03-31 | 1 | -2/+1 |
|
|
* | Add Robin Thomas (author of the slice() comparability hack). | Guido van Rossum | 2001-03-27 | 1 | -0/+1 |
|
|
* | News items for my recent checkins | Jeremy Hylton | 2001-03-23 | 1 | -0/+16 |
|
|
* | A small change to the C API for weakly-referencable types: Such types | Fred Drake | 2001-03-22 | 1 | -0/+6 |
|
|
* | Added news items for the Distutils | Andrew M. Kuchling | 2001-03-22 | 1 | -0/+21 |
|
|
* | Add some news for 2.1b2. I'd still like someone else to add news | Guido van Rossum | 2001-03-22 | 1 | -3/+55 |
|
|
* | Added Gordon McMillan. He should've been in there ages ago. Thanks | Guido van Rossum | 2001-03-22 | 1 | -0/+1 |
|
|
* | Add section on 2.1b2. | Martin v. Löwis | 2001-03-21 | 1 | -0/+11 |
|
|
* | Add some more info about pydoc. (Can you see I'm excited?) | Guido van Rossum | 2001-03-02 | 1 | -1/+6 |
|
|
* | Add big news item about nested scopes, __future__, and compile-time | Guido van Rossum | 2001-03-02 | 1 | -0/+36 |
|
|
* | Itamar S.T. | Guido van Rossum | 2001-03-02 | 1 | -0/+1 |
|
|
* | ROSCOS change. | Guido van Rossum | 2001-03-02 | 1 | -0/+8 |
|
|
* | Dietmar Schwertberger; shuffled a bunch of Sch* names in alphabetical | Guido van Rossum | 2001-03-02 | 1 | -2/+3 |
|
|
* | Added William Tanksley. | Tim Peters | 2001-03-02 | 1 | -0/+1 |
|
|
* | Thank Jason Tishler and Steven Majewski for their help in the Cygwin and | Tim Peters | 2001-03-01 | 1 | -2/+10 |
|
|
* | Add Samuele Pedroni | Guido van Rossum | 2001-03-01 | 1 | -0/+1 |
|
|
* | Added blurbs about difflib, doctest and Windows import (PEP 235). | Tim Peters | 2001-03-01 | 1 | -4/+29 |
|
|