A checker for CherryPy sites and their mounted applications.
on: set this to False to turn off the checker completely.
When this object is called at engine startup, it executes each of its
own methods whose names start with "check_". If you wish to
disable selected checks, simply add a line in your global config which
sets the appropriate method to False:
You may also dynamically add or replace check_* methods in this
way.
|
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
formatwarning(self,
message,
category,
filename,
lineno,
line=None)
Function to format a warning. |
source code
|
|
|
|
|
|
|
_compat(self,
config)
Process config and warn on each obsolete or deprecated entry. |
source code
|
|
|
check_compatibility(self)
Process config and warn on each obsolete or deprecated entry. |
source code
|
|
|
|
|
check_config_namespaces(self)
Process config and warn on each unknown config namespace. |
source code
|
|
|
|
|
|
|
check_config_types(self)
Assert that config values are of the same type as default values. |
source code
|
|
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|