| | |
- filterwarnings(action, message='', category=<class exceptions.Warning>, module='', lineno=0, append=0)
- Insert an entry into the list of warnings filters (at the front).
Use assertions to check that all arguments have the right type.
- formatwarning(message, category, filename, lineno)
- Function to format a warning the standard way.
- resetwarnings()
- Clear the list of warning filters, so that no filters are active.
- showwarning(message, category, filename, lineno, file=None)
- Hook to write a warning to a file; replace if you like.
- warn(message, category=None, stacklevel=1)
- Issue a warning, or maybe ignore it or raise an exception.
|