(self, name, update_cmd, attributes = [])
| 13 | |
| 14 | class TclVariables: |
| 15 | def __init__(self, name, update_cmd, attributes = []): |
| 16 | object.__setattr__(self, '_name', name) |
| 17 | object.__setattr__(self, '_update_cmd', update_cmd) |
| 18 | object.__setattr__(self, '_attributes', attributes) |
| 19 | |
| 20 | # set corresponding variable in tcl and call update_cmd |
| 21 | def __setattr__(self, attribute_name, value): |
nothing calls this directly
no test coverage detected