Home
last modified time | relevance | path

Searched refs:convert_path (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Lib/distutils/command/
Dinstall_data.py10 from distutils.util import change_root, convert_path
47 f = convert_path(f)
56 dir = convert_path(f[0])
71 data = convert_path(data)
Dinstall.py16 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("~"))
Dbuild_scripts.py10 from distutils.util import convert_path, Mixin2to3
64 script = convert_path(script)
Dsdist.py17 from distutils.util import convert_path
298 item = convert_path(item)
305 f = convert_path(f)
Dbuild_py.py12 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/
Dtest_util.py10 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/
Dfilelist.py10 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])
Dutil.py110 def convert_path (pathname): function
/third_party/python/patches/
Dcpython_mingw_v3.10.2.patch1263 @@ -130,6 +146,13 @@ def convert_path (pathname):
1276 # convert_path ()
/third_party/python/Doc/distutils/
Dapiref.rst1164 .. function:: convert_path(pathname)