diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2020-11-14 14:35:23 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-11-14 14:35:23 +0000 |
commit | bddb1070f9fa846233255fd0acd5316404560de1 (patch) | |
tree | 733dca324fdbaa89488d7dbb7749ad08f050a95f /lib/sqlalchemy/sql/selectable.py | |
parent | 415ddce1e3b429bdc1180c5b5f7750a08d226525 (diff) | |
parent | f18316a14f3858acfd3e813753c2c69821a27d57 (diff) | |
download | sqlalchemy-bddb1070f9fa846233255fd0acd5316404560de1.tar.gz |
Merge "Some small improvements on the tutorial 2.0 documents"
Diffstat (limited to 'lib/sqlalchemy/sql/selectable.py')
-rw-r--r-- | lib/sqlalchemy/sql/selectable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py index b5dbed1a9..086cef48a 100644 --- a/lib/sqlalchemy/sql/selectable.py +++ b/lib/sqlalchemy/sql/selectable.py @@ -4988,7 +4988,7 @@ class Select( assert isinstance(self._where_criteria, tuple) - for criterion in list(whereclause): + for criterion in whereclause: where_criteria = coercions.expect(roles.WhereHavingRole, criterion) self._where_criteria += (where_criteria,) |