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

Method get_callback_args

thirdparty/bottle/bottle.py:579–583  ·  view source on GitHub ↗

Return a list of argument names the callback (most likely) accepts as keyword arguments. If the callback is a decorated function, try to recover the original function before inspection.

(self)

Source from the content-addressed store, hash-verified

577 return func
578
579 def get_callback_args(self):
580 """ Return a list of argument names the callback (most likely) accepts
581 as keyword arguments. If the callback is a decorated function, try
582 to recover the original function before inspection. """
583 return getargspec(self.get_undecorated_callback())[0]
584
585 def get_config(self, key, default=None):
586 """ Lookup a config field and return its value, first checking the

Callers

nothing calls this directly

Calls 2

getargspecFunction · 0.70

Tested by

no test coverage detected