Part of twisted.python.reflect View Source View In Hierarchy
Known subclasses: twisted.python.reflect.Summer
Extending this class will give you explicit accessor methods; a method
called set_foo, for example, is the same as an if statement in
__setattr__
looking for 'foo'. Same for get_foo and
del_foo. There are also reallyDel
and reallySet
methods, so you can override specifics in subclasses without clobbering __setattr__
and __getattr__.
| Method | __setattr__ | Undocumented |
| Method | __getattr__ | Undocumented |
| Method | __delattr__ | Undocumented |
| Method | reallySet | *actually* set self.k to v without incurring side-effects. This is a hook to be overridden by subclasses. |
| Method | reallyDel | *actually* del self.k without incurring side-effects. This is a hook to be overridden by subclasses. |