revert_bad_bugfix

bzr revid: fp@tinyerp.com-20090406165406-9visf8x49ntyetsm
This commit is contained in:
Fabien Pinckaers 2009-04-06 18:54:06 +02:00
parent 199f96bef0
commit 81f5738665
1 changed files with 0 additions and 4 deletions

View File

@ -174,10 +174,6 @@ class float(_column):
def __init__(self, string='unknown', digits=None, **args):
_column.__init__(self, string=string, **args)
self.digits = digits
if digits:
_symbol_c = '%%.%if' % digits[1]
_symbol_f = lambda x: __builtin__.float(x or 0.0)
self._symbol_set = (_symbol_c, _symbol_f)
class date(_column):