Home | History | Annotate | Download | only in distutils

Lines Matching refs:compile

95         rel_re = re.compile (r'[\d.]+')
248 _wordchars_re = re.compile(r'[^\\\'\"%s ]*' % string.whitespace)
249 _squote_re = re.compile(r"'(?:[^'\\]|\\.)*'")
250 _dquote_re = re.compile(r'"(?:[^"\\]|\\.)*"')
355 """Byte-compile a collection of Python source files to either .pyc
357 to compile; any files that don't end in ".py" are silently skipped.
394 # always compile indirectly if the current interpreter is in either
454 # "Direct" byte-compilation: use the py_compile module to compile
459 from py_compile import compile
486 compile(file, cfile, dfile)