(obj)
| 125 | |
| 126 | |
| 127 | def _orm_adapter_trace_print(obj): |
| 128 | if obj is None: |
| 129 | return "None" |
| 130 | |
| 131 | t_print = _orm_adapter_trace_printers.get(obj.__visit_name__, None) |
| 132 | if t_print: |
| 133 | return t_print(obj) |
| 134 | else: |
| 135 | return f"{obj!r}" |
| 136 | |
| 137 | |
| 138 | _orm_adapter_trace_printers = { |
no test coverage detected