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

Method __init__

lib/sqlalchemy/sql/selectable.py:4679–4692  ·  view source on GitHub ↗
(
        self,
        keyword: _CompoundSelectKeyword,
        *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]],
    )

Source from the content-addressed store, hash-verified

4677 _auto_correlate = False
4678
4679 def __init__(
4680 self,
4681 keyword: _CompoundSelectKeyword,
4682 *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]],
4683 ):
4684 self.keyword = keyword
4685 self.selects = [
4686 coercions.expect(
4687 roles.CompoundElementRole, s, apply_propagate_attrs=self
4688 ).self_group(against=self)
4689 for s in selects
4690 ]
4691
4692 GenerativeSelect.__init__(self)
4693
4694 @classmethod
4695 def _create_union(

Callers

nothing calls this directly

Calls 2

self_groupMethod · 0.45
__init__Method · 0.45

Tested by

no test coverage detected