summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/topological.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-04-06 18:28:40 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2010-04-06 18:28:40 -0400
commitafba8ab659f2c9ee7084358b6db5f61920b1691c (patch)
tree00e01f0ec976137acd63d2d2b8461da73bfc7bae /lib/sqlalchemy/topological.py
parent376b8276f0a7acb1f95313ca604e273d7c981f57 (diff)
downloadsqlalchemy-afba8ab659f2c9ee7084358b6db5f61920b1691c.tar.gz
- added missing coverage for self-referential many-to-many flushes
- some other areas where per-state deps are called and an empty result returned are still lacking coverage.
Diffstat (limited to 'lib/sqlalchemy/topological.py')
-rw-r--r--lib/sqlalchemy/topological.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/sqlalchemy/topological.py b/lib/sqlalchemy/topological.py
index fbde7c601..a6328a5e4 100644
--- a/lib/sqlalchemy/topological.py
+++ b/lib/sqlalchemy/topological.py
@@ -9,6 +9,9 @@
from sqlalchemy.exc import CircularDependencyError
from sqlalchemy import util
+# this enables random orderings for iterated subsets
+# of non-dependent items.
+#from sqlalchemy.test.util import RandomSet as set
__all__ = ['sort', 'sort_as_subsets', 'find_cycles']