Path: csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'resulting': 0.04; 'output': 0.05; 'tree': 0.05; '"""': 0.07; 'assign': 0.07; 'parser': 0.07; 'subject:code': 0.07; '"__main__":': 0.09; '__name__': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'def': 0.12; '#create': 0.16; 'ast': 0.16; 'debugger,': 0.16; 'foo.': 0.16; 'iterates': 0.16; 'name)': 0.16; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-ipconnect.de': 0.16; 'replaced.': 0.16; 'segment': 0.16; 'unchanged': 0.16; 'untouched.': 0.16; '(you': 0.16; 'do,': 0.16; 'wrote:': 0.18; 'trying': 0.19; 'skip:f 30': 0.19; 'seems': 0.21; 'import': 0.22; 'header:User-Agent:1': 0.23; '(by': 0.24; 'parse': 0.24; 'replace': 0.24; 'script': 0.25; 'header:X-Complaints-To:1': 0.27; 'function': 0.29; 'correct': 0.29; 'leave': 0.29; 'code': 0.31; '"",': 0.31; 'assert': 0.31; 'indentation': 0.31; 'node': 0.31; 'class': 0.32; 'run': 0.32; 'another': 0.32; 'problem': 0.35; 'subject:with': 0.35; 'really': 0.36; 'i.e.': 0.36; 'module.': 0.36; 'method': 0.36; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'skip:u 10': 0.60; 'hope': 0.61; 'new': 0.61; 'name': 0.63; 'skip:n 10': 0.64; 'here': 0.66 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: Modify code with AST Date: Wed, 12 Jun 2013 11:00:44 +0200 Organization: None References: <84561fb1-8784-47a6-b0ca-fc3449c1adf2@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p508481ca.dip0.t-ipconnect.de User-Agent: KNode/4.7.3 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 79 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1371027635 news.xs4all.nl 15930 [2001:888:2000:d::a6]:48627 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:47759 Ronny Mandal wrote: > Hello, > > I am trying to write a script which will parse a code segment (with > ast.parse()), locate the correct function/method node (by name) in the > resulting tree and replace this function (node) with another function > (node), e.g.: > > MyMod1.py: > > class FooBar(): > def Foo(self): #I want to replace this and only this > return 1 > > def Bar(self): > return 2 > > Here is the parser-class: > > class FindAndTransform(NodeTransformer): > """Visit the function and check name""" > def visit_FunctionDef(self, node): > if node.name == 'Foo': #Only replace if name is "Foo" > #Create a new function and assign it to node > node = parse(''' > def add(n, m): > return n + m > ''') > return node > > When I run the parser on MyMod1.py and generate code (with codegen), the > output is: > > class FooBar(): > def add(n, m): > return n + m > > i.e. both methods are replaced. It seems like "node" in the parser > contains all method bodies of class FooBar, not only Foo. When ran through > a debugger, it iterates both methods. What I really wanted to do, was to > replace only one method (Foo) and leave the other untouched. > > I hope this was understandable conveyed. I think the main problem is that you have to return the unchanged node (you return None which might be an indentation accident). I also had to take the add() FunctionDef out of the enclosing Module. So (I don't have codegen or is it part of the stdlib?): import ast class FindAndTransform(ast.NodeTransformer): def visit_FunctionDef(self, node): if node.name == 'Foo': node = ast.parse(''' def add(n, m): return n + m ''').body[0] return node if __name__ == "__main__": orig = """ class FooBar(): def Foo(self): #I want to replace this and only this return 1 def Bar(self): return 2 """ p = ast.parse(orig) q = FindAndTransform().visit(p) qq = compile(q, "", "exec") exec(qq) assert {n for n in dir(FooBar) if not n.startswith("_")} == {"Bar", "add"}