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

Function _

lib/core/testing.py:286–299  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

284 dataToStdout("\r[%s] [INFO] complete: %s" % (time.strftime("%X"), status))
285
286 def _(node):
287 for __ in dir(node):
288 if not __.startswith('_'):
289 candidate = getattr(node, __)
290 if isinstance(candidate, str):
291 if '\\' in candidate:
292 try:
293 re.compile(candidate)
294 except:
295 errMsg = "smoke test failed at compiling '%s'" % candidate
296 logger.error(errMsg)
297 raise
298 else:
299 _(candidate)
300
301 for dbms in queries:
302 try:

Callers 1

smokeTestFunction · 0.70

Calls 1

errorMethod · 0.45

Tested by

no test coverage detected