(self, mapper_kw: _MapperKwArgs = util.EMPTY_DICT)
| 384 | self._early_mapping(mapper_kw) |
| 385 | |
| 386 | def map(self, mapper_kw: _MapperKwArgs = util.EMPTY_DICT) -> Mapper[Any]: |
| 387 | mapper_cls = Mapper |
| 388 | |
| 389 | return self.set_cls_attribute( |
| 390 | "__mapper__", |
| 391 | mapper_cls(self.cls, self.local_table, **mapper_kw), |
| 392 | ) |
| 393 | |
| 394 | def _setup_inheritance(self, mapper_kw: _MapperKwArgs) -> None: |
| 395 | cls = self.cls |
nothing calls this directly
no test coverage detected