Subclasses have to override this method to write the bytecode from a bucket back to the cache. If it unable to do so it must not fail silently but raise an exception.
(self, bucket)
| 151 | raise NotImplementedError() |
| 152 | |
| 153 | def dump_bytecode(self, bucket): |
| 154 | """Subclasses have to override this method to write the bytecode |
| 155 | from a bucket back to the cache. If it unable to do so it must not |
| 156 | fail silently but raise an exception. |
| 157 | """ |
| 158 | raise NotImplementedError() |
| 159 | |
| 160 | def clear(self): |
| 161 | """Clears the cache. This method is not used by Jinja2 but should be |