(self, cache_key: str, func)
| 983 | return flag in self.testcase["flags"] |
| 984 | |
| 985 | def cache_value_to_group(self, cache_key: str, func): |
| 986 | cache_val = self.testgroup.get(cache_key) |
| 987 | if cache_val is not None: |
| 988 | return cache_val |
| 989 | self.testgroup[cache_key] = cache_val = func() |
| 990 | return cache_val |
| 991 | |
| 992 | |
| 993 | def load_wycheproof_tests(wycheproof: str, test_file: str, subdir: str): |
no outgoing calls