Put the bucket into the cache.
(self, bucket: Bucket)
| 181 | return bucket |
| 182 | |
| 183 | def set_bucket(self, bucket: Bucket) -> None: |
| 184 | """Put the bucket into the cache.""" |
| 185 | self.dump_bytecode(bucket) |
| 186 | |
| 187 | |
| 188 | class FileSystemBytecodeCache(BytecodeCache): |