Changeset 402
- Timestamp:
- 01/24/07 20:59:27
- Files:
-
- trunk/storage/geniusql.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/storage/geniusql.py
r401 r402 359 359 360 360 def coerce_any_to_fixedpoint_FixedPoint(self, value): 361 if isinstance(value, basestring): 361 if (isinstance(value, basestring) or 362 decimal and isinstance(value, decimal.Decimal)): 362 363 # Unicode really screws up fixedpoint; for example: 363 364 # >>> fixedpoint.FixedPoint(u'111111111111111111111111111.1')
