Lines Matching refs:root
76 root = os.path.realpath(pycache_dir)
77 self.pycache_dir = root
78 self.pycache_config_file = os.path.join(root, '.config')
79 os.makedirs(root, exist_ok=True)
82 'root': root,
99 for root, _, files in os.walk(self.pycache_dir):
101 path = os.path.join(root, file)
131 def start_server(host, port, root): argument
132 if root is None:
139 pyd.record_pycache_config(root)
143 start_server(host, port + 2, root)
209 start_server(LOCALHOST, int(options.port), options.root)