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