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

Function depr

thirdparty/bottle/bottle.py:171–178  ·  view source on GitHub ↗
(major, minor, cause, fix)

Source from the content-addressed store, hash-verified

169
170
171def depr(major, minor, cause, fix):
172 text = "Warning: Use of deprecated feature or API. (Deprecated in Bottle-%d.%d)\n"\
173 "Cause: %s\n"\
174 "Fix: %s\n" % (major, minor, cause, fix)
175 if DEBUG == 'strict':
176 raise DeprecationWarning(text)
177 warnings.warn(text, DeprecationWarning, stacklevel=3)
178 return DeprecationWarning(text)
179
180
181def makelist(data): # This is just too handy

Callers 15

_itertokensMethod · 0.85
get_configMethod · 0.85
__init__Method · 0.85
_mount_appMethod · 0.85
_handleMethod · 0.85
set_cookieMethod · 0.85
cookie_encodeFunction · 0.85
cookie_decodeFunction · 0.85
cookie_is_encodedFunction · 0.85
runMethod · 0.85
runMethod · 0.85
runMethod · 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…