未验证 提交 0604df9e 编写于 作者: 0 0x45f 提交者: GitHub

[Dy2st]Fix Exception in utils.py function "is_paddle_module" (#40243)

上级 cd28cddb
......@@ -191,7 +191,7 @@ def is_api_in_module(node, module_prefix):
return eval("_is_api_in_module_helper({}, '{}')".format(func_str,
module_prefix))
except NameError:
except Exception:
return False
......@@ -227,7 +227,7 @@ def is_numpy_api(node):
# TODO: find a better way
if not module_result:
return func_str.startswith("numpy.") or func_str.startswith("np.")
except NameError:
except Exception:
return False
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册