MCPcopy Create free account
hub / github.com/sqlmapproject/sqlmap / render

Method render

thirdparty/bottle/bottle.py:4301–4308  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

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
4311class Jinja2Template(BaseTemplate):

Callers

nothing calls this directly

Calls 2

updateMethod · 0.45
clearMethod · 0.45

Tested by

no test coverage detected