diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-14 18:09:54 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-14 18:09:54 -0400 |
commit | a49ec1cf778811fb3717bd0ace183ba0ea5ba4d4 (patch) | |
tree | cee11129e7981610b10a852ad8623d3ba89e9283 /lib/sqlalchemy/util/__init__.py | |
parent | 5ec6ec9cbb1c29774c50bafed781e649ed481418 (diff) | |
download | sqlalchemy-a49ec1cf778811fb3717bd0ace183ba0ea5ba4d4.tar.gz |
- Added a "str()" step to the dialect_kwargs iteration for
Python version < 2.6.5, working around the
"no unicode keyword arg" bug as these args are passed along as
keyword args within some reflection processes.
fixes #3123
Diffstat (limited to 'lib/sqlalchemy/util/__init__.py')
-rw-r--r-- | lib/sqlalchemy/util/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sqlalchemy/util/__init__.py b/lib/sqlalchemy/util/__init__.py index a2e755c38..a8b823208 100644 --- a/lib/sqlalchemy/util/__init__.py +++ b/lib/sqlalchemy/util/__init__.py @@ -8,7 +8,8 @@ from .compat import callable, cmp, reduce, \ threading, py3k, py33, py2k, jython, pypy, cpython, win32, \ pickle, dottedgetter, parse_qsl, namedtuple, next, reraise, \ - raise_from_cause, text_type, string_types, int_types, binary_type, \ + raise_from_cause, text_type, safe_kwarg, 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, zip_longest |