diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-18 15:34:23 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-18 15:34:23 -0400 |
commit | 676876f4668520af267d7db883d9486a8924b320 (patch) | |
tree | 24656c990a2f9bec54e8e2e3730a1ddc4d77c304 /lib/sqlalchemy/orm/util.py | |
parent | c5792c277bb658974baff9ddb5c00e589de10c99 (diff) | |
download | sqlalchemy-676876f4668520af267d7db883d9486a8924b320.tar.gz |
Fixed a potential issue in an ordered sequence implementation used
by the ORM to iterate mapper hierarchies; under the Jython interpreter
this implementation wasn't ordered, even though cPython and Pypy
maintained ordering. Also in 0.8.3.
[ticket:2794]
Diffstat (limited to 'lib/sqlalchemy/orm/util.py')
-rw-r--r-- | lib/sqlalchemy/orm/util.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqlalchemy/orm/util.py b/lib/sqlalchemy/orm/util.py index d88164e7d..973707249 100644 --- a/lib/sqlalchemy/orm/util.py +++ b/lib/sqlalchemy/orm/util.py @@ -911,3 +911,4 @@ def randomize_unitofwork(): from sqlalchemy.testing.util import RandomSet topological.set = unitofwork.set = session.set = mapper.set = \ dependency.set = RandomSet + |