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)
| 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: |
no outgoing calls
no test coverage detected