Searched refs:extra_path (Results 1 – 17 of 17) sorted by relevance
/external/python/cpython2/Lib/distutils/command/ |
D | install.py | 203 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/ |
D | install.py | 187 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/ |
D | test_install.py | 131 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/ |
D | test_install.py | 129 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/ |
D | factory_setup_modules.py | 14 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/ |
D | wrapper_utils.py | 46 extra_path = os.path.join(bin_dir, extra_name) 47 os.symlink(original_path, extra_path)
|
/external/skqp/infra/bots/recipe_modules/flavor/resources/ |
D | symbolize_stack_trace.py | 55 extra_path = r'/.*\.\./' 81 sym = re.sub(extra_path, '', sym)
|
/external/skia/infra/bots/recipe_modules/flavor/resources/ |
D | symbolize_stack_trace.py | 55 extra_path = r'/.*\.\./' 84 sym = re.sub(extra_path, '', sym)
|
/external/ltp/pan/cgi/ |
D | browse.cgi | 104 @extra_path = split(/\//, $ENV{PATH_INFO}); 129 if ($#extra_path > 0) {
|
/external/python/cpython2/Lib/distutils/ |
D | dist.py | 206 self.extra_path = None
|
/external/python/cpython3/Lib/distutils/ |
D | dist.py | 214 self.extra_path = None
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b1.rst | 1027 Deprecated ``extra_path`` distribution option in distutils packaging.
|
/external/fonttools/ |
D | NEWS.rst | 1102 - [setup.py] remove undocumented/deprecated ``extra_path`` Distutils
|
D | PKG-INFO | 1519 - [setup.py] remove undocumented/deprecated ``extra_path`` Distutils
|
/external/fonttools/Lib/fonttools.egg-info/ |
D | PKG-INFO | 1519 - [setup.py] remove undocumented/deprecated ``extra_path`` Distutils
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.6.rst | 1988 The undocumented ``extra_path`` argument to the
|
/external/python/setuptools/ |
D | CHANGES.rst | 3245 * Support ``extra_path`` option to ``setup()`` when ``install`` is run in
|