diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-03-09 17:26:16 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-03-09 17:26:16 -0500 |
commit | c8a80e21301791fd4e1caf29ed8cadd40f617765 (patch) | |
tree | bcd5a91a5b841501a1d237e95595f2177cf5c2b8 /test/sql/test_functions.py | |
parent | 8ef3ed1032e0354cffa786f25bac2c54a3bcd54d (diff) | |
download | sqlalchemy-c8a80e21301791fd4e1caf29ed8cadd40f617765.tar.gz |
- remove all compat items that are pre-2.5 (hooray)
- other cleanup
- don't need compat.decimal, that approach never panned out. hopefully
outside libs aren't pulling it in, they shouldn't be
Diffstat (limited to 'test/sql/test_functions.py')
-rw-r--r-- | test/sql/test_functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_functions.py b/test/sql/test_functions.py index ae8e28e24..b325b7763 100644 --- a/test/sql/test_functions.py +++ b/test/sql/test_functions.py @@ -8,7 +8,7 @@ from sqlalchemy.testing.engines import all_dialects from sqlalchemy import types as sqltypes from sqlalchemy.sql import functions from sqlalchemy.sql.functions import GenericFunction -from sqlalchemy.util.compat import decimal +import decimal from sqlalchemy import testing from sqlalchemy.testing import fixtures, AssertsCompiledSQL, engines from sqlalchemy.dialects import sqlite, postgresql, mysql, oracle |