我使用带有密码管理器的开瓶器,当我第一次使用我的开瓶器时,我会收到以下警告消息:
/usr/lib/python2.7/urllib2.py:894: UserWarning: Basic Auth Realm was unquoted
url, req, headers)
我的应用程序似乎运行良好,但如何隐藏此消息?
PS:我使用:
Python 2.7.3 (default, Jan 2 2013, 16:53:07)
[GCC 4.7.2] on linux2
我使用带有密码管理器的开瓶器,当我第一次使用我的开瓶器时,我会收到以下警告消息:
/usr/lib/python2.7/urllib2.py:894: UserWarning: Basic Auth Realm was unquoted
url, req, headers)
我的应用程序似乎运行良好,但如何隐藏此消息?
PS:我使用:
Python 2.7.3 (default, Jan 2 2013, 16:53:07)
[GCC 4.7.2] on linux2
使用该warnings
模块过滤掉代码中的特定警告:
import warnings
warnings.filterwarnings("ignore", category=UserWarning, module='urllib2')