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

Method all_plugins

thirdparty/bottle/bottle.py:536–545  ·  view source on GitHub ↗

Yield all Plugins affecting this route.

(self)

Source from the content-addressed store, hash-verified

534 self.call
535
536 def all_plugins(self):
537 """ Yield all Plugins affecting this route. """
538 unique = set()
539 for p in reversed(self.app.plugins + self.plugins):
540 if True in self.skiplist: break
541 name = getattr(p, 'name', False)
542 if name and (name in self.skiplist or name in unique): continue
543 if p in self.skiplist or type(p) in self.skiplist: continue
544 if name: unique.add(name)
545 yield p
546
547 def _make_callback(self):
548 callback = self.callback

Callers 1

_make_callbackMethod · 0.95

Calls 1

addMethod · 0.45

Tested by

no test coverage detected