forked from M-Labs/artiq
1
0
Fork 0

transforms/inline: support catchall 'except' clauses

This commit is contained in:
Sebastien Bourdeauducq 2014-09-23 16:20:36 +08:00
parent bad87ef38b
commit e8c92c3b6f
1 changed files with 10 additions and 9 deletions

View File

@ -232,6 +232,7 @@ class _ReferenceReplacer(ast.NodeVisitor):
def visit_ExceptHandler(self, node):
if node.name is not None:
raise NotImplementedError("'as target' is not supported")
if node.type is not None:
exception_class = self.rm.get(self.obj, self.func_name, node.type)
if not inspect.isclass(exception_class):
raise NotImplementedError("Exception type must be a class")