Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/sqlalchemy/sqlalchemy
/ append
Method
append
lib/sqlalchemy/ext/mutable.py:940–942 ·
view source on GitHub ↗
(self, x: _T)
Source
from the content-addressed store, hash-verified
938
return
result
939
940
def
append(self, x: _T) -> None:
941
list.append(self, x)
942
self.changed()
943
944
def
extend(self, x: Iterable[_T]) -> None:
945
list.extend(self, x)
Callers
15
update_query_pairs
Method · 0.45
_parse_url
Function · 0.45
_reflect_column
Method · 0.45
_reflect_fk
Method · 0.45
_reflect_indexes
Method · 0.45
_reflect_unique_constraints
Method · 0.45
_apply_unique_strategy
Function · 0.45
_merge_textual_cols_by_position
Method · 0.45
_merge_cols_by_name
Method · 0.45
_merge_cols_by_none
Method · 0.45
_set_connection_characteristics
Method · 0.45
_default_multi_reflect
Method · 0.45
Calls
1
changed
Method · 0.45
Tested by
no test coverage detected