used for testing
(self)
| 546 | return "CacheKey(key=%s)" % ("\n".join(output),) |
| 547 | |
| 548 | def _generate_param_dict(self) -> Dict[str, Any]: |
| 549 | """used for testing""" |
| 550 | |
| 551 | _anon_map = prefix_anon_map() |
| 552 | return {b.key % _anon_map: b.effective_value for b in self.bindparams} |
| 553 | |
| 554 | @util.preload_module("sqlalchemy.sql.elements") |
| 555 | def _apply_params_to_element( |