]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
remove async session slots
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 31 Aug 2021 20:41:58 +0000 (16:41 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 1 Sep 2021 13:23:48 +0000 (09:23 -0400)
commita4fc07fae69aa130fc032e7b5204f2e1fe3acaa3
tree0a6315e935bb24bbe539c96b988f91fb06b4017c
parent184e2da5992c55266b37bab5ce3a07e9dfb8caa1
remove async session slots

1798c3cf1c added __slots__ to the base which then
caused af0824fd79 to fail.  as we can't use an assignable
class variable with slots, remove slots from AsyncSession
which is how this class was working anyway.

Fixes: #6967
Change-Id: I4e0adab923db8e77cf748a8728e253258838e8f1
lib/sqlalchemy/ext/asyncio/session.py