Differences From Artifact [757622cc63]:
- File gluon/contrib/pymysql/converters.py — part of check-in [eba4a35a21] at 2011-08-08 04:53:38 on branch develop — Added web2py 1.98.2 (user: spiffy, size: 10409) [annotate] [blame] [check-ins using]
To Artifact [fb589cd37b]:
- File gluon/contrib/pymysql/converters.py — part of check-in [5e6e1e2c0a] at 2011-11-20 05:28:20 on branch feature/web2py_auth — Upgraded to web2py 1.99.2 (user: spiffy, size: 10410) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
340 341 342 343 344 345 346 |
def escape_decimal(obj):
return unicode(obj)
encoders[Decimal] = escape_decimal
except ImportError:
pass
| > | 340 341 342 343 344 345 346 347 |
def escape_decimal(obj):
return unicode(obj)
encoders[Decimal] = escape_decimal
except ImportError:
pass
|