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

Method _make_callback

thirdparty/bottle/bottle.py:547–559  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

545 yield p
546
547 def _make_callback(self):
548 callback = self.callback
549 for plugin in self.all_plugins():
550 try:
551 if hasattr(plugin, 'apply'):
552 callback = plugin.apply(callback, self)
553 else:
554 callback = plugin(callback)
555 except RouteReset: # Try again with changed configuration.
556 return self._make_callback()
557 if callback is not self.callback:
558 update_wrapper(callback, self.callback)
559 return callback
560
561 def get_undecorated_callback(self):
562 """ Return the callback. If the callback is a decorated function, try to

Callers 1

callMethod · 0.95

Calls 3

all_pluginsMethod · 0.95
update_wrapperFunction · 0.85
applyMethod · 0.45

Tested by

no test coverage detected