diff options
author | Iuri de Silvio <iurisilvio@gmail.com> | 2015-11-30 12:11:02 -0200 |
---|---|---|
committer | Iuri de Silvio <iurisilvio@gmail.com> | 2015-11-30 14:50:25 -0200 |
commit | d9178320d6755d893638646503ed538b11b6536a (patch) | |
tree | 85b44902fadcfe4b960f4c8483a202a701f81f95 /lib/sqlalchemy/util/__init__.py | |
parent | 4fcd93afb877ec8929586c2d7b671aef1783d883 (diff) | |
download | sqlalchemy-pr/218.tar.gz |
Fix _assert_unorderable_types on py36.pr/218
The error message changed to:
`'<' not supported between instances of 'foo' and 'bar'`
Diffstat (limited to 'lib/sqlalchemy/util/__init__.py')
-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 36a81dbce..a15ca8efa 100644 --- a/lib/sqlalchemy/util/__init__.py +++ b/lib/sqlalchemy/util/__init__.py @@ -6,7 +6,7 @@ # the MIT License: http://www.opensource.org/licenses/mit-license.php from .compat import callable, cmp, reduce, \ - threading, py3k, py33, py2k, jython, pypy, cpython, win32, \ + threading, py3k, py33, py36, py2k, jython, pypy, cpython, win32, \ pickle, dottedgetter, parse_qsl, namedtuple, next, reraise, \ raise_from_cause, text_type, safe_kwarg, string_types, int_types, \ binary_type, nested, \ |