(obj: datetime.date, mapping=None)
| 120 | |
| 121 | |
| 122 | def escape_date(obj: datetime.date, mapping=None) -> str: |
| 123 | fmt = "'{0.year:04}-{0.month:02}-{0.day:02}'" |
| 124 | return fmt.format(obj) |
| 125 | |
| 126 | |
| 127 | def escape_struct_time(obj: time.struct_time, mapping=None) -> str: |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…