(self)
| 111 | |
| 112 | @property |
| 113 | def __dict__(self): |
| 114 | try: |
| 115 | return self._get_current_object().__dict__ |
| 116 | except RuntimeError: # pragma: no cover |
| 117 | raise AttributeError('__dict__') |
| 118 | |
| 119 | def __repr__(self): |
| 120 | try: |
nothing calls this directly
no test coverage detected