Home | History | Annotate | Download | only in jinja2

Lines Matching refs:code

33     def marshal_dump(code, f):
35 marshal.dump(code, f)
37 f.write(marshal.dumps(code))
74 self.code = None
83 # the source code of the file changed, we need to reload
88 self.code = marshal_load(f)
92 if self.code is None:
96 marshal_dump(self.code, f)
140 bucket. If they are not able to find code in the cache for the
295 code = self.client.get(self.prefix + bucket.key)
299 code = None
300 if code is not None:
301 bucket.bytecode_from_string(code)