Thin wrapper around a given object
(self, wrapped)
| 154 | return object.__setattr__(self, name, value) |
| 155 | |
| 156 | def __init__(self, wrapped): |
| 157 | """ |
| 158 | Thin wrapper around a given object |
| 159 | """ |
| 160 | self.wrapper_setattr('_wrapped', wrapped) |
| 161 | |
| 162 | |
| 163 | class SimpleTextIOWrapper(ObjectWrapper): |
nothing calls this directly
no test coverage detected