Lines Matching defs:compile
87 rel_re = re.compile (r'[\d.]+', re.ASCII)
224 _wordchars_re = re.compile(r'[^\\\'\"%s ]*' % string.whitespace)
225 _squote_re = re.compile(r"'(?:[^'\\]|\\.)*'")
226 _dquote_re = re.compile(r'"(?:[^"\\]|\\.)*"')
329 """Byte-compile a collection of Python source files to .pyc
331 of files to compile; any files that don't end in ".py" are silently
373 # always compile indirectly if the current interpreter is in either
432 # "Direct" byte-compilation: use the py_compile module to compile
437 from py_compile import compile
468 compile(file, cfile, dfile)