2001-05-09 |
Fred Drake | Minor adjustments to HTML for the module synopsis tables. |
commit | commitdiff | tree | snapshot |
2001-05-09 |
Tim Peters | Sheesh -- repair the dodge around "cast isn't an lvalue... |
commit | commitdiff | tree | snapshot |
2001-05-09 |
Tim Peters | Mark Favas reported that gcc caught me using casts... |
commit | commitdiff | tree | snapshot |
2001-05-09 |
Fred Drake | Job.build_html(): Be more robust in ensuring about... |
commit | commitdiff | tree | snapshot |
2001-05-09 |
Fred Drake | There is no IMAP class in the imaplib module; the class... |
commit | commitdiff | tree | snapshot |
2001-05-09 |
Fred Drake | Note that when inplace=1 existing backup files will... |
commit | commitdiff | tree | snapshot |
2001-05-09 |
Mark Hammond | Always pass a full path name to LoadLibraryEx(). Fixes... |
commit | commitdiff | tree | snapshot |
2001-05-09 |
Tim Peters | Ack! Restore the COUNT_ALLOCS one_strings code. |
commit | commitdiff | tree | snapshot |
2001-05-09 |
Tim Peters | My change to string_item() left an extra reference... |
commit | commitdiff | tree | snapshot |
2001-05-08 |
Tim Peters | Intern 1-character strings as soon as they're created... |
commit | commitdiff | tree | snapshot |
2001-05-08 |
Tim Peters | Blurb about the increased precision of float literals... |
commit | commitdiff | tree | snapshot |
2001-05-08 |
Tim Peters | SF bug #422177: Results from .pyc differs from .py |
commit | commitdiff | tree | snapshot |
2001-05-08 |
Jack Jansen | Removed some confusing sentences that are no longer... |
commit | commitdiff | tree | snapshot |
2001-05-08 |
Fred Drake | Michael Hudson <mwh21@cam.ac.uk>: |
commit | commitdiff | tree | snapshot |
2001-05-08 |
Tim Peters | SF patch #421922: Implement rich comparison for dicts. |
commit | commitdiff | tree | snapshot |
2001-05-08 |
Jeremy Hylton | Fix several bugs and add two features. |
commit | commitdiff | tree | snapshot |
2001-05-08 |
Jeremy Hylton | Several small changes. Mostly reformatting, adding... |
commit | commitdiff | tree | snapshot |
2001-05-08 |
Jeremy Hylton | SF patch 419176 from MvL; fixed bug 418977 |
commit | commitdiff | tree | snapshot |
2001-05-08 |
Jeremy Hylton | Remove unused variable |
commit | commitdiff | tree | snapshot |
2001-05-08 |
Tim Peters | This is a test showing SF bug 422177. It won't trigger... |
commit | commitdiff | tree | snapshot |
2001-05-07 |
Tim Peters | SF bug #422108 - Error in rich comparisons. |
commit | commitdiff | tree | snapshot |
2001-05-07 |
Fred Drake | Michael Hudson <mwh21@cam.ac.uk>: |
commit | commitdiff | tree | snapshot |
2001-05-07 |
Fred Drake | Hmm... better add a version annotation for the Iterator... |
commit | commitdiff | tree | snapshot |
2001-05-07 |
Fred Drake | Added documentation for PyIter_Check() and PyIter_Next(). |
commit | commitdiff | tree | snapshot |
2001-05-06 |
Tim Peters | Generalize zip() to work with iterators. |
commit | commitdiff | tree | snapshot |
2001-05-05 |
Tim Peters | Get rid of silly 5am "del" stmts. |
commit | commitdiff | tree | snapshot |
2001-05-05 |
Tim Peters | Reimplement PySequence_Contains() and instance_contains... |
commit | commitdiff | tree | snapshot |
2001-05-05 |
Andrew M. Kuchling | Skeletal version; I'm checking this in now so I can... |
commit | commitdiff | tree | snapshot |
2001-05-05 |
Tim Peters | Generalize PySequence_Count() (operator.countOf) to... |
commit | commitdiff | tree | snapshot |
2001-05-05 |
Tim Peters | Remove redundant line. |
commit | commitdiff | tree | snapshot |
2001-05-05 |
Tim Peters | Make 'x in y' and 'x not in y' (PySequence_Contains... |
commit | commitdiff | tree | snapshot |
2001-05-05 |
Tim Peters | Make unicode.join() work nice with iterators. This... |
commit | commitdiff | tree | snapshot |
2001-05-05 |
Tim Peters | Mark string.join() as done. Turns out string_join... |
commit | commitdiff | tree | snapshot |
2001-05-05 |
Tim Peters | Fix a tiny and unlikely memory leak. Was there before... |
commit | commitdiff | tree | snapshot |
2001-05-05 |
Tim Peters | Generalize tuple() to work nicely with iterators. |
commit | commitdiff | tree | snapshot |
2001-05-05 |
Tim Peters | Make PyIter_Next() a little smarter (wrt its knowledge... |
commit | commitdiff | tree | snapshot |
2001-05-04 |
Guido van Rossum | Make the license GPL-compatible. |
commit | commitdiff | tree | snapshot |
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 |
next |