From 8967b1153a6776870f0b48175943c1b05133bfc2 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 7 Apr 2010 21:00:16 -0400 Subject: - 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 --- lib/sqlalchemy/sql/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlalchemy/sql') 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, -- cgit v1.2.1