(self)
| 76 | return dir(self._evt) |
| 77 | |
| 78 | def which(self) -> str: |
| 79 | if self._enum is None: |
| 80 | self._enum = self._evt.which() |
| 81 | return self._enum |
| 82 | |
| 83 | def __getattr__(self, name: str): |
| 84 | if name.startswith("__") and name.endswith("__"): |
no outgoing calls