Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
|
Functions | |
def | compile_dir |
def | compile_path |
def | main |
Variables | |
list | __all__ = ["compile_dir","compile_path"] |
tuple | exit_status = notmain() |
Module/script to "compile" all .py files to .pyc (or .pyo) file. When called as a script with arguments, this compiles the directories given as arguments recursively; the -l option prevents it from recursing into directories. Without arguments, if compiles all modules on sys.path, without recursing into subdirectories. (Even though it should do so for packages -- for now, you'll have to deal with packages separately.) See module py_compile for details of the actual byte-compilation.
def compileall.compile_dir | ( | dir, | |
maxlevels = 10 , |
|||
ddir = None , |
|||
force = 0 , |
|||
rx = None |
|||
) |
Byte-compile all modules in the given directory tree. Arguments (only dir is required): dir: the directory to byte-compile maxlevels: maximum recursion level (default 10) ddir: if given, purported directory name (this is the directory name that will show up in error messages) force: if 1, force compilation, even if timestamps are up-to-date
Definition at line 22 of file compileall.py.
References py_compile.compile().
def compileall.compile_path | ( | skip_curdir = 1 , |
|
maxlevels = 0 , |
|||
force = 0 |
|||
) |
Byte-compile all module on sys.path. Arguments (all optional): skip_curdir: if true, skip current directory (default true) maxlevels: max recursion level (default 0) force: as for compile_dir() (default 0)
Definition at line 84 of file compileall.py.
References compile_dir().
def compileall.main | ( | ) |
Script main program.
Definition at line 102 of file compileall.py.
References compile_dir(), compile_path(), and getopt.getopt().
list __all__ = ["compile_dir","compile_path"] |
Definition at line 20 of file compileall.py.
tuple exit_status = notmain() |
Definition at line 147 of file compileall.py.