| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Mark Favas reported that gcc caught me using casts as lvalues. Dodge it. | Tim Peters | 2001-05-09 | 1 | -6/+10 |
|
|
* | Job.build_html(): Be more robust in ensuring about.html exists; copying | Fred Drake | 2001-05-09 | 1 | -17/+16 |
|
|
* | There is no IMAP class in the imaplib module; the class is IMAP4. | Fred Drake | 2001-05-09 | 1 | -9/+10 |
|
|
* | Note that when inplace=1 existing backup files will be removed silently. | Fred Drake | 2001-05-09 | 1 | -2/+5 |
|
|
* | Always pass a full path name to LoadLibraryEx(). Fixes some Windows 9x probl... | Mark Hammond | 2001-05-09 | 1 | -17/+14 |
|
|
* | Ack! Restore the COUNT_ALLOCS one_strings code. | Tim Peters | 2001-05-09 | 1 | -1/+5 |
|
|
* | My change to string_item() left an extra reference to each 1-character | Tim Peters | 2001-05-09 | 1 | -4/+3 |
|
|
* | Intern 1-character strings as soon as they're created. As-is, they aren't | Tim Peters | 2001-05-08 | 1 | -15/+12 |
|
|
* | Blurb about the increased precision of float literals in .pyc/.pyo files. | Tim Peters | 2001-05-08 | 1 | -0/+20 |
|
|
* | SF bug #422177: Results from .pyc differs from .py | Tim Peters | 2001-05-08 | 4 | -8/+34 |
|
|
* | Removed some confusing sentences that are no longer relevant now that | Jack Jansen | 2001-05-08 | 1 | -9/+0 |
|
|
* | Michael Hudson <mwh21@cam.ac.uk>: | Fred Drake | 2001-05-08 | 1 | -2/+3 |
|
|
* | SF patch #421922: Implement rich comparison for dicts. | Tim Peters | 2001-05-08 | 3 | -4/+104 |
|
|
* | Fix several bugs and add two features. | Jeremy Hylton | 2001-05-08 | 1 | -34/+88 |
|
|
* | Several small changes. Mostly reformatting, adding parens. | Jeremy Hylton | 2001-05-08 | 1 | -10/+11 |
|
|
* | SF patch 419176 from MvL; fixed bug 418977 | Jeremy Hylton | 2001-05-08 | 3 | -6/+24 |
|
|
* | Remove unused variable | Jeremy Hylton | 2001-05-08 | 1 | -1/+0 |
|
|
* | This is a test showing SF bug 422177. It won't trigger until I check in | Tim Peters | 2001-05-08 | 1 | -0/+30 |
|
|
* | SF bug #422108 - Error in rich comparisons. | Tim Peters | 2001-05-07 | 1 | -1/+7 |
|
|
* | Michael Hudson <mwh21@cam.ac.uk>: | Fred Drake | 2001-05-07 | 1 | -53/+84 |
|
|
* | Hmm... better add a version annotation for the Iterator Protocol section. | Fred Drake | 2001-05-07 | 1 | -0/+2 |
|
|
* | Added documentation for PyIter_Check() and PyIter_Next(). | Fred Drake | 2001-05-07 | 1 | -1/+39 |
|
|
* | Generalize zip() to work with iterators. | Tim Peters | 2001-05-06 | 4 | -28/+96 |
|
|
* | Get rid of silly 5am "del" stmts. | Tim Peters | 2001-05-05 | 1 | -2/+0 |
|
|
* | Reimplement PySequence_Contains() and instance_contains(), so they work | Tim Peters | 2001-05-05 | 4 | -77/+67 |
|
|
* | Skeletal version; I'm checking this in now so I can keep a list of changes, | Andrew M. Kuchling | 2001-05-05 | 1 | -0/+106 |
|
|
* | Generalize PySequence_Count() (operator.countOf) to work with iterators. | Tim Peters | 2001-05-05 | 3 | -15/+70 |
|
|
* | 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 | 5 | -33/+94 |
|
|
* | 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 |
|
|