(self, **kwargs)
| 101 | - type: I{list} |
| 102 | """ |
| 103 | def __init__(self, **kwargs): |
| 104 | domain = __name__ |
| 105 | definitions = [ |
| 106 | Definition('cache', Cache, NoCache()), |
| 107 | Definition('faults', bool, True), |
| 108 | Definition('transport', Transport, None, TpLinker()), |
| 109 | Definition('service', (int, str), None), |
| 110 | Definition('port', (int, str), None), |
| 111 | Definition('location', str, None), |
| 112 | Definition('soapheaders', (), ()), |
| 113 | Definition('wsse', Security, None), |
| 114 | Definition('doctor', Doctor, None), |
| 115 | Definition('xstq', bool, True), |
| 116 | Definition('prefixes', bool, True), |
| 117 | Definition('retxml', bool, False), |
| 118 | Definition('prettyxml', bool, False), |
| 119 | Definition('autoblend', bool, False), |
| 120 | Definition('cachingpolicy', int, 0), |
| 121 | Definition('plugins', (list, tuple), []), |
| 122 | ] |
| 123 | Skin.__init__(self, domain, definitions, kwargs) |
nothing calls this directly
no test coverage detected