Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Teach the types module about generators. Thanks to James Althoff on the | Tim Peters | 2001-06-25 | 1 | -0/+20 | |
| | | | | Iterators list for bringing it up! | |||||
* | Repair indentation in comment. | Tim Peters | 2001-06-25 | 1 | -2/+9 | |
| | | | | Add a temporary driver to help track down remaining leak(s). | |||||
* | Added a "generate k-combinations of a list" example posted to c.l.py. | Tim Peters | 2001-06-24 | 1 | -1/+49 | |
| | ||||||
* | New tests to provoke SyntaxErrors unique to generators. Minor fiddling | Tim Peters | 2001-06-24 | 1 | -6/+85 | |
| | | | | of other tests. | |||||
* | Another variant of the 2-3-5 test, mixing generators with a LazyList class. | Tim Peters | 2001-06-24 | 1 | -0/+37 | |
| | | | | | | | Good news: Some of this stuff is pretty sophisticated (read nuts), and I haven't bumped into a bug yet. Bad news: If I run the doctest in an infinite loop, memory is clearly leaking. | |||||
* | More tests. | Tim Peters | 2001-06-24 | 1 | -1/+68 | |
| | ||||||
* | Add a recursive Sieve of Eratosthenes prime generator. Not practical, | Tim Peters | 2001-06-23 | 1 | -1/+39 | |
| | | | | but it's a heck of a good generator exerciser (think about it <wink>). | |||||
* | Add all the examples from PEP 255, and a few email examples. | Tim Peters | 2001-06-23 | 1 | -2/+183 | |
| | ||||||
* | New std test for generators, initially populated with doctests NeilS put | Tim Peters | 2001-06-23 | 1 | -0/+139 | |
together. |