target dialect supports representation of Python datetime.datetime() objects with historic (pre 1900) values.
(self)
| 1504 | |
| 1505 | @property |
| 1506 | def date_historic(self): |
| 1507 | """target dialect supports representation of Python |
| 1508 | datetime.datetime() objects with historic (pre 1900) values.""" |
| 1509 | |
| 1510 | return succeeds_if(["sqlite", "postgresql"]) |
| 1511 | |
| 1512 | @property |
| 1513 | def time(self): |
nothing calls this directly
no test coverage detected