(self, *args, **kwargs)
| 3312 | self.tpl = Template(file=self.filename, **options) |
| 3313 | |
| 3314 | def render(self, *args, **kwargs): |
| 3315 | for dictarg in args: kwargs.update(dictarg) |
| 3316 | self.context.vars.update(self.defaults) |
| 3317 | self.context.vars.update(kwargs) |
| 3318 | out = str(self.tpl) |
| 3319 | self.context.vars.clear() |
| 3320 | return out |
| 3321 | |
| 3322 | |
| 3323 | class Jinja2Template(BaseTemplate): |