transforms/remove_inter_assigns: fix handling of try blocks

This commit is contained in:
Sebastien Bourdeauducq 2014-11-03 14:35:40 +08:00
parent 171d56af54
commit a29d7ec6fe
1 changed files with 14 additions and 1 deletions

View File

@ -79,7 +79,20 @@ class _InterAssignRemover(ast.NodeTransformer):
def visit_Try(self, node):
prev_modified_names = self.modified_names_push()
self.generic_visit(node)
node.body = [self.visit(stmt) for stmt in node.body]
self.modified_names_pop(prev_modified_names)
prev_modified_names = self.modified_names_push()
prev_replacements = self.replacements
for handler in node.handlers:
self.replacements = copy(prev_replacements)
handler.body = [self.visit(stmt) for stmt in handler.body]
self.replacements = copy(prev_replacements)
node.orelse = [self.visit(stmt) for stmt in node.orelse]
self.modified_names_pop(prev_modified_names)
prev_modified_names = self.modified_names_push()
node.finalbody = [self.visit(stmt) for stmt in node.finalbody]
self.modified_names_pop(prev_modified_names)
return node