numpy.testing.suppress_warnings.filter# 方法 testing.suppress_warnings.filter(category=<class 'Warning'>, message='', module=None)[source]# 添加新的抑制过滤器或在进入状态时应用它。 参数: category类,可选要过滤的警告类 message字符串,可选匹配警告消息的正则表达式。 module模块,可选要过滤的模块。请注意,模块(及其文件)必须完全匹配,不能是子模块。这可能使其对外部模块不可靠。 注释 在上下文中添加时,过滤器仅在上下文中添加,并且在退出上下文时将被遗忘。