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

Function _cli_patch

thirdparty/bottle/bottle.py:53–62  ·  view source on GitHub ↗
(cli_args)

Source from the content-addressed store, hash-verified

51
52
53def _cli_patch(cli_args): # pragma: no coverage
54 parsed_args, _ = _cli_parse(cli_args)
55 opts = parsed_args
56 if opts.server:
57 if opts.server.startswith('gevent'):
58 import gevent.monkey
59 gevent.monkey.patch_all()
60 elif opts.server.startswith('eventlet'):
61 import eventlet
62 eventlet.monkey_patch()
63
64
65if __name__ == '__main__':

Callers 1

bottle.pyFile · 0.85

Calls 1

_cli_parseFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…