(self, value, connection, prepared=False)
| 1578 | return self.to_python(value) |
| 1579 | |
| 1580 | def get_db_prep_value(self, value, connection, prepared=False): |
| 1581 | # Casts dates into the format expected by the backend |
| 1582 | if not prepared: |
| 1583 | value = self.get_prep_value(value) |
| 1584 | return connection.ops.adapt_datefield_value(value) |
| 1585 | |
| 1586 | def value_to_string(self, obj): |
| 1587 | val = self.value_from_object(obj) |
nothing calls this directly
no test coverage detected