MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __init__

Method __init__

lib/sqlalchemy/sql/schema.py:4439–4448  ·  view source on GitHub ↗
(
        self,
        arg: Union[str, ClauseElement, TextClause],
        for_update: bool = False,
        _reflected: bool = False,
    )

Source from the content-addressed store, hash-verified

4437 has_argument = True
4438
4439 def __init__(
4440 self,
4441 arg: Union[str, ClauseElement, TextClause],
4442 for_update: bool = False,
4443 _reflected: bool = False,
4444 ) -> None:
4445 util.assert_arg_type(arg, (str, ClauseElement, TextClause), "arg")
4446 super().__init__(for_update)
4447 self.arg = arg
4448 self.reflected = _reflected
4449
4450 @util.memoized_property
4451 @util.preload_module("sqlalchemy.sql.functions")

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected