target dialect supports representation of Python datetime.datetime() objects with historic (pre 1900) values.
(self)
| 1482 | |
| 1483 | @property |
| 1484 | def datetime_historic(self): |
| 1485 | """target dialect supports representation of Python |
| 1486 | datetime.datetime() objects with historic (pre 1900) values.""" |
| 1487 | |
| 1488 | return succeeds_if(["sqlite", "postgresql"]) |
| 1489 | |
| 1490 | @property |
| 1491 | def date(self): |
nothing calls this directly
no test coverage detected