Lines Matching refs:path
30 if os.path.isfile(TESTFN):
32 elif os.path.isdir(TESTFN):
38 self.assertTrue(os.path.isfile(config_h), config_h)
42 #self.assertTrue(os.path.isdir(lib_dir), lib_dir)
57 self.assertTrue(os.path.isabs(srcdir), srcdir)
58 self.assertTrue(os.path.isdir(srcdir), srcdir)
63 Python_h = os.path.join(srcdir, 'Include', 'Python.h')
64 self.assertTrue(os.path.exists(Python_h), Python_h)
66 pyconfig_h = os.path.join(srcdir, 'PC', 'pyconfig.h')
67 self.assertTrue(os.path.exists(pyconfig_h), pyconfig_h)
68 pyconfig_h_in = os.path.join(srcdir, 'pyconfig.h.in')
69 self.assertTrue(os.path.exists(pyconfig_h_in), pyconfig_h_in)
72 os.path.dirname(sysconfig.get_makefile_filename()),