| 102 | # access. |
| 103 | # ============================================================================= |
| 104 | class Dictionary(dict): |
| 105 | def __getattribute__(self, attrName): |
| 106 | return self[attrName] |
| 107 | |
| 108 | def __setattr__(self, attrName, attrValue): |
| 109 | self[attrName] = attrValue |
| 110 | |
| 111 | |
| 112 | # ============================================================================= |