MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / info

Method info

lib/sqlalchemy/orm/session.py:1906–1916  ·  view source on GitHub ↗

A user-modifiable dictionary. The initial value of this dictionary can be populated using the ``info`` argument to the :class:`.Session` constructor or :class:`.sessionmaker` constructor or factory methods. The dictionary here is always local to this :class:`.Sessio

(self)

Source from the content-addressed store, hash-verified

1904
1905 @util.memoized_property
1906 def info(self) -> _InfoType:
1907 """A user-modifiable dictionary.
1908
1909 The initial value of this dictionary can be populated using the
1910 ``info`` argument to the :class:`.Session` constructor or
1911 :class:`.sessionmaker` constructor or factory methods. The dictionary
1912 here is always local to this :class:`.Session` and can be modified
1913 independently of all other :class:`.Session` objects.
1914
1915 """
1916 return {}
1917
1918 def _autobegin_t(self, begin: bool = False) -> SessionTransaction:
1919 if self._transaction is None:

Callers 7

_log_joinsMethod · 0.45
_logMethod · 0.45
__init__Method · 0.45
create_follower_dbFunction · 0.45
drop_follower_dbFunction · 0.45
reap_dbsFunction · 0.45
_engine_uriFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected