[code.view]

[top] / python / PyMOTW / warnings / warnings_filterwarnings_message.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2008 Doug Hellmann All rights reserved.
     #
     """
     """
     #end_pymotw_header
     
     import warnings
     
     warnings.filterwarnings('ignore', '.*do not.*',)
     
     warnings.warn('Show this message')
     warnings.warn('Do not show this message')
     

[top] / python / PyMOTW / warnings / warnings_filterwarnings_message.py

contact | logmethods.com