mirror of
https://github.com/darlinghq/darling.git
synced 2026-02-16 11:19:09 -06:00
8 lines
120 B
Python
Executable File
8 lines
120 B
Python
Executable File
#!/usr/bin/env python2
|
|
|
|
import py_compile
|
|
import sys
|
|
|
|
py_compile.compile(sys.argv[1], cfile=sys.argv[2], doraise=True)
|
|
|