(args, homepath=None, debug=False)
| 49 | |
| 50 | |
| 51 | def call_pyarmor(args, homepath=None, debug=False): |
| 52 | logging.info('Call pyarmor: %s', args) |
| 53 | extra_opts = ['--home', homepath] + (['-d'] if debug else []) |
| 54 | pyarmor_main(extra_opts + args) |
| 55 | |
| 56 | |
| 57 | class RootHandler(BaseHandler): |
no outgoing calls
no test coverage detected