summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/util/__init__.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-04-19 12:31:19 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-04-19 12:31:19 -0400
commitc33d0378802abbc729de55ba205a4309e5d68f6b (patch)
tree1e8994db447e9908827c6494db8d0241a7a6de52 /lib/sqlalchemy/util/__init__.py
parent1fb4ad75a38ce84d0e7b170927025500b73b5519 (diff)
downloadsqlalchemy-c33d0378802abbc729de55ba205a4309e5d68f6b.tar.gz
- Liberalized the contract for :class:`.Index` a bit in that you can
specify a :func:`.text` expression as the target; the index no longer needs to have a table-bound column present if the index is to be manually added to the table, either via inline declaration or via :meth:`.Table.append_constraint`. fixes #3028
Diffstat (limited to 'lib/sqlalchemy/util/__init__.py')
-rw-r--r--lib/sqlalchemy/util/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/util/__init__.py b/lib/sqlalchemy/util/__init__.py
index eba64ed15..79c2d689f 100644
--- a/lib/sqlalchemy/util/__init__.py
+++ b/lib/sqlalchemy/util/__init__.py
@@ -10,7 +10,7 @@ from .compat import callable, cmp, reduce, \
raise_from_cause, text_type, string_types, int_types, binary_type, \
quote_plus, with_metaclass, print_, itertools_filterfalse, u, ue, b,\
unquote_plus, unquote, b64decode, b64encode, byte_buffer, itertools_filter,\
- iterbytes, StringIO, inspect_getargspec
+ iterbytes, StringIO, inspect_getargspec, zip_longest
from ._collections import KeyedTuple, ImmutableContainer, immutabledict, \
Properties, OrderedProperties, ImmutableProperties, OrderedDict, \