Lines Matching refs:cfile
79 def compile(file, cfile=None, dfile=None, doraise=False, optimize=-1, argument
124 if cfile is None:
127 cfile = importlib.util.cache_from_source(file,
130 cfile = importlib.util.cache_from_source(file)
131 if os.path.islink(cfile):
134 raise FileExistsError(msg.format(cfile))
135 elif os.path.exists(cfile) and not os.path.isfile(cfile):
138 raise FileExistsError(msg.format(cfile))
152 dirname = os.path.dirname(cfile)
169 importlib._bootstrap_external._write_atomic(cfile, bytecode, mode)
170 return cfile