(self, mapper_kw: _MapperKwArgs = util.EMPTY_DICT)
| 392 | self._early_mapping(mapper_kw) |
| 393 | |
| 394 | def map(self, mapper_kw: _MapperKwArgs = util.EMPTY_DICT) -> Mapper[Any]: |
| 395 | mapper_cls = Mapper |
| 396 | |
| 397 | return self.set_cls_attribute( |
| 398 | "__mapper__", |
| 399 | mapper_cls(self.cls, self.local_table, **mapper_kw), |
| 400 | ) |
| 401 | |
| 402 | def _setup_inheritance(self, mapper_kw: _MapperKwArgs) -> None: |
| 403 | cls = self.cls |
nothing calls this directly
no test coverage detected