Lines Matching refs:Path
20 from pathlib import Path
24 __path__ = [str(Path(__file__).resolve().parent)]
121 for dest, src in rglob(Path(tcl_lib).parent, "**/*"):
269 return Path(
461 cdest = Path(dest).parent / Path(c).relative_to(src.parent)
487 type=Path,
491 "-b", "--build", metavar="dir", help="Specify the build directory", type=Path
504 type=Path,
511 type=Path,
518 type=Path,
525 type=Path,
532 type=Path,
540 type=Path,
568 type=Path,
577 ns.source = ns.source or (Path(__file__).resolve().parent.parent.parent)
578 ns.build = ns.build or Path(sys.executable).parent
579 ns.temp = ns.temp or Path(tempfile.mkdtemp())
582 ns.source = (Path.cwd() / ns.source).resolve()
584 ns.build = (Path.cwd() / ns.build).resolve()
586 ns.temp = (Path.cwd() / ns.temp).resolve()
588 ns.doc_build = (Path.cwd() / ns.doc_build).resolve()
590 ns.include_cat = (Path.cwd() / ns.include_cat).resolve()
595 ns.copy = (Path.cwd() / ns.copy).resolve()
597 ns.zip = (Path.cwd() / ns.zip).resolve()
599 ns.catalog = (Path.cwd() / ns.catalog).resolve()