Lines Matching refs:temp
190 yield zip_name, ns.temp / zip_name
210 yield PYTHON_PTH_NAME, ns.temp / PYTHON_PTH_NAME
288 dest = (dest_dir or ns.temp) / (src.stem + ".pyc")
307 tmp = ns.temp / src.name
311 for f in ns.temp.glob(src.stem + "*.pickle"):
331 zip_path = ns.temp / zip_name
339 log_info("Generating {} in {}", zip_name, ns.temp)
340 ns.temp.mkdir(parents=True, exist_ok=True)
346 log_info("Generating {} in {}", PYTHON_PTH_NAME, ns.temp)
347 ns.temp.mkdir(parents=True, exist_ok=True)
348 with open(ns.temp / PYTHON_PTH_NAME, "w", encoding="utf-8") as f:
432 (ns.temp / "Lib" / dest).parent.mkdir(parents=True, exist_ok=True)
433 copy_if_modified(src, ns.temp / "Lib" / dest)
434 need_compile.append((dest, ns.temp / "Lib" / dest))
537 "--temp",
579 ns.temp = ns.temp or Path(tempfile.mkdtemp())
585 if not ns.temp.is_absolute():
586 ns.temp = (Path.cwd() / ns.temp).resolve()
607 Temp: {ns.temp}