Searched refs:convert_path (Results 1 – 10 of 10) sorted by relevance
/third_party/python/Lib/distutils/command/ |
D | install_data.py | 10 from distutils.util import change_root, convert_path 47 f = convert_path(f) 56 dir = convert_path(f[0]) 71 data = convert_path(data)
|
D | install.py | 16 from distutils.util import convert_path, subst_vars, change_root 510 setattr(self, attr, convert_path(getattr(self, attr))) 536 extra_dirs = convert_path(extra_dirs) 556 home = convert_path(os.path.expanduser("~"))
|
D | build_scripts.py | 10 from distutils.util import convert_path, Mixin2to3 64 script = convert_path(script)
|
D | sdist.py | 17 from distutils.util import convert_path 298 item = convert_path(item) 305 f = convert_path(f)
|
D | build_py.py | 12 from distutils.util import convert_path, Mixin2to3 55 self.package_dir[name] = convert_path(path) 128 filelist = glob.glob(os.path.join(glob.escape(src_dir), convert_path(pattern)))
|
/third_party/python/Lib/distutils/tests/ |
D | test_util.py | 10 from distutils.util import (get_platform, convert_path, change_root, 179 self.assertEqual(convert_path('/home/to/my/stuff'), 188 self.assertRaises(ValueError, convert_path, '/home/to/my/stuff') 189 self.assertRaises(ValueError, convert_path, 'home/to/my/stuff/') 191 self.assertEqual(convert_path('home/to/my/stuff'), 193 self.assertEqual(convert_path('.'),
|
/third_party/python/Lib/distutils/ |
D | filelist.py | 10 from distutils.util import convert_path 87 patterns = [convert_path(w) for w in words[1:]] 92 dir = convert_path(words[1]) 93 patterns = [convert_path(w) for w in words[2:]] 98 dir_pattern = convert_path(words[1])
|
D | util.py | 110 def convert_path (pathname): function
|
/third_party/python/patches/ |
D | cpython_mingw_v3.10.2.patch | 1263 @@ -130,6 +146,13 @@ def convert_path (pathname): 1276 # convert_path ()
|
/third_party/python/Doc/distutils/ |
D | apiref.rst | 1164 .. function:: convert_path(pathname)
|