(self, o)
| 56 | class _ResultEncoder(json.JSONEncoder): |
| 57 | |
| 58 | def default(self, o): |
| 59 | if isinstance(o, datetime.datetime): |
| 60 | return iso8601.to_string(o) |
| 61 | return o |
| 62 | |
| 63 | |
| 64 | class _ResultDecoder(json.JSONDecoder): |
nothing calls this directly
no outgoing calls
no test coverage detected