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