diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2017-06-26 11:56:38 -0400 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@awstats.zzzcomputing.com> | 2017-06-26 11:56:38 -0400 |
| commit | e04594339c19c3cd8b8e0d96ce83e5ded961dbb7 (patch) | |
| tree | 507edb6a721047f8aa81f760a5299bb18e6bbcb7 /lib/sqlalchemy/sql | |
| parent | 9f1a375f10cb7af558a9549081a0e792546aca21 (diff) | |
| parent | 1776597131ef96472b5188cebc72c31a387c90f4 (diff) | |
| download | sqlalchemy-e04594339c19c3cd8b8e0d96ce83e5ded961dbb7.tar.gz | |
Merge "Coerce float Python type to Float; ensure Python float coming back"
Diffstat (limited to 'lib/sqlalchemy/sql')
| -rw-r--r-- | lib/sqlalchemy/sql/sqltypes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/sqltypes.py b/lib/sqlalchemy/sql/sqltypes.py index 7a3c50549..06b5e5c19 100644 --- a/lib/sqlalchemy/sql/sqltypes.py +++ b/lib/sqlalchemy/sql/sqltypes.py @@ -2604,7 +2604,7 @@ MATCHTYPE = MatchType() _type_map = { int: Integer(), - float: Numeric(), + float: Float(), bool: BOOLEANTYPE, decimal.Decimal: Numeric(), dt.date: Date(), |
