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

Function make_default_app_wrapper

thirdparty/bottle/bottle.py:3575–3582  ·  view source on GitHub ↗

Return a callable that relays calls to the current default app.

(name)

Source from the content-addressed store, hash-verified

3573
3574
3575def make_default_app_wrapper(name):
3576 """ Return a callable that relays calls to the current default app. """
3577
3578 @functools.wraps(getattr(Bottle, name))
3579 def wrapper(*a, **ka):
3580 return getattr(app(), name)(*a, **ka)
3581
3582 return wrapper
3583
3584
3585route = make_default_app_wrapper('route')

Callers 1

bottle.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…