summaryrefslogtreecommitdiff
path: root/nodes.py
Commit message (Expand)AuthorAgeFilesLines
...
* STMTS_NODES -> STMT_NODESSylvain Thénault2009-03-241-6/+8
* dont monkey patch base Node classSylvain Thénault2009-03-241-4/+18
* ExceptHandler should have blockstart_tolineno attributeSylvain Thénault2009-03-231-0/+11
* and a special hack for DictEmile Anclin2009-03-191-1/+7
* another typos :|Emile Anclin2009-03-191-2/+2
* typoEmile Anclin2009-03-191-1/+1
* improve repr_tree and had a repr_tree method for nodesEmile Anclin2009-03-191-12/+30
* (painful) mergeSylvain Thénault2009-03-191-629/+317
|\
| * test and fix line numbering for py2.5 For/While/With/TryExcept/TryFinally/WithSylvain Thénault2009-03-191-7/+29
| * mergeSylvain Thénault2009-03-181-10/+4
| |\
| | * handle Subscripts and Slices for _nodes_compilerEmile Anclin2009-03-181-9/+0
| | * refactoring subscripts/ slices like _ast : first stepEmile Anclin2009-03-181-1/+4
| * | lint fixesSylvain Thénault2009-03-181-1/+5
| |/
| * If expression supportSylvain Thénault2009-03-181-0/+1
| * remove debug assertionSylvain Thénault2009-03-181-1/+0
| * missing astng fields declaration for Ellipsis nodeSylvain Thénault2009-03-181-0/+2
| * pylint fixesSylvain Thénault2009-03-171-1/+2
| * limit cyclic dependencies / cleanup by introducing a new infutils moduleSylvain Thénault2009-03-171-197/+0
| * fix block rangeSylvain Thénault2009-03-171-21/+22
| * cleanupSylvain Thénault2009-03-171-17/+17
| * TryFinally has no orelse but a finalbody attributeEmile Anclin2009-03-171-9/+18
| * missing monkey patchEmile Anclin2009-03-171-2/+2
| * monkeypatch decorator might be python2.3 incompatibleEmile Anclin2009-03-171-3/+1
| * Add locate child methodEmile Anclin2009-03-171-3/+14
| * Exec : another statementEmile Anclin2009-03-171-1/+1
| * Assert is a statement nodeSylvain Thénault2009-03-131-1/+1
| * * code cleanupSylvain Thénault2009-03-131-6/+13
| * AugAssign and Pass nodes are statementsEmile Anclin2009-03-121-3/+3
| * we need a public child_sequence methodEmile Anclin2009-03-101-14/+14
| * Raise is a statement; Module has None as siblingEmile Anclin2009-03-091-5/+10
| * remove Yield's parent node if it is a Discard; testcaseEmile Anclin2009-03-091-2/+2
| * cleanupSylvain Thénault2009-03-061-33/+0
| * remove NoneType and Bool special classes, use Const insteadSylvain Thénault2009-03-061-33/+32
| * fix sibling methods and testsEmile Anclin2009-03-061-13/+21
| * fix 2.4 support (more to be done)Sylvain Thénault2009-03-061-2/+2
| * needs astng_fields definedSylvain Thénault2009-03-061-0/+2
| * cleanupSylvain Thénault2009-03-061-13/+6
| * refactor line numbering handlingSylvain Thénault2009-03-061-45/+49
| * introduce Arguments nodeSylvain Thénault2009-03-061-3/+4
| * test and fix (no crash at least) block_range methodsSylvain Thénault2009-03-051-20/+15
| * fix Decorators handling: use nodes attributes (as in compiler), not itemsEmile Anclin2009-03-041-1/+1
| * _get_child_sequence for replace_child and siblingEmile Anclin2009-03-041-4/+17
| * use _ast recursive representation for If nodesEmile Anclin2009-03-041-11/+1
| * Module is not a statementEmile Anclin2009-03-041-1/+1
| * licence, date, typosEmile Anclin2009-03-041-2/+2
| * introduce a Delete node for compilerEmile Anclin2009-03-041-1/+7
| * add as_string method; Print is statementEmile Anclin2009-03-031-4/+7
| * only set proxied when specifiedEmile Anclin2009-03-031-1/+4
| * const factory now deals with tuple/list/dict instancesEmile Anclin2009-03-031-0/+13
| * cleanup, default lineno attribute on NodeNGEmile Anclin2009-03-031-9/+9