Sanitizes cache keys of non-input metadata.
()
| 1470 | defined(0, baz=20) |
| 1471 | |
| 1472 | def cache_keys(): |
| 1473 | """Sanitizes cache keys of non-input metadata.""" |
| 1474 | return tuple(key[0] for key in total_function_cache(defined)) |
| 1475 | |
| 1476 | # `True` corresponds to the fact that we're executing eagerly |
| 1477 | self.assertIn(('URRRu', (0, 1, 20)), cache_keys()) |
nothing calls this directly
no test coverage detected