| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Files for 2.1 distribution. | Jack Jansen | 2001-04-25 | 16 | -65/+111 |
|
|
* | Check RefCon backpointer to python object with IsPointerValid() before derefe... | Jack Jansen | 2001-04-25 | 2 | -2/+4 |
|
|
* | Updated copyright info (which was long due). | Jack Jansen | 2001-04-25 | 2 | -2/+2 |
|
|
* | - Raise console window on input. Fixes Carbon hang. | Jack Jansen | 2001-04-25 | 2 | -1/+2 |
|
|
* | - Raise console window on input. Fixes Carbon hang. | Jack Jansen | 2001-04-25 | 3 | -4/+32 |
|
|
* | Don't crash if InfoScrap doesn't exist (as is the case in Carbon). | Jack Jansen | 2001-04-25 | 1 | -2/+5 |
|
|
* | Correct two floating-point representations printed by the interpreter in | Fred Drake | 2001-04-25 | 1 | -2/+2 |
|
|
* | Update test to accomodate the change to the namespace_separator parameter | Fred Drake | 2001-04-25 | 2 | -10/+32 |
|
|
* | ParserCreate(): Allow an empty string for the namespace_separator argument; | Fred Drake | 2001-04-25 | 1 | -68/+82 |
|
|
* | SF bug 418615: regular expression bug in pipes.py. | Tim Peters | 2001-04-25 | 1 | -4/+4 |
|
|
* | SF bug 418296: WinMain.c should use WIN32_LEAN_AND_MEAN. | Tim Peters | 2001-04-24 | 2 | -1/+2 |
|
|
* | Fix typo in docstring | Andrew M. Kuchling | 2001-04-23 | 1 | -1/+1 |
|
|
* | Bump version # for final release | Andrew M. Kuchling | 2001-04-23 | 1 | -1/+1 |
|
|
* | This patch originated from an idea by Martin v. Loewis who submitted a | Marc-André Lemburg | 2001-04-23 | 3 | -54/+142 |
|
|
* | Mondo changes to the iterator stuff, without changing how Python code | Guido van Rossum | 2001-04-23 | 9 | -58/+182 |
|
|
* | At the suggestion of Peter Funk, document 'key in dict' and 'key not | Guido van Rossum | 2001-04-23 | 1 | -6/+6 |
|
|
* | Update publish-to-SourceForge scripts to automatically determine if the | Fred Drake | 2001-04-22 | 2 | -7/+26 |
|
|
* | Only document <file>.xreadlines() once; added version annotation. | Fred Drake | 2001-04-22 | 1 | -7/+4 |
|
|
* | Process Setup* files with makesetup in the same order as the makefile. | Neil Schemenauer | 2001-04-21 | 2 | -3/+3 |
|
|
* | Add test suite for iterators. | Guido van Rossum | 2001-04-21 | 2 | -0/+247 |
|
|
* | Oops, forgot to merge this from the iter-branch to the trunk. | Guido van Rossum | 2001-04-21 | 1 | -9/+37 |
|
|
* | Give UserDict new __contains__ and __iter__ methods. | Tim Peters | 2001-04-21 | 2 | -1/+19 |
|
|
* | encode(): Handle Latin-1 input characters better. | Fred Drake | 2001-04-21 | 1 | -3/+7 |
|
|
* | Add support for <memberline/> (needs markup improvement!). | Fred Drake | 2001-04-21 | 1 | -1/+5 |
|
|
* | Fix a number of minor markup errors. | Fred Drake | 2001-04-21 | 3 | -7/+7 |
|
|
* | The (fairly recent) \textasciicircum is not supported by LaTeX2HTML; add | Fred Drake | 2001-04-21 | 1 | -0/+1 |
|
|
* | SF bug #417508: 'hypot' not found with Borland C++Build. | Tim Peters | 2001-04-21 | 2 | -0/+3 |
|
|
* | SF but #417587: compiler warnings compiling 2.1. | Tim Peters | 2001-04-21 | 4 | -8/+1 |
|
|
* | Teach Windows about new iterobject.c. | Tim Peters | 2001-04-20 | 1 | -0/+15 |
|
|
* | Adding iterobject.[ch], which were accidentally not added. Sorry\! | Guido van Rossum | 2001-04-20 | 2 | -0/+201 |
|
|
* | Iterators phase 1. This comprises: | Guido van Rossum | 2001-04-20 | 16 | -25/+256 |
|
|