summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm/util.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-08-18 15:34:23 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-08-18 15:34:23 -0400
commit676876f4668520af267d7db883d9486a8924b320 (patch)
tree24656c990a2f9bec54e8e2e3730a1ddc4d77c304 /lib/sqlalchemy/orm/util.py
parentc5792c277bb658974baff9ddb5c00e589de10c99 (diff)
downloadsqlalchemy-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.py1
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
+