Lines Matching full:path
31 self.sys_path = sys.path[:]
45 self.join = os.path.join
46 self.isabs = os.path.isabs
47 self.splitdrive = os.path.splitdrive
51 for var in ('MACOSX_DEPLOYMENT_TARGET', 'PATH'):
58 sys.path[:] = self.sys_path
68 os.path.join = self.join
69 os.path.isabs = self.isabs
70 os.path.splitdrive = self.splitdrive
88 path = TESTFN
89 if os.path.isfile(path):
90 os.remove(path)
91 elif os.path.isdir(path):
92 shutil.rmtree(path)
115 os.path.normpath(get_path(name, scheme)),
116 os.path.normpath(expected),
149 libpath = os.path.join('lib',
154 binpath = os.path.join(sys.prefix, binpath)
155 incpath = os.path.join(sys.prefix, incpath)
156 libpath = os.path.join(sys.prefix, libpath)
171 libpath = os.path.join('Lib', 'site-packages')
174 binpath = os.path.join(sys.prefix, binpath)
175 incpath = os.path.join(sys.prefix, incpath)
176 libpath = os.path.join(sys.prefix, libpath)
336 self.assertTrue(os.path.isfile(config_h), config_h)
373 expected = os.path.normpath(global_path.replace(base, user, 1))
447 self.assertTrue(os.path.isabs(srcdir), srcdir)
448 self.assertTrue(os.path.isdir(srcdir), srcdir)
453 Python_h = os.path.join(srcdir, 'Include', 'Python.h')
454 self.assertTrue(os.path.exists(Python_h), Python_h)
456 pyconfig_h = os.path.join(srcdir, 'PC', 'pyconfig.h')
457 self.assertTrue(os.path.exists(pyconfig_h), pyconfig_h)
458 pyconfig_h_in = os.path.join(srcdir, 'pyconfig.h.in')
459 self.assertTrue(os.path.exists(pyconfig_h_in), pyconfig_h_in)
461 makefile_dir = os.path.dirname(sysconfig.get_makefile_filename())
463 makefile_dir = os.path.realpath(makefile_dir)
513 self.assertTrue(os.path.isfile(makefile), makefile)