[IMP] remove useless comment
authorMartin Trigaux <mat@openerp.com>
Tue, 8 Oct 2013 11:16:31 +0000 (13:16 +0200)
committerMartin Trigaux <mat@openerp.com>
Tue, 8 Oct 2013 11:16:31 +0000 (13:16 +0200)
bzr revid: mat@openerp.com-20131008111631-y47f0y4wyf8hsf2g

openerp/osv/fields.py

index 8084fa7..1ebf5ec 100644 (file)
@@ -229,7 +229,6 @@ class char(_column):
     def __init__(self, string="unknown", size=None, **args):
         _column.__init__(self, string=string, size=size or None, **args)
         # self._symbol_set_char defined to keep the backward compatibility
-        # use lamda function to be able to get the field size
         self._symbol_f = self._symbol_set_char = lambda x: _symbol_set_char(self, x)
         self._symbol_set = (self._symbol_c, self._symbol_f)