Immutable base version of a list based error log.
|
|
__contains__(x,
y)
y in x |
|
|
|
|
|
|
|
__init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
|
|
|
|
|
|
|
|
|
a new object with type S, a subtype of T
|
|
|
|
|
|
|
|
|
|
copy(...)
Creates a shallow copy of this error log. |
|
|
|
|
filter_domains(...)
Filter the errors by the given domains and return a new error log
containing the matches. |
|
|
|
|
filter_from_errors(...)
Convenience method to get all error messages or worse. |
|
|
|
|
filter_from_fatals(...)
Convenience method to get all fatal error messages. |
|
|
|
|
filter_from_level(...)
Return a log with all messages of the requested level of worse. |
|
|
|
|
filter_from_warnings(...)
Convenience method to get all warnings or worse. |
|
|
|
|
filter_levels(...)
Filter the errors by the given error levels and return a new error
log containing the matches. |
|
|
|
|
filter_types(...)
Filter the errors by the given types and return a new error log
containing the matches. |
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__reduce__,
__reduce_ex__,
__setattr__,
__str__
|