Home | History | Annotate | Download | only in jinja2

Lines Matching defs:shared

46     env.shared = True
95 important shared variables like configuration, filters, tests,
97 they are not shared and if no template was loaded so far.
209 #: shared environments have this set to `True`. A shared environment
211 shared = False
793 that is probably shared with other templates created with the constructor
920 def new_context(self, vars=None, shared=False, locals=None):
923 are added to the context. If shared is set to `True` the data
929 vars, shared, self.globals, locals)
931 def make_module(self, vars=None, shared=False, locals=None):
938 return TemplateModule(self, self.new_context(vars, shared, locals))