MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / info

Method info

lib/sqlalchemy/orm/session.py:1865–1875  ·  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

1863
1864 @util.memoized_property
1865 def info(self) -> _InfoType:
1866 """A user-modifiable dictionary.
1867
1868 The initial value of this dictionary can be populated using the
1869 ``info`` argument to the :class:`.Session` constructor or
1870 :class:`.sessionmaker` constructor or factory methods. The dictionary
1871 here is always local to this :class:`.Session` and can be modified
1872 independently of all other :class:`.Session` objects.
1873
1874 """
1875 return {}
1876
1877 def _autobegin_t(self, begin: bool = False) -> SessionTransaction:
1878 if self._transaction is None:

Callers 15

_log_noticesFunction · 0.45
_pg_create_dbFunction · 0.45
_log_noticesMethod · 0.45
_ora_drop_ignoreFunction · 0.45
_reap_oracle_dbsFunction · 0.45
_mssql_drop_ignoreFunction · 0.45
_reap_mssql_dbsFunction · 0.45
_drop_dbs_w_identFunction · 0.45
_reap_sqlite_dbsFunction · 0.45
_log_joinsMethod · 0.45
_logMethod · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected