(self, *args, **kwargs)
| 4299 | self.tpl = Template(file=self.filename, **options) |
| 4300 | |
| 4301 | def render(self, *args, **kwargs): |
| 4302 | for dictarg in args: |
| 4303 | kwargs.update(dictarg) |
| 4304 | self.context.vars.update(self.defaults) |
| 4305 | self.context.vars.update(kwargs) |
| 4306 | out = str(self.tpl) |
| 4307 | self.context.vars.clear() |
| 4308 | return out |
| 4309 | |
| 4310 | |
| 4311 | class Jinja2Template(BaseTemplate): |