diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-04-07 21:00:16 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-04-07 21:00:16 -0400 |
| commit | 8967b1153a6776870f0b48175943c1b05133bfc2 (patch) | |
| tree | 638233e55179db6581088dbfa51561e003107232 /lib/sqlalchemy/sql | |
| parent | f3fb6fe1d8088f0566b0bf7c2596b669c8979cbf (diff) | |
| download | sqlalchemy-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.py | 2 |
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, |
