(self, bucket)
| 274 | bucket.bytecode_from_string(code) |
| 275 | |
| 276 | def dump_bytecode(self, bucket): |
| 277 | args = (self.prefix + bucket.key, bucket.bytecode_to_string()) |
| 278 | if self.timeout is not None: |
| 279 | args += (self.timeout,) |
| 280 | self.client.set(*args) |
nothing calls this directly
no test coverage detected