]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Fixed an issue where a particular base class within utils
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 21 Jul 2015 00:35:04 +0000 (20:35 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 21 Jul 2015 00:35:04 +0000 (20:35 -0400)
commit575f080850a0a061ccb7ac40e3ea1fbf6b0fedf4
tree4c3f6020e3d1a6bd4d761d31f996665fde826dce
parenta4b8aa320d63f7c0dc7c70dfce56f0af593d95f0
- Fixed an issue where a particular base class within utils
didn't implement ``__slots__``, and therefore meant all subclasses
of that class didn't either, negating the rationale for ``__slots__``
to be in use.  Didn't cause any issue except on IronPython
which apparently does not implement ``__slots__`` behavior compatibly
with cPython.
Fixes #3494
doc/build/changelog/changelog_10.rst
lib/sqlalchemy/__init__.py
lib/sqlalchemy/event/attr.py
lib/sqlalchemy/orm/properties.py
lib/sqlalchemy/orm/strategies.py
lib/sqlalchemy/util/langhelpers.py
test/base/test_utils.py