diff options
| author | Jason Kirtland <jek@discorporate.us> | 2008-07-15 19:23:52 +0000 |
|---|---|---|
| committer | Jason Kirtland <jek@discorporate.us> | 2008-07-15 19:23:52 +0000 |
| commit | 8fa48edbf9d84093152aced94fc1eb7996b9827f (patch) | |
| tree | 6ceb46f942f1a3b7f8994ba202fd5b02c21ec7c7 /lib/sqlalchemy/sql/visitors.py | |
| parent | 6917ffb9bdae19a368abef5fdbd4655fc27fcdf2 (diff) | |
| download | sqlalchemy-8fa48edbf9d84093152aced94fc1eb7996b9827f.tar.gz | |
- Removed 2.3 set emulations/enhancements.
(sets.Set-based collections & DB-API returns still work.)
Diffstat (limited to 'lib/sqlalchemy/sql/visitors.py')
| -rw-r--r-- | lib/sqlalchemy/sql/visitors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/visitors.py b/lib/sqlalchemy/sql/visitors.py index 738dae9c7..2106522d2 100644 --- a/lib/sqlalchemy/sql/visitors.py +++ b/lib/sqlalchemy/sql/visitors.py @@ -154,7 +154,7 @@ def cloned_traverse(obj, opts, visitors): def replacement_traverse(obj, opts, replace): cloned = {} - stop_on = util.Set(opts.get('stop_on', [])) + stop_on = set(opts.get('stop_on', [])) def clone(element): newelem = replace(element) |
