summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_generators.py
Commit message (Expand)AuthorAgeFilesLines
* SF patch# 1770008 by Christian Heimes (plus some extras).Guido van Rossum2007-08-091-4/+4
* Merged revisions 56492-56752 via svnmerge fromGuido van Rossum2007-08-051-9/+9
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-1/+1
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-48/+48
* Make readonly members defined in C throw an AttributeError on modification. T...Collin Winter2007-03-281-1/+1
* Remove the exceptions builtin module, all the exceptions are already builtin.Neal Norwitz2007-02-261-2/+2
* Fix another test.Guido van Rossum2007-02-091-21/+21
* Fix a bunch of doctests with the -d option of refactor.py.Guido van Rossum2007-02-091-39/+39
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-6/+6
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-3/+3
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* Quite a few fixes to make the library and test suite more robust whenGuido van Rossum2006-08-171-5/+15
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-3/+36
* Merge the rest of the trunk.Thomas Wouters2006-06-081-3/+3
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-13/+85
* 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