summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_generators.py
Commit message (Expand)AuthorAgeFilesLines
...
* 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