summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_generators.py
Commit message (Expand)AuthorAgeFilesLines
* Teach regrtest how to pass on doctest failure msgs. This is done via aTim Peters2001-09-091-5/+5
* Make dir() wordier (see the new docstring). The new behavior is a mixedTim Peters2001-09-031-7/+1
* The change of type(None).__name__ from 'None' to 'NoneType' broke thisGuido van Rossum2001-08-161-2/+2
* Move one of the tests into the "PEP 255" section, to reflect a change inTim Peters2001-08-151-12/+15
* The message accompanying the TypeError exception on a readonlyGuido van Rossum2001-08-101-1/+1
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-2/+8
* Part way to allowing "from __future__ import generators" to communicateTim Peters2001-07-161-0/+2
* Having fun on my own time: quicker flat_conjoin; Knights Tour solverTim Peters2001-07-131-113/+123
* Remove the last remnants of the hacks to worm around leaks.Tim Peters2001-07-121-12/+3
* Repair flawed example.Tim Peters2001-07-121-1/+1
* Remove now-unnecessary "from __future__ import nested_scopes" stmts.Tim Peters2001-07-121-2/+0
* Remove reference cycle breaking code. The GC now takes care of it.Neil Schemenauer2001-07-121-7/+1
* Added a non-recursive implementation of conjoin(), and a Knight's Tourunknown2001-07-041-2/+291
* 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
* 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
* gen_getattr: make the gi_running and gi_frame members discoverable (butTim Peters2001-06-261-2/+22
* 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-251-0/+20
* Repair indentation in comment.Tim Peters2001-06-251-2/+9
* 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
* 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