Improved the typing for :class:`.sessionmaker` and
:class:`.asyncsessionmaker`, so that the default type of their return value
will be :class:`.Session` or :class:`.AsyncSession`, without the need to
type this explicitly. Previously, Mypy would not automaticaly infer these
return types from its generic base.
As part of this change, arguments for :class:`.Session`,
:class:`.AsyncSession`, :class:`.sessionmaker` and
:class:`.asyncsessionmaker` beyond the initial "bind" argument have been
made keyword-only, which includes parameters that have always been
documented as keyword arguments, such as :paramref:`.Session.autoflush`,
:paramref:`.Session.class_`, etc.
Pull request courtesy Sam Bull.
Closes: #8842
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/8842
Pull-request-sha:
fa6d1a8468e98b40e12f82ed7ddaddc1fde060ac
Change-Id: Iaaabc4572a87489d61617d970f62b9b50db4fac7
--- /dev/null
+.. change::
+ :tags: bug, typing
+ :tickets: 8842
+
+ Improved the typing for :class:`.sessionmaker` and
+ :class:`.asyncsessionmaker`, so that the default type of their return value
+ will be :class:`.Session` or :class:`.AsyncSession`, without the need to
+ type this explicitly. Previously, Mypy would not automaticaly infer these
+ return types from its generic base.
+
+ As part of this change, arguments for :class:`.Session`,
+ :class:`.AsyncSession`, :class:`.sessionmaker` and
+ :class:`.asyncsessionmaker` beyond the initial "bind" argument have been
+ made keyword-only, which includes parameters that have always been
+ documented as keyword arguments, such as :paramref:`.Session.autoflush`,
+ :paramref:`.Session.class_`, etc.
+
+ Pull request courtesy Sam Bull.
+
def __init__(
self,
bind: Optional[_AsyncSessionBind] = None,
+ *,
binds: Optional[Dict[_SessionBindKey, _AsyncSessionBind]] = None,
sync_session_class: Optional[Type[Session]] = None,
**kw: Any,
class_: Type[_AS]
+ @overload
+ def __init__(
+ self,
+ bind: Optional[_AsyncSessionBind] = ...,
+ *,
+ class_: Type[_AS],
+ autoflush: bool = ...,
+ expire_on_commit: bool = ...,
+ info: Optional[_InfoType] = ...,
+ **kw: Any,
+ ):
+ ...
+
+ @overload
+ def __init__(
+ self: "async_sessionmaker[AsyncSession]",
+ bind: Optional[_AsyncSessionBind] = ...,
+ *,
+ autoflush: bool = ...,
+ expire_on_commit: bool = ...,
+ info: Optional[_InfoType] = ...,
+ **kw: Any,
+ ):
+ ...
+
def __init__(
self,
bind: Optional[_AsyncSessionBind] = None,
+ *,
class_: Type[_AS] = AsyncSession, # type: ignore
autoflush: bool = True,
expire_on_commit: bool = True,
def __init__(
self,
bind: Optional[_SessionBind] = None,
+ *,
autoflush: bool = True,
future: Literal[True] = True,
expire_on_commit: bool = True,
class_: Type[_S]
+ @overload
+ def __init__(
+ self,
+ bind: Optional[_SessionBind] = ...,
+ *,
+ class_: Type[_S],
+ autoflush: bool = ...,
+ expire_on_commit: bool = ...,
+ info: Optional[_InfoType] = ...,
+ **kw: Any,
+ ):
+ ...
+
+ @overload
+ def __init__(
+ self: "sessionmaker[Session]",
+ bind: Optional[_SessionBind] = ...,
+ *,
+ autoflush: bool = ...,
+ expire_on_commit: bool = ...,
+ info: Optional[_InfoType] = ...,
+ **kw: Any,
+ ):
+ ...
+
def __init__(
self,
bind: Optional[_SessionBind] = None,
+ *,
class_: Type[_S] = Session, # type: ignore
autoflush: bool = True,
expire_on_commit: bool = True,
sess = scoped_fac()
# EXPECTED_TYPE: MySession
reveal_type(sess)
+
+
+def test_8837_sync() -> None:
+ sm = sessionmaker()
+
+ # EXPECTED_TYPE: sessionmaker[Session]
+ reveal_type(sm)
+
+ session = sm()
+
+ # EXPECTED_TYPE: Session
+ reveal_type(session)
+
+
+def test_8837_async() -> None:
+ as_ = async_sessionmaker()
+
+ # EXPECTED_TYPE: async_sessionmaker[AsyncSession]
+ reveal_type(as_)
+
+ async_session = as_()
+
+ # EXPECTED_TYPE: AsyncSession
+ reveal_type(async_session)