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