MCPcopy Create free account
hub / github.com/datapane/datapane / depr

Function depr

python-client/src/datapane/_vendor/bottle.py:170–177  ·  view source on GitHub ↗
(major, minor, cause, fix)

Source from the content-addressed store, hash-verified

168
169
170def depr(major, minor, cause, fix):
171 text = "Warning: Use of deprecated feature or API. (Deprecated in Bottle-%d.%d)\n"\
172 "Cause: %s\n"\
173 "Fix: %s\n" % (major, minor, cause, fix)
174 if DEBUG == 'strict':
175 raise DeprecationWarning(text)
176 warnings.warn(text, DeprecationWarning, stacklevel=3)
177 return DeprecationWarning(text)
178
179
180def 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