分类目录:《系统学习Python》总目录
Python默认安装了几个警告过滤器,可以通过-W
命令行参数、PYTHONWARNINGS
环境变量及调用filterwarnings()
进行覆盖。
在常规发布的版本中,默认的警告过滤器包括(按优先顺序排列):
default
:DeprecationWarning:__main__
ignore
:DeprecationWarning
ignore
:PendingDeprecationWarning
ignore
:ImportWarning
ignore
:ResourceWarning
在调试版本中,默认警告过滤器的列表是空的。