Changeset 9123 for branches/pep/src/common/dataforms.py
- Timestamp:
- 12/12/07 09:44:46 (12 months ago)
- Files:
-
- 1 modified
-
branches/pep/src/common/dataforms.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/pep/src/common/dataforms.py
r8478 r9123 171 171 if v in ('0', 'false'): return False 172 172 if v in ('1', 'true'): return True 173 if v is None: return None173 if v is None: return False # default value is False 174 174 raise WrongFieldValue 175 175 def fset(self, value):
