summaryrefslogtreecommitdiff
path: root/rebuilder.py
Commit message (Expand)AuthorAgeFilesLines
...
* cleanup: remove single used function; prepare rebuilder / _nodes_ast mergeEmile Anclin2010-11-301-30/+16
* cleanup: remove useless redirections and aliased importsEmile Anclin2010-11-231-21/+0
* cleanup: remove python < 2.5 supportEmile Anclin2010-11-101-9/+3
* py3k: keyword "cmp" for list sorting is removed in 3.xEmile Anclin2010-10-071-3/+12
* py2.3 compat : syntax, set; _nodes_compiler.py : fix visit_discardEmile Anclin2010-09-221-2/+2
* fix astng building bug: we've to set module.package flag at the node creation...Sylvain Th?nault2010-09-101-2/+2
* proper licensing information (LGPL-2.1). Hope I get it right this time.Sylvain Th?nault2010-04-281-5/+19
* more license updatesSylvain Th?nault2010-04-261-3/+3
* nodes redirection cleanup possible since refactoringSylvain Th?nault2010-04-161-1/+37
* prepare 0.20.0 releaseEmile Anclin2010-03-221-2/+2
* improve Module node initialisationEmile Anclin2010-03-221-2/+3
* make pylint happier : mention node attributesEmile Anclin2010-03-221-3/+1
* fix the order of the nodes in locals.Emile Anclin2010-03-181-4/+11
* delay adding the imported names to the locals if the source module is not in ...Emile Anclin2010-03-181-3/+15
* remove two useless function calls on tree rebuilding.Emile Anclin2010-03-181-20/+16
* refactor cache handling to avoid infinite recursion error while infering assi...Emile Anclin2010-03-171-2/+8
* some cleanup using pylintEmile Anclin2010-03-171-1/+2
* move all infutils stuff to bases.pyEmile Anclin2010-03-041-1/+1
* we don't need to pass ast_mode to TreebuilderEmile Anclin2010-02-251-1/+1
* We need to set lineno at the beginning of the visitEmile Anclin2010-02-251-7/+0
* checking classmethod / staticmethod must be done after the __new__ testEmile Anclin2010-02-221-11/+5
* move _check_children to utils; don't call itEmile Anclin2010-02-171-25/+0
* remove RebuidlVisitor.set_infos; set infos in different _set_infos methodsEmile Anclin2010-02-031-35/+3
* factorize Break node visitEmile Anclin2010-02-031-0/+7
* remove _assignment: call set_local directlyEmile Anclin2010-02-021-15/+7
* remove all unnecessary delayed methodsEmile Anclin2010-02-021-32/+21
* pass new parent to visit (step 2); set some infosEmile Anclin2010-02-021-17/+21
* CONST_NAME_TRANSFORMS are only for compilerEmile Anclin2010-02-021-12/+0
* wip : trying to fix AugAssign etc. for compilerEmile Anclin2010-02-021-1/+0
* pass parent to concrete visit methods (step 1: change signature)Emile Anclin2010-02-021-22/+18
* we don't need any NodeRemoved exception anymoreEmile Anclin2010-02-011-5/+2
* fix: delayed AssAttr must be after setting localsEmile Anclin2010-02-011-3/+4
* compiler: save argument names into locals dictionaryEmile Anclin2010-01-261-1/+1
* delayed_assattr should be done at last; there are no more leave_ methodsEmile Anclin2010-01-261-8/+10
* fix visit_class and visit_boolop; more explicit commentEmile Anclin2010-01-261-7/+12
* fix Discard-Yield combination and some more obvious bugsEmile Anclin2010-01-251-3/+12
* first sketch for handling remaining visits, delays, set_locals etc.Emile Anclin2010-01-251-35/+35
* fix some further bugsEmile Anclin2010-01-211-1/+0
* fix some more infosEmile Anclin2010-01-211-3/+10
* fix parent for some nodes; add a _check_children helper functionEmile Anclin2010-01-211-9/+24
* save assignement nodes and call set_local after walking the treeEmile Anclin2010-01-211-8/+16
* factorize, fix some bugsEmile Anclin2010-01-211-15/+16
* factorize and remove dead codeEmile Anclin2010-01-211-0/+10
* compiler: handle Slice(obj), Subscript, ExtSlice, IndexEmile Anclin2010-01-211-3/+0
* disable assignement context for subscript nodesEmile Anclin2010-01-201-13/+0
* fix assignment context for Assign nodeEmile Anclin2010-01-181-4/+3
* handle assignement/delete context in visit methodsEmile Anclin2010-01-181-45/+21
* typosEmile Anclin2010-01-111-1/+1
* work in progressEmile Anclin2009-12-171-5/+9
* replace some leave methods with delayed methods; further small fixesEmile Anclin2009-12-141-30/+38