]> granicus.if.org Git - python/shortlog
python
2001-05-04 Guido van RossumAdd TODO item about x in y -- this should use iterators...
2001-05-04 Tim PetersAdded reminders to make some remaining functions iterat...
2001-05-04 Tim PetersGeneralize reduce() to work with iterators.
2001-05-03 Tim PetersPurge redundant cut&paste line.
2001-05-03 Tim PetersGeneralize map() to work with iterators.
2001-05-03 Fred DrakeThe weakref support in PyObject_InitVar() as well;...
2001-05-03 Fred DrakeRemove unnecessary intialization for the case of weakly...
2001-05-03 Fred DrakeRemove an obsolete comment and a "return" before fallig...
2001-05-03 Fred DrakeSince Py_TPFLAGS_HAVE_WEAKREFS is set in Py_TPFLAGS_DEF...
2001-05-03 Tim PetersRemove redundant copy+paste code.
2001-05-03 Tim PetersGeneralize max(seq) and min(seq) to work with iterators.
2001-05-03 Fred DrakeInteractiveInterpreter.showsyntaxerror():
2001-05-03 Fred DrakeAdded support for .__contains__(), .__iter__(), .iterke...
2001-05-03 Fred DrakeAdded support for .iteritems(), .iterkeys(), .itervalues().
2001-05-03 Fred DrakeThe general iteration support is part of 2.2, not 2...
2001-05-03 Fred DrakeAdd documentation for the StopIteration exception.
2001-05-02 Fred DrakeState that Mailbox objects are iterator objects.
2001-05-02 Fred DrakeMake the Mailbox objects support iteration -- they...
2001-05-02 Fred DrakeUpdate the filter() and list() descriptions to include...
2001-05-02 Fred DrakeAdded section describing the iterator protocol.
2001-05-02 Marc-André... Added new parser markers 'et' and 'et#' which do not...
2001-05-02 Guido van RossumMchael Hudson pointed out that the code for detecting...
2001-05-02 Marc-André... Fix for bug #417030: "print '%*s' fails for unicode...
2001-05-02 Tim PetersGeneralize filter(f, seq) to work with iterators. ...
2001-05-02 Tim PetersPlug a memory leak in list(), when appending to the...
2001-05-02 Tim PetersWhitespace normalization.
2001-05-02 Fred DrakeAdded tests for Weak*Dictionary iterator support.
2001-05-02 Fred DrakeAdded iterator support to the Weak*Dictionary classes.
2001-05-01 Guido van RossumAdd more news about iterators.
2001-05-01 Tim PetersGeneralize list(seq) to work with iterators. This...
2001-05-01 Guido van RossumDiscard a misleading comment about iter_iternext().
2001-05-01 Guido van RossumPrinting objects to a real file still wasn't done right...
2001-05-01 Guido van RossumAdd a proper implementation for the tp_str slot (return...
2001-05-01 Guido van RossumAdd experimental iterkeys(), itervalues(), iteritems...
2001-04-30 Guido van RossumWell darnit! The innocuous fix I made to PyObject_Prin...
2001-04-29 Tim PetersSF bug #417093: Case sensitive import: dir and .py...
2001-04-28 Tim PetersFix buglet reported on c.l.py: map(fnc, file.xreadline...
2001-04-28 Tim PetersA different approach to the problem reported in
2001-04-27 Guido van Rossum(Adding this to the trunk as well.)
2001-04-27 Jack JansenGot rid of the whole event filtering mess again, I...
2001-04-27 Jeremy HyltonFix 2.1 nested scopes crash reported by Evan Simpson
2001-04-27 Jeremy Hyltonimproved error message-- names the type of the unexpect...
2001-04-26 Jack JansenApparently the code to forestall Tk eating events was...
2001-04-26 Eric S. RaymondAdded more help, and recovery from misspelled sort...
2001-04-25 Jack JansenFiles for 2.1 distribution.
2001-04-25 Jack JansenCheck RefCon backpointer to python object with IsPointe...
2001-04-25 Jack JansenUpdated copyright info (which was long due).
2001-04-25 Jack Jansen- Raise console window on input. Fixes Carbon hang.
2001-04-25 Jack Jansen- Raise console window on input. Fixes Carbon hang.
2001-04-25 Jack JansenDon't crash if InfoScrap doesn't exist (as is the case...
2001-04-25 Fred DrakeCorrect two floating-point representations printed...
2001-04-25 Fred DrakeUpdate test to accomodate the change to the namespace_s...
2001-04-25 Fred DrakeParserCreate(): Allow an empty string for the namespac...
2001-04-25 Tim PetersSF bug 418615: regular expression bug in pipes.py.
2001-04-24 Tim PetersSF bug 418296: WinMain.c should use WIN32_LEAN_AND_MEAN.
2001-04-23 Andrew M. KuchlingFix typo in docstring
2001-04-23 Andrew M. KuchlingBump version # for final release
2001-04-23 Marc-André... This patch originated from an idea by Martin v. Loewis...
2001-04-23 Guido van RossumMondo changes to the iterator stuff, without changing...
2001-04-23 Guido van RossumAt the suggestion of Peter Funk, document 'key in dict...
2001-04-22 Fred DrakeUpdate publish-to-SourceForge scripts to automatically...
2001-04-22 Fred DrakeOnly document <file>.xreadlines() once; added version...
2001-04-21 Neil SchemenauerProcess Setup* files with makesetup in the same order...
2001-04-21 Guido van RossumAdd test suite for iterators.
2001-04-21 Guido van RossumOops, forgot to merge this from the iter-branch to...
2001-04-21 Tim PetersGive UserDict new __contains__ and __iter__ methods.
2001-04-21 Fred Drakeencode(): Handle Latin-1 input characters better.
2001-04-21 Fred DrakeAdd support for <memberline/> (needs markup improvement!).
2001-04-21 Fred DrakeFix a number of minor markup errors.
2001-04-21 Fred DrakeThe (fairly recent) \textasciicircum is not supported...
2001-04-21 Tim PetersSF bug #417508: 'hypot' not found with Borland C++Build.
2001-04-21 Tim PetersSF but #417587: compiler warnings compiling 2.1.
2001-04-20 Tim PetersTeach Windows about new iterobject.c.
2001-04-20 Guido van RossumAdding iterobject.[ch], which were accidentally not...
2001-04-20 Guido van RossumIterators phase 1. This comprises:
2001-04-20 Jeremy Hyltondispatcher.__repr__() was unprepared to handle the...
2001-04-20 Guido van RossumOops. Removed dictiter_new decl that wasn't supposed...
2001-04-20 Guido van RossumImplement, test and document "key in dict" and "key...
2001-04-19 Tim PetersCVS patch 416248: 2.1c1 unicodeobject: unused vrbl...
2001-04-19 Jeremy HyltonRevert previous checkin, which caused test_unicodedata...
2001-04-19 Fred DrakeWeak*Dictionary: Added docstrings to the classes.
2001-04-19 Fred DrakeAdd versioning notes: many of the signatures changed...
2001-04-18 Tim PetersMove Windows stuff to 2.2, so CVS builds won't interfer...
2001-04-18 Fred DrakeCut-&-paste-o noted by Wolfgang Teschner: decompressob...
2001-04-18 Fred DrakeRemove BrowserControl module; this had been left in...
2001-04-18 Fred DrakeRemove legacy support for the BrowserControl module...
2001-04-18 Fred DrakeSuggestion from Keith Briggs: refer to RE objects...
2001-04-18 Martin v. LöwisPatch #416953: Cache ASCII characters to speed up ASCII...
2001-04-18 Fred DrakeSync version number with the current CVS version.
2001-04-18 Fred DrakeAdd description of the "explanation" optional parameter...
2001-04-18 Fred DrakeMake a number of small clarifications and correct a...
2001-04-18 Fred DrakeSync version number with the current CVS version.
2001-04-18 Guido van RossumBump the version number in more places
2001-04-18 Guido van RossumChange the version to 2.2a0. This may look strange...
2001-04-18 Barry Warsawupdate_yourself(): Removed unused local variable report...
2001-04-18 Barry Warsaw__init__(): Removed unused local variable reported...
2001-04-18 Barry WarsawStripWidget.__init__(), update_yourself(): Removed...
2001-04-18 Barry WarsawHelpwin.__init__(): Removed an unused local variable...
2001-04-18 Barry WarsawBump the version to 1.1
2001-04-18 Barry WarsawThere have been a few new Python releases <wink> in...
next