summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_generators.py
Commit message (Expand)AuthorAgeFilesLines
* Patch #1531113: Fix augmented assignment with yield expressions.Neal Norwitz2006-07-301-3/+36
* Patch #1346214: correctly optimize away "if 0"-style stmtsGeorg Brandl2006-06-041-3/+3
* Add missing DECREF to PyErr_WriteUnraisable(). That function reportsThomas Wouters2006-04-151-2/+34
* Consolidate 'leak_test1' and 'refleaks_tests', since they both test for theThomas Wouters2006-04-151-17/+15
* Add missing PyObject_GC_Track call, causing *some* itertools.tee objects toThomas Wouters2006-04-151-17/+6
* Changed comments to make sense now that the LazyList-basedTim Peters2006-04-151-4/+6
* Fix SF#1470508: crash in generator cycle finalization. There were twoPhillip J. Eby2006-04-151-7/+0
* Move the old test_generator_cycle.py which leaked but was removed into the testNeal Norwitz2006-04-141-0/+17
* Fix the reference leak in test_generators, by explicitly breaking the cycleThomas Wouters2006-03-311-9/+19
* In true regression-test spirit, make sure theThomas Wouters2006-03-281-0/+29
* Support throw() of string exceptions.Phillip J. Eby2006-03-251-2/+4
* Whitespace normalization.Tim Peters2005-12-251-1/+1
* Improve test coverage. Hope the test_file changes work the same on windows.Neal Norwitz2005-11-271-0/+5
* Revert previous checkin:Neal Norwitz2005-10-221-1/+1
* Add comment lost from AST mergeNeal Norwitz2005-10-211-1/+1
* Merge ast-branch to headJeremy Hylton2005-10-201-1/+1
* Whitespace normalization (via reindent.py).Tim Peters2005-08-261-3/+3
* [ 1113421 ] New tutorial tests in test_generators.pyGeorg Brandl2005-08-241-0/+78
* Whitespace normalization (ran reindent.py over the whole tree).Tim Peters2005-08-071-10/+10
* PEP 342 implementation. Per Guido's comments, the generator throw()Phillip J. Eby2005-08-021-15/+261
* DocTestFinder._find(): for tests derived from a module __test__ global,Tim Peters2004-09-131-6/+6
* Removed old "if 0:" block for leak detection; wouldn't work anymore anyway.Tim Peters2004-08-271-8/+1
* Don't really need ellipsis doctests for the syntax errors, becauseTim Peters2004-08-271-12/+12
* Fixed 6 failures due to doctest changes.Tim Peters2004-08-271-16/+16
* Fixed doctest error (wrong prompts)Edward Loper2004-08-091-3/+3
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-1/+1
* This test depends on the exact ordering produced by the WichmannHillRaymond Hettinger2002-12-301-3/+3
* Add tests for weakref support for generator-iterators.Fred Drake2002-08-091-1/+27
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+3
* Whitespace normalization.Tim Peters2002-07-161-1/+1
* SF bug 567538: Generator can crash the interpreter (Finn Bock).Guido van Rossum2002-06-121-0/+20
* Add the 'bool' type and its values 'False' and 'True', as described inGuido van Rossum2002-04-031-12/+12
* Remove some now-obsolete generator future statements.Tim Peters2002-04-011-2/+0
* SF patch 499062: Minor typo in test_generators.py.Tim Peters2002-03-101-1/+1
* SF bug #488514: -Qnew needs workTim Peters2001-12-061-6/+6
* 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