(self, key)
| 119 | raise TypeError |
| 120 | |
| 121 | def __getitem__(self, key): |
| 122 | if key == "silent_fail_key": |
| 123 | raise SomeException |
| 124 | elif key == "noisy_fail_key": |
| 125 | raise SomeOtherException |
| 126 | raise KeyError |
| 127 | |
| 128 | @property |
| 129 | def silent_fail_attribute(self): |
no outgoing calls