MCPcopy Index your code
hub / github.com/sqlalchemy/sqlalchemy / __init__

Method __init__

lib/sqlalchemy/orm/strategies.py:401–409  ·  view source on GitHub ↗
(self, parent, strategy_key)

Source from the content-addressed store, hash-verified

399 __slots__ = "columns", "group", "raiseload"
400
401 def __init__(self, parent, strategy_key):
402 super().__init__(parent, strategy_key)
403 if hasattr(self.parent_property, "composite_class"):
404 raise NotImplementedError(
405 "Deferred loading for composite types not implemented yet"
406 )
407 self.raiseload = self.strategy_opts.get("raiseload", False)
408 self.columns = self.parent_property.columns
409 self.group = self.parent_property.group
410
411 def create_row_processor(
412 self,

Callers

nothing calls this directly

Calls 2

__init__Method · 0.45
getMethod · 0.45

Tested by

no test coverage detected