summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Add a new FCNTL.py backward compatibility module that issues a deprecationFred Drake2001-05-091-0/+14
* Update the tests for the fcntl module to check passing in file objects,Fred Drake2001-05-091-11/+21
* Trivial tests of urllib2 for recent SF bugJeremy Hylton2001-05-092-0/+18
* Raise useful exception when called with URL for which request typeJeremy Hylton2001-05-091-1/+2
* SF bug #422177: Results from .pyc differs from .pyTim Peters2001-05-081-0/+3
* SF patch #421922: Implement rich comparison for dicts.Tim Peters2001-05-081-0/+28
* SF patch 419176 from MvL; fixed bug 418977Jeremy Hylton2001-05-082-0/+21
* This is a test showing SF bug 422177. It won't trigger until I check inTim Peters2001-05-081-0/+30
* Generalize zip() to work with iterators.Tim Peters2001-05-062-2/+48
* Get rid of silly 5am "del" stmts.Tim Peters2001-05-051-2/+0
* Reimplement PySequence_Contains() and instance_contains(), so they workTim Peters2001-05-051-18/+6
* Generalize PySequence_Count() (operator.countOf) to work with iterators.Tim Peters2001-05-051-0/+35
* Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators.Tim Peters2001-05-052-2/+57
* Make unicode.join() work nice with iterators. This also required a changeTim Peters2001-05-051-0/+41
* Generalize tuple() to work nicely with iterators.Tim Peters2001-05-053-6/+39
* Generalize reduce() to work with iterators.Tim Peters2001-05-041-0/+13
* Purge redundant cut&paste line.Tim Peters2001-05-031-2/+1
* Generalize map() to work with iterators.Tim Peters2001-05-031-0/+35
* Remove redundant copy+paste code.Tim Peters2001-05-031-3/+0
* Generalize max(seq) and min(seq) to work with iterators.Tim Peters2001-05-031-0/+35
* InteractiveInterpreter.showsyntaxerror():Fred Drake2001-05-031-0/+1
* Added support for .__contains__(), .__iter__(), .iterkeys().Fred Drake2001-05-031-1/+8
* Added support for .iteritems(), .iterkeys(), .itervalues().Fred Drake2001-05-031-0/+3
* Make the Mailbox objects support iteration -- they already had theFred Drake2001-05-021-0/+9
* Fix for bug #417030: "print '%*s' fails for unicode string"Marc-André Lemburg2001-05-021-0/+6
* Generalize filter(f, seq) to work with iterators. This also generalizesTim Peters2001-05-021-0/+44
* Whitespace normalization.Tim Peters2001-05-022-3/+3
* Added tests for Weak*Dictionary iterator support.Fred Drake2001-05-021-10/+54
* Added iterator support to the Weak*Dictionary classes.Fred Drake2001-05-021-0/+73
* Generalize list(seq) to work with iterators. This also generalizes list()Tim Peters2001-05-011-0/+32
* Fix 2.1 nested scopes crash reported by Evan SimpsonJeremy Hylton2001-04-272-0/+12
* Added more help, and recovery from misspelled sort key arguments.Eric S. Raymond2001-04-261-2/+19
* Update test to accomodate the change to the namespace_separator parameterFred Drake2001-04-252-10/+32
* SF bug 418615: regular expression bug in pipes.py.Tim Peters2001-04-251-4/+4
* Fix typo in docstringAndrew M. Kuchling2001-04-231-1/+1
* Bump version # for final releaseAndrew M. Kuchling2001-04-231-1/+1
* Add test suite for iterators.Guido van Rossum2001-04-212-0/+247
* Give UserDict new __contains__ and __iter__ methods.Tim Peters2001-04-212-1/+19
* Iterators phase 1. This comprises:Guido van Rossum2001-04-201-0/+2
* dispatcher.__repr__() was unprepared to handle the address for a UnixJeremy Hylton2001-04-201-11/+16
* Implement, test and document "key in dict" and "key not in dict".Guido van Rossum2001-04-201-0/+4
* Weak*Dictionary: Added docstrings to the classes.Fred Drake2001-04-191-24/+36
* Fix compileall.py so that it fails on SyntaxErrorsJeremy Hylton2001-04-181-8/+26
* Fix compileall.py so that it fails on SyntaxErrorsJeremy Hylton2001-04-1810-16/+11
* Unused variable (caught by PyChecker) removed.Eric S. Raymond2001-04-171-1/+0
* Fix three PyChecker-detected gotchas.Jeremy Hylton2001-04-161-4/+10
* In walk(), don't die when os.lstat() raises os.error, e.g. because aGuido van Rossum2001-04-161-1/+4
* Add a test case for Weak*Dictionary.update() that would have caught aFred Drake2001-04-161-0/+25
* Weak*Dictionary.update(): Fix calls to [].append() to only have oneFred Drake2001-04-161-4/+15
* Implement Mark Favas's suggestion. There's a clear bug in _group():Guido van Rossum2001-04-161-1/+1