summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-04-07 21:00:16 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2010-04-07 21:00:16 -0400
commit8967b1153a6776870f0b48175943c1b05133bfc2 (patch)
tree638233e55179db6581088dbfa51561e003107232 /lib/sqlalchemy/sql
parentf3fb6fe1d8088f0566b0bf7c2596b669c8979cbf (diff)
downloadsqlalchemy-8967b1153a6776870f0b48175943c1b05133bfc2.tar.gz
- make it exceedlingly obvious that all topological/unitofwork code is
being rewritten, and nothing here should be consulted for any future activity. - underscore current topological methods as their API behavior is changing, possibly in 0.6.1 if [ticket:1742] remains on track
Diffstat (limited to 'lib/sqlalchemy/sql')
-rw-r--r--lib/sqlalchemy/sql/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/util.py b/lib/sqlalchemy/sql/util.py
index 5a439b099..ccbeea371 100644
--- a/lib/sqlalchemy/sql/util.py
+++ b/lib/sqlalchemy/sql/util.py
@@ -20,7 +20,7 @@ def sort_tables(tables):
for table in tables:
visitors.traverse(table, {'schema_visitor':True}, {'foreign_key':visit_foreign_key})
- return topological.sort(tuples, tables)
+ return topological._sort(tuples, tables)
def find_join_source(clauses, join_to):
"""Given a list of FROM clauses and a selectable,