Python part of the warnings subsystem.
|
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,
module_globals=None) |
|
|
|
showwarning(message,
category,
filename,
lineno,
file=None)
Hook to write a warning to a file; replace if you like. |
|
|
|
formatwarning(message,
category,
filename,
lineno)
Function to format a warning the standard way. |
|
|
|
filterwarnings(action,
message='
' ,
category=<type 'exceptions.Warning'>,
module='
' ,
lineno=0,
append=0)
Insert an entry into the list of warnings filters (at the front). |
|
|
|
simplefilter(action,
category=<type 'exceptions.Warning'>,
lineno=0,
append=0)
Insert a simple entry into the list of warnings filters (at the
front). |
|
|
|
resetwarnings()
Clear the list of warning filters, so that no filters are active. |
|
|
|
|
|
|
|
|
|
|