@@ -103,39 +103,39 @@ def process(value):
103
103
"""Render a literal value, escaping as needed."""
104
104
105
105
# bool
106
- if isinstance (value , bool ) :
106
+ if type (value ) is bool :
107
107
return sqlalchemy .types .Boolean ().literal_processor (dialect )(value )
108
108
109
109
# datetime.date
110
- elif isinstance (value , datetime .date ) :
110
+ elif type (value ) is datetime .date :
111
111
return sqlalchemy .types .String ().literal_processor (dialect )(value .strftime ("%Y-%m-%d" ))
112
112
113
113
# datetime.datetime
114
- elif isinstance (value , datetime .datetime ) :
114
+ elif type (value ) is datetime .datetime :
115
115
return sqlalchemy .types .String ().literal_processor (dialect )(value .strftime ("%Y-%m-%d %H:%M:%S" ))
116
116
117
117
# datetime.time
118
- elif isinstance (value , datetime .time ) :
118
+ elif type (value ) is datetime .time :
119
119
return sqlalchemy .types .String ().literal_processor (dialect )(value .strftime ("%H:%M:%S" ))
120
120
121
121
# float
122
- elif isinstance (value , float ) :
122
+ elif type (value ) is float :
123
123
return sqlalchemy .types .Float ().literal_processor (dialect )(value )
124
124
125
125
# int
126
- elif isinstance (value , int ) :
126
+ elif type (value ) is int :
127
127
return sqlalchemy .types .Integer ().literal_processor (dialect )(value )
128
128
129
129
# long
130
- elif sys .version_info .major != 3 and isinstance (value , long ) :
130
+ elif sys .version_info .major != 3 and type (value ) is long :
131
131
return sqlalchemy .types .Integer ().literal_processor (dialect )(value )
132
132
133
133
# str
134
- elif isinstance (value , str ) :
134
+ elif type (value ) is str :
135
135
return sqlalchemy .types .String ().literal_processor (dialect )(value )
136
136
137
137
# None
138
- elif isinstance (value , sqlalchemy .sql .elements .Null ) :
138
+ elif type (value ) is sqlalchemy .sql .elements .Null :
139
139
return sqlalchemy .types .NullType ().literal_processor (dialect )(value )
140
140
141
141
# Unsupported value
@@ -192,7 +192,7 @@ def process(value):
192
192
rows = [dict (row ) for row in result .fetchall ()]
193
193
for row in rows :
194
194
for column in row :
195
- if isinstance (row [column ], decimal .Decimal ) :
195
+ if type (row [column ]) is decimal .Decimal :
196
196
row [column ] = float (row [column ])
197
197
ret = rows
198
198
0 commit comments