summaryrefslogtreecommitdiff
path: root/Lib/test/test_ast.py
Commit message (Expand)AuthorAgeFilesLines
* #18466: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-1/+1
* check by equality for __future__ not identity (closes #14378)Benjamin Peterson2012-03-221-0/+6
* verify the types of AST strings and identifiers (closes #12609 and #12610)Benjamin Peterson2011-07-221-0/+14
* fix wsBenjamin Peterson2011-06-271-1/+1
* add more ast tests (closes #11302)Benjamin Peterson2011-06-271-0/+178
* Merged revisions 87876-87877 via svnmerge fromGeorg Brandl2011-01-091-0/+8
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-10/+10
* #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k...Florent Xicluna2010-03-211-1/+3
* use assert[Not]IsInstance where appropriateEzio Melotti2010-01-241-1/+1
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-6/+1
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-1/+6
* test expect base classesBenjamin Peterson2009-10-271-0/+8
* better col_offsets for "for" statements with tuple unpacking #6704Benjamin Peterson2009-08-151-1/+8
* the Slice in x[::] has to have step as None to help the interpreterBenjamin Peterson2009-07-201-1/+2
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-5/+5
* when no module is given in a 'from' relative import, make ImportFrom.module NULLBenjamin Peterson2009-06-131-0/+4
* keep the slice.step field as NULL if no step expression is givenBenjamin Peterson2009-06-131-0/+6
* Use assertRaises.Georg Brandl2009-01-131-6/+1
* ast.literal_eval can properly evaluate complex numbers now. This fixes issue...Armin Ronacher2009-01-131-0/+11
* Add the "ast" module, containing helpers to ease use of the "_ast" classes.Georg Brandl2008-06-101-9/+100
* Revert unwanted changes.Georg Brandl2008-06-071-100/+9
* Factor out docstring dedenting from inspect.getdoc() into inspect.cleandoc()Georg Brandl2008-06-071-9/+100
* Make AST nodes pickleable.Georg Brandl2008-03-301-0/+14
* Make _fields attr for no fields consistent with _attributes attr.Georg Brandl2008-03-301-0/+3
* Convert test_ast to unittest and add a test for r62049.Georg Brandl2008-03-301-34/+61
* Adapt test_ast to the new ExceptHandler type.Georg Brandl2008-03-301-1/+2
* #2503 make singletons compared with "is" not == or !=Benjamin Peterson2008-03-291-2/+2
* Patch #1759: Backport of PEP 3129 class decoratorsChristian Heimes2008-02-231-1/+1
* Fix AST compiler bug #1501934: incorrect LOAD/STORE_GLOBAL generation.Neil Schemenauer2006-07-091-1/+1
* Remove debugging prints.Jeremy Hylton2006-04-041-4/+0
* Comment out the prints. These appear to be only for debugging purposes.Neal Norwitz2006-04-041-2/+4
* Add lineno, col_offset to excephandler to enable future fix forJeremy Hylton2006-04-041-5/+8
* Whitespace normalization.Tim Peters2006-03-011-1/+1
* Patch #1440601: Add col_offset attribute to AST nodes.Martin v. Löwis2006-03-011-42/+67
* Set EOL style to native.Tim Peters2006-02-281-178/+178
* Whitespace normalization.Tim Peters2006-02-281-179/+178
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-1/+1
* Even though we don't currently use unicode or complex numbers in the test,Neal Norwitz2006-02-271-3/+3
* Generate code to recursively copy an AST intoMartin v. Löwis2006-02-261-0/+179