(self)
| 1297 | " class and instance checks") |
| 1298 | |
| 1299 | def __dir__(self): |
| 1300 | return list(set(super().__dir__() |
| 1301 | + [attr for attr in dir(self.__origin__) if not _is_dunder(attr)])) |
| 1302 | |
| 1303 | |
| 1304 | # Special typing constructs Union, Optional, Generic, Callable and Tuple |
nothing calls this directly
no test coverage detected