Home
last modified time | relevance | path

Searched refs:extra_path (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython2/Lib/distutils/command/
Dinstall.py203 self.extra_path = None
509 if self.extra_path is None:
510 self.extra_path = self.distribution.extra_path
512 if self.extra_path is not None:
513 if type(self.extra_path) is StringType:
514 self.extra_path = string.split(self.extra_path, ',')
516 if len(self.extra_path) == 1:
517 path_file = extra_dirs = self.extra_path[0]
518 elif len(self.extra_path) == 2:
519 (path_file, extra_dirs) = self.extra_path
/external/python/cpython3/Lib/distutils/command/
Dinstall.py187 self.extra_path = None
491 if self.extra_path is None:
492 self.extra_path = self.distribution.extra_path
494 if self.extra_path is not None:
499 if isinstance(self.extra_path, str):
500 self.extra_path = self.extra_path.split(',')
502 if len(self.extra_path) == 1:
503 path_file = extra_dirs = self.extra_path[0]
504 elif len(self.extra_path) == 2:
505 path_file, extra_dirs = self.extra_path
/external/python/cpython2/Lib/distutils/tests/
Dtest_install.py131 self.assertEqual(cmd.extra_path, ['path', 'dirs'])
136 cmd.extra_path = ['path']
138 self.assertEqual(cmd.extra_path, ['path'])
143 dist.extra_path = cmd.extra_path = None
145 self.assertEqual(cmd.extra_path, None)
150 cmd.extra_path = 'path,dirs,again'
/external/python/cpython3/Lib/distutils/tests/
Dtest_install.py129 self.assertEqual(cmd.extra_path, ['path', 'dirs'])
134 cmd.extra_path = ['path']
136 self.assertEqual(cmd.extra_path, ['path'])
141 dist.extra_path = cmd.extra_path = None
143 self.assertEqual(cmd.extra_path, None)
148 cmd.extra_path = 'path,dirs,again'
/external/autotest/client/cros/
Dfactory_setup_modules.py14 extra_path = ([os.path.join(sysroot, 'usr/local/factory/py_pkg')] variable
27 *imp.find_module('cros/factory', sys.path + extra_path))
/external/oss-fuzz/infra/base-images/base-msan-builder/
Dwrapper_utils.py46 extra_path = os.path.join(bin_dir, extra_name)
47 os.symlink(original_path, extra_path)
/external/skqp/infra/bots/recipe_modules/flavor/resources/
Dsymbolize_stack_trace.py55 extra_path = r'/.*\.\./'
81 sym = re.sub(extra_path, '', sym)
/external/skia/infra/bots/recipe_modules/flavor/resources/
Dsymbolize_stack_trace.py55 extra_path = r'/.*\.\./'
84 sym = re.sub(extra_path, '', sym)
/external/ltp/pan/cgi/
Dbrowse.cgi104 @extra_path = split(/\//, $ENV{PATH_INFO});
129 if ($#extra_path > 0) {
/external/python/cpython2/Lib/distutils/
Ddist.py206 self.extra_path = None
/external/python/cpython3/Lib/distutils/
Ddist.py214 self.extra_path = None
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b1.rst1027 Deprecated ``extra_path`` distribution option in distutils packaging.
/external/fonttools/
DNEWS.rst1102 - [setup.py] remove undocumented/deprecated ``extra_path`` Distutils
DPKG-INFO1519 - [setup.py] remove undocumented/deprecated ``extra_path`` Distutils
/external/fonttools/Lib/fonttools.egg-info/
DPKG-INFO1519 - [setup.py] remove undocumented/deprecated ``extra_path`` Distutils
/external/python/cpython3/Doc/whatsnew/
D3.6.rst1988 The undocumented ``extra_path`` argument to the
/external/python/setuptools/
DCHANGES.rst3245 * Support ``extra_path`` option to ``setup()`` when ``install`` is run in