| | |
- _getaction(action)
- # Helper for _setoption()
- _getcategory(category)
- # Helper for _setoption()
- _processoptions(args)
- # Helper to process -W options passed via sys.warnoptions
- _setoption(arg)
- # Helper for _processoptions()
- _test()
- # Self-test
- 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()
- Reset the list of warnings filters to its default state.
- 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.
- warn_explicit(message, category, filename, lineno, module=None, registry=None)
|