(self, data)
| 1036 | self.rounding = rounding |
| 1037 | |
| 1038 | def validate_empty_values(self, data): |
| 1039 | if smart_str(data).strip() == '' and self.allow_null: |
| 1040 | return (True, None) |
| 1041 | return super().validate_empty_values(data) |
| 1042 | |
| 1043 | def to_internal_value(self, data): |
| 1044 | """ |
nothing calls this directly
no test coverage detected