Roll src/third_party/skia c6f3e2c:efb7e42
[chromium-blink-merge.git] / third_party / cython / src / bin / cythonrun
blob1c619549221a94a5e22ceb78faaae790a3e7e451
1 #!/usr/bin/env python
3 """
4 Compile a Python script into an executable that embeds CPython and run it.
5 Requires CPython to be built as a shared library ('libpythonX.Y').
7 Basic usage:
9 python cythonrun somefile.py [ARGS]
10 """
12 from Cython.Build.BuildExecutable import build, build_and_run
14 if __name__ == '__main__':
15 import sys
16 build_and_run(sys.argv[1:])