(script, opt)
| 38 | |
| 39 | |
| 40 | def get_pyc(script, opt): |
| 41 | if not opt: |
| 42 | # Replace None and 0 with '' |
| 43 | opt = '' |
| 44 | return importlib.util.cache_from_source(script, optimization=opt) |
| 45 | |
| 46 | |
| 47 | def get_pycs(script): |
no outgoing calls
no test coverage detected
searching dependent graphs…