(self, bucket)
| 202 | f.close() |
| 203 | |
| 204 | def dump_bytecode(self, bucket): |
| 205 | f = open(self._get_cache_filename(bucket), 'wb') |
| 206 | try: |
| 207 | bucket.write_bytecode(f) |
| 208 | finally: |
| 209 | f.close() |
| 210 | |
| 211 | def clear(self): |
| 212 | # imported lazily here because google app-engine doesn't support |
nothing calls this directly
no test coverage detected