(self, key, value)
| 1139 | callmethod = object.__getattribute__(self, '_callmethod') |
| 1140 | return callmethod('__getattribute__', (key,)) |
| 1141 | def __setattr__(self, key, value): |
| 1142 | if key[0] == '_': |
| 1143 | return object.__setattr__(self, key, value) |
| 1144 | callmethod = object.__getattribute__(self, '_callmethod') |
| 1145 | return callmethod('__setattr__', (key, value)) |
| 1146 | def __delattr__(self, key): |
| 1147 | if key[0] == '_': |
| 1148 | return object.__delattr__(self, key) |
nothing calls this directly
no test coverage detected