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

Function getargspec

thirdparty/bottle/bottle.py:106–109  ·  view source on GitHub ↗
(func)

Source from the content-addressed store, hash-verified

104 # getargspec was deprecated in 3.0 and removed in 3.11
105 from inspect import getfullargspec
106 def getargspec(func):
107 spec = getfullargspec(func)
108 kwargs = makelist(spec[0]) + makelist(spec.kwonlyargs)
109 return kwargs, spec[1], spec[2], spec[3]
110
111 basestring = str
112 unicode = str

Callers 2

get_callback_argsMethod · 0.70
yieldroutesFunction · 0.70

Calls 1

makelistFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…