]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Correct any_, all_ spelling
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 28 Dec 2016 21:14:31 +0000 (16:14 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 28 Dec 2016 21:14:31 +0000 (16:14 -0500)
- Fixed 1.1 regression where "import *" would not work for
sqlalchemy.sql.expression, due to mis-spelled "any_" and "all_"
functions.

Change-Id: I25d1cd34c9239dbdcdb1889c5cda2474557e1418
Fixes: #3878
doc/build/changelog/changelog_11.rst
lib/sqlalchemy/sql/expression.py

index 8ac24188932940c47f0a760178ea035edc566942..873dc07d48b52ec3fff14ec8919244fbfd61d512 100644 (file)
 .. changelog::
     :version: 1.1.5
 
+    .. change:: 3878
+        :tags: bug, sql
+        :tickets: 3878
+
+        Fixed 1.1 regression where "import *" would not work for
+        sqlalchemy.sql.expression, due to mis-spelled "any_" and "all_"
+        functions.
+
     .. change:: 3877
         :tags: bug, oracle, postgresql
         :tickets: 3877
index cbb123ec63967386bfed4a9fad376ac32dfa2d81..325c222eb436d0e12b9edaf0b334d7a7bccd8178 100644 (file)
@@ -15,7 +15,7 @@ class.
 """
 
 __all__ = [
-    'Alias', 'Any', 'All', 'ClauseElement', 'ColumnCollection', 'ColumnElement',
+    'Alias', 'any_', 'all_', 'ClauseElement', 'ColumnCollection', 'ColumnElement',
     'CompoundSelect', 'Delete', 'FromClause', 'Insert', 'Join', 'Lateral',
     'Select',
     'Selectable', 'TableClause', 'Update', 'alias', 'and_', 'asc', 'between',