首页 » 技术分享 » python一二三【warning模块使用】

python一二三【warning模块使用】

 

warning模块使用目的

和exception异常要求用户立刻进行处理不同,warning通常用于提示用户一些错误或者过时的用法。

case

scrapy源码中用到了继承了Warning类创建了一个提醒对象ScrapyDeprecationWarning,用于提醒过时的用户操作,在新版本可能会直接去除支持。

用户感知warnings

  • python参数控制warning输出
 python3 -W all example.py
 python3 -W error example.py
 python3 -W ignore example.py
  • python脚本控制
import warnings
warnings.simplefilter('ignore')
warnings.simplefilter('always')
warnings.simplefilter('error')

开发输出warnings

import warnings
warnings.warn('warning message', OwnDeprecationWarning)

参考

转载自原文链接, 如需删除请联系管理员。

原文链接:python一二三【warning模块使用】,转载请注明来源!

0