MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / copy

Method copy

lib/sqlalchemy/util/_collections.py:133–137  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

131 return new
132
133 def copy(self) -> NoReturn:
134 raise NotImplementedError(
135 "an immutabledict shouldn't need to be copied. use dict(d) "
136 "if you need a mutable dictionary."
137 )
138
139 def __reduce__(self) -> Any:
140 return FacadeDict, (dict(self),)

Callers 2

update_copyFunction · 0.45
attrsetterFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected