(
cls,
class_: Union[DeclarativeAttributeIntercept, DeclarativeMeta, type],
mapper: Mapper[_O],
)
| 795 | |
| 796 | @classmethod |
| 797 | def _new_mapper_instance( |
| 798 | cls, |
| 799 | class_: Union[DeclarativeAttributeIntercept, DeclarativeMeta, type], |
| 800 | mapper: Mapper[_O], |
| 801 | ) -> None: |
| 802 | _MapperEventsHold.populate(class_, mapper) |
| 803 | |
| 804 | @classmethod |
| 805 | @util.preload_module("sqlalchemy.orm") |
no test coverage detected