Home
last modified time | relevance | path

Searched refs:modpath (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/
Dzipimport.py135 modpath = _get_module_path(self, fullname)
136 if _is_dir(self, modpath):
177 modpath = _get_module_path(self, fullname)
178 if _is_dir(self, modpath):
196 code, ispackage, modpath = _get_module_code(self, fullname)
229 code, ispackage, modpath = _get_module_code(self, fullname)
230 return modpath
284 code, ispackage, modpath = _get_module_code(self, fullname)
301 _bootstrap_external._fix_up_module(mod.__dict__, fullname, modpath)
311 _bootstrap._verbose_message('import {} # loaded from Zip {}', fullname, modpath)
[all …]
/third_party/python/Python/
Dmakeopcodetargets.py18 modpath = os.path.join(
20 return imp.load_module(modname, *imp.find_module(modname, [modpath]))
25 modpath = os.path.join(
27 return SourceFileLoader(modname, modpath).load_module()
/third_party/node/deps/npm/lib/install/action/
Dremove.js33 var modpath = path.join(path.dirname(pkg.path), '.' + path.basename(pkg.path) + '.MODULES')
35 move(path.join(pkg.path, 'node_modules'), modpath).then(unbuildPackage, unbuildPackage)
49 fs.readdir(modpath, makeTarget)
61 var from = path.join(modpath, file)
70 rimraf(modpath, afterCleanup)
/third_party/python/Lib/test/
Dtest___all__.py57 def walk_modules(self, basedir, modpath): argument
63 yield pkg_init, modpath + fn
64 for p, m in self.walk_modules(path, modpath + fn + "."):
69 yield path, modpath + fn[:-3]
Dtest_pdb.py1702 modpath = pkg_name + '/' + module_name
1703 os.makedirs(modpath)
1704 with open(modpath + '/__init__.py', 'w'):
1707 stdout, stderr = self._run_pdb(['-m', modpath.replace('/', '.')], "")
Dtest_compileall.py290 modpath = mod[len(self.directory+os.sep):]
292 expected_in = os.path.join(ddir, modpath)
/third_party/python/Lib/distutils/command/
Dbuild_ext.py647 modpath = fullname.split('.')
648 filename = self.get_ext_filename(modpath[-1])
654 filename = os.path.join(*modpath[:-1]+[filename])
659 package = '.'.join(modpath[0:-1])
/third_party/python/Lib/test/test_importlib/
Dutil.py170 modpath = os.path.join(location, '__init__.py')
173 modpath = location + '.py'
179 with open(modpath, 'w', encoding='utf-8') as modfile: