MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / _include

Method _include

thirdparty/bottle/bottle.py:4375–4380  ·  view source on GitHub ↗
(self, _env, _name=None, **kwargs)

Source from the content-addressed store, hash-verified

4373 _env['_rebase'] = (_name, kwargs)
4374
4375 def _include(self, _env, _name=None, **kwargs):
4376 env = _env.copy()
4377 env.update(kwargs)
4378 if _name not in self.cache:
4379 self.cache[_name] = self.__class__(name=_name, lookup=self.lookup, syntax=self.syntax)
4380 return self.cache[_name].execute(env['_stdout'], env)
4381
4382 def execute(self, _stdout, kwargs):
4383 env = self.defaults.copy()

Callers 1

executeMethod · 0.95

Calls 3

copyMethod · 0.45
updateMethod · 0.45
executeMethod · 0.45

Tested by

no test coverage detected