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__.
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 158 | Method | __setattr__ | Undocumented |
| 165 | Method | __getattr__ | Undocumented |
| 171 | Method | __delattr__ | Undocumented |
| 178 | Method | reallySet | *actually* set self.k to v without incurring side-effects. |
| 189 | Method | reallyDel | *actually* del self.k without incurring side-effects. This is a |