(self, key)
| 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) |
| 1149 | callmethod = object.__getattribute__(self, '_callmethod') |
| 1150 | return callmethod('__delattr__', (key,)) |
| 1151 | |
| 1152 | |
| 1153 | class ValueProxy(BaseProxy): |
nothing calls this directly
no test coverage detected