Home | History | Annotate | Download | only in python2.7

Lines Matching refs:compile

1 """Module/script to byte-compile all .py files to .pyc (or .pyo) files.
23 """Byte-compile all modules in the given directory tree.
27 dir: the directory to byte-compile
64 """Byte-compile one file.
68 fullname: the file to byte-compile
101 ok = py_compile.compile(fullname, None, dfile, True)
116 """Byte-compile all module on sys.path.
163 print "arguments: zero or more file and directory names to compile; " \
172 "compile-time tracebacks and in"
197 rx = re.compile(a)