summaryrefslogtreecommitdiff
path: root/Lib/test/test_parser.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-4/+4
* Issue #9130: Fix validation of relative imports in parser module.Mark Dickinson2010-07-041-0/+20
* Issue #9128: Validate class decorator syntax correctly in parser module.Mark Dickinson2010-07-041-0/+8
* Issue #9125: Update parser module for "except ... as ..." syntax.Mark Dickinson2010-06-301-0/+6
* Remove unused imports in test modules.Georg Brandl2010-02-071-1/+0
* use assert[Not]IsInstance where appropriateEzio Melotti2010-01-241-1/+1
* Issue #2333: Backport set and dict comprehensions syntax.Alexandre Vassalotti2010-01-111-0/+12
* Issue #2335: Backport set literals syntax from Python 3.x.Alexandre Vassalotti2010-01-091-0/+13
* fix test_parser from tokenizer tweakBenjamin Peterson2009-12-061-4/+4
* fix several compile() issues by translating newlines in the tokenizerBenjamin Peterson2009-11-121-3/+3
* Allow multiple context managers in one with statement, as proposedGeorg Brandl2009-05-251-0/+1
* #4529: fix parser's validation for try-except-finally statements.Georg Brandl2008-12-051-0/+10
* #4396 make the parser module correctly validate the with syntaxBenjamin Peterson2008-11-241-0/+4
* #4048 make the parser module accept relative imports as validBenjamin Peterson2008-11-031-0/+2
* make sure the parser flags and passed onto the compilerBenjamin Peterson2008-10-311-0/+9
* check that the parser module can handle the new keyword syntaxBenjamin Peterson2008-08-191-0/+1
* Note that the stderr output of the test is intentional.Martin v. Löwis2008-03-181-0/+2
* Issue 1881. Increased the stack limit from 500 to 1500. Also addedFacundo Batista2008-02-231-0/+17
* SF patch# 1755885 by Kurt Kaiser: show location of Unicode escape errors.Guido van Rossum2007-07-181-0/+6
* Whitespace normalization.Tim Peters2006-08-251-1/+1
* Expose column offset information in parse trees.Jeremy Hylton2006-08-221-0/+38
* Add another little test to make sure we roundtrip multiple list comp ifs ok.Neal Norwitz2006-04-121-0/+4
* Merge ast-branch to headJeremy Hylton2005-10-201-1/+23
* PEP 342 implementation. Per Guido's comments, the generator throw()Phillip J. Eby2005-08-021-0/+11
* Whitespace normalization.Tim Peters2005-04-201-1/+1
* Flush out support for ``class B(): pass`` syntax by adding support to theBrett Cannon2005-04-091-0/+3
* SF patch #1007189, multi-line imports, for instance:Anthony Baxter2004-08-311-0/+14
* PEP-0318, @decorator-style. In Guido's words:Anthony Baxter2004-08-021-2/+10
* SF patch #872326: Generator expression implementationRaymond Hettinger2004-05-191-0/+2
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-5/+4
* Whitespace normalization.Tim Peters2003-02-191-1/+1
* Add tests and news entry about parser errors from bug #678518.Neal Norwitz2003-02-101-0/+17
* Teach the parsermodule about floor division. FixesMichael W. Hudson2003-01-291-0/+5
* Standardize behavior: no docstrings in test functions.Guido van Rossum2002-08-221-5/+7
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* Remove some now-obsolete generator future statements.Tim Peters2002-04-011-8/+4
* Change the PyUnit-based tests to use the test_main() approach. ThisFred Drake2001-09-201-2/+10
* Use the "st" versions of the "ast" calls in the parser module -- there isFred Drake2001-07-171-2/+2
* Added tests for the new yield support in the parser module.Fred Drake2001-07-171-1/+132
* Convert the parser module test to use PyUnit.Fred Drake2001-06-041-208/+212
* a bold attempt to fix things broken by MAL's verify patch: importFredrik Lundh2001-01-171-1/+1
* This patch removes all uses of "assert" in the regression test suiteMarc-André Lemburg2001-01-171-1/+1
* Add more regression tests, including for the import statement variations.Fred Drake2001-01-071-10/+35
* Added tests to avoid regression on bug #125375.Fred Drake2000-12-111-1/+20
* Update the parser module to support augmented assignment.Fred Drake2000-08-251-22/+84
* Add a minimal test suite for the parser module.Fred Drake2000-08-211-0/+116