(
self,
attrname: str,
obj: Any,
parent: Any,
anon_map: anon_map,
bindparams: List[BindParameter[Any]],
)
| 660 | return tuple(obj) |
| 661 | |
| 662 | def visit_multi( |
| 663 | self, |
| 664 | attrname: str, |
| 665 | obj: Any, |
| 666 | parent: Any, |
| 667 | anon_map: anon_map, |
| 668 | bindparams: List[BindParameter[Any]], |
| 669 | ) -> Tuple[Any, ...]: |
| 670 | return ( |
| 671 | attrname, |
| 672 | ( |
| 673 | obj._gen_cache_key(anon_map, bindparams) |
| 674 | if isinstance(obj, HasCacheKey) |
| 675 | else obj |
| 676 | ), |
| 677 | ) |
| 678 | |
| 679 | def visit_multi_list( |
| 680 | self, |
nothing calls this directly
no test coverage detected