summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Added a non-recursive implementation of conjoin(), and a Knight's Tourunknown2001-07-041-2/+291
* dummy checkin for testing, please ignoreunknown2001-07-041-1/+0
* Fix for SF bug #425868.unknown2001-07-041-3/+3
* Clean up a bare except: clause.unknown2001-07-041-1/+1
* Clean up a bare except: clause.unknown2001-07-041-1/+1
* Make the implementations of getElementsByTagName() andFred Drake2001-07-041-11/+5
* Only write out one blank line before the request data.Fred Drake2001-07-042-3/+3
* reapplied darryl gallion's minimizing repeat fix. I'm still not 100%Fredrik Lundh2001-07-022-1/+3
* added martin's BIGCHARSET patch to SRE 2.1.1. martin reports 2xFredrik Lundh2001-07-022-12/+74
* Avoid using os.path.normcase() on sys.path elements; doing so causes pathsFred Drake2001-07-021-19/+22
* Nuke hard tabs.Tim Peters2001-07-023-244/+242
* Whitespace normalization; the plat-riscos file didn't even get byTim Peters2001-07-021-6/+6
* A clever union-find implementation from c.l.py, due to David Eppstein.Tim Peters2001-07-021-0/+77
* Derive an industrial-strength conjoin() via cross-recursion loop unrolling,Tim Peters2001-06-301-9/+83
* Turns out Neil didn't intend for *all* of his gen-branch work to getTim Peters2001-06-293-36/+51
* Solve SF bug #231249: cgi.py opens too many (temporary) files.Guido van Rossum2001-06-291-4/+12
* Added a simple but general backtracking generator (conjoin), and a coupleTim Peters2001-06-291-1/+162
* Another "if 0:" hack, this time to complain about otherwise invisibleTim Peters2001-06-281-0/+33
* This no longer leaks memory when run in an infinite loop. However,Tim Peters2001-06-271-81/+58
* Encode surrogates in UTF-8 even for a wide Py_UNICODE.Martin v. Löwis2001-06-271-2/+2
* gen_getattr: make the gi_running and gi_frame members discoverable (butTim Peters2001-06-261-2/+22
* Add a bunch of tests for extended dict.update() where the argument isBarry Warsaw2001-06-261-0/+70
* SF bug #436207: "if 0: yield x" is ignored.Tim Peters2001-06-261-7/+128
* Teach the types module about generators. Thanks to James Althoff on theTim Peters2001-06-252-0/+25
* Return self.trace_dispatch from dispatch_return() to enable stepping through ...Just van Rossum2001-06-251-0/+1
* Initial revisionSteven M. Gava2001-06-253-0/+435
* Repair indentation in comment.Tim Peters2001-06-251-2/+9
* Changed some comments. Removed the caution about clearing globs, sinceTim Peters2001-06-241-3/+3
* Clear the copy of the globs dict after running examples. This helps toTim Peters2001-06-241-5/+15
* doctest systematically leaked memory when handling an exception in anTim Peters2001-06-241-1/+1
* Added a "generate k-combinations of a list" example posted to c.l.py.Tim Peters2001-06-241-1/+49
* New tests to provoke SyntaxErrors unique to generators. Minor fiddlingTim Peters2001-06-241-6/+85
* doctest doesn't handle intentional SyntaxError exceptions gracefully,Tim Peters2001-06-241-1/+1
* Another variant of the 2-3-5 test, mixing generators with a LazyList class.Tim Peters2001-06-241-0/+37
* More tests.Tim Peters2001-06-241-1/+68
* Add a recursive Sieve of Eratosthenes prime generator. Not practical,Tim Peters2001-06-231-1/+39
* Add all the examples from PEP 255, and a few email examples.Tim Peters2001-06-231-2/+183
* New std test for generators, initially populated with doctests NeilS putTim Peters2001-06-231-0/+139
* Add sha and _sre to the list of allowed built-in modules.Fred Drake2001-06-221-1/+1
* Teach the UNPACK_SEQUENCE opcode how to tease an iterable object intoTim Peters2001-06-211-0/+53
* Add a bunch of sample strings to test soft line breaks of varying endBarry Warsaw2001-06-191-1/+28
* encode(): Fixed the handling of soft line breaks for lines over 76Barry Warsaw2001-06-191-14/+12
* - _filename_to_abs() didn't cater for .. components in the pathname. Fixed.Jack Jansen2001-06-191-1/+14
* The test used int(time.time()) to get a random number, but this doesn't work ...Jack Jansen2001-06-191-1/+1
* An import MacOS was missing after the code-rearranging. Added.Jack Jansen2001-06-191-0/+1
* Test by Martin v. Loewis for the new UTF-16 codec handling of BOMMarc-André Lemburg2001-06-191-0/+25
* This patch by Martin v. Loewis changes the UTF-16 codec to onlyMarc-André Lemburg2001-06-191-3/+33
* Fixed -D emulation for symbols with a value, as specified with the define_mac...Just van Rossum2001-06-191-1/+1
* A unittest-based test for the quopri module.Barry Warsaw2001-06-191-0/+112
* Better support for RFC 1521 quoted-printable specification, along withBarry Warsaw2001-06-191-25/+77