diff options
author | Andreas Zeidler <andi@pyfidelity.com> | 2014-01-31 17:31:27 +0100 |
---|---|---|
committer | Andreas Zeidler <andi@pyfidelity.com> | 2014-01-31 17:33:44 +0100 |
commit | a1f8479215f8203821b2ddd0bc8ecd56c98eaf4a (patch) | |
tree | 2e123f95c4ff32b806da97bb06939c4d5a35c0d1 | |
parent | 66fe0880bae38b09ba94188ee1c67391c667e64b (diff) | |
download | sqlalchemy-pr/63.tar.gz |
expose `binary_type` in `util` modulepr/63
it is used in `sql/compiler.py(849)render_literal_value()`
-rw-r--r-- | lib/sqlalchemy/util/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/util/__init__.py b/lib/sqlalchemy/util/__init__.py index 5c4034160..ed722767f 100644 --- a/lib/sqlalchemy/util/__init__.py +++ b/lib/sqlalchemy/util/__init__.py @@ -8,7 +8,7 @@ from .compat import callable, cmp, reduce, \ threading, py3k, py33, py2k, py3k_warning, jython, pypy, cpython, win32, \ set_types, py26, \ pickle, dottedgetter, parse_qsl, namedtuple, next, WeakSet, reraise, \ - raise_from_cause, u, b, ue, string_types, text_type, int_types + raise_from_cause, u, b, ue, string_types, text_type, int_types, binary_type from ._collections import KeyedTuple, ImmutableContainer, immutabledict, \ Properties, OrderedProperties, ImmutableProperties, OrderedDict, \ |