(
self,
attrname: str,
obj: Any,
parent: Any,
anon_map: anon_map,
bindparams: List[BindParameter[Any]],
)
| 633 | return tuple((fn.__code__, c_key) for fn, c_key in obj) |
| 634 | |
| 635 | def visit_inspectable( |
| 636 | self, |
| 637 | attrname: str, |
| 638 | obj: Any, |
| 639 | parent: Any, |
| 640 | anon_map: anon_map, |
| 641 | bindparams: List[BindParameter[Any]], |
| 642 | ) -> Tuple[Any, ...]: |
| 643 | return (attrname, inspect(obj)._gen_cache_key(anon_map, bindparams)) |
| 644 | |
| 645 | def visit_string_list( |
| 646 | self, |
nothing calls this directly
no test coverage detected