Lines Matching refs:cfile
65 def compile(file, cfile=None, dfile=None, doraise=False, optimize=-1): argument
106 if cfile is None:
109 cfile = importlib.util.cache_from_source(file,
112 cfile = importlib.util.cache_from_source(file)
113 if os.path.islink(cfile):
116 raise FileExistsError(msg.format(cfile))
117 elif os.path.exists(cfile) and not os.path.isfile(cfile):
120 raise FileExistsError(msg.format(cfile))
134 dirname = os.path.dirname(cfile)
143 importlib._bootstrap_external._write_atomic(cfile, bytecode, mode)
144 return cfile