Lines Matching full:path

65         xx_c = os.path.join(self.tmp_dir, 'xxmodule.c')
96 sys.path.insert(0, tmp_dir)
153 lib = os.path.join(site.USER_BASE, 'lib')
154 incl = os.path.join(site.USER_BASE, 'include')
187 # etc.) are in the include search path.
194 for p in py_include.split(os.path.pathsep):
198 for p in plat_py_include.split(os.path.pathsep):
342 c_file = os.path.join(tmp_dir, 'foo.c')
352 cmd.build_lib = os.path.join(self.tmp_dir, 'build')
353 cmd.build_temp = os.path.join(self.tmp_dir, 'tempt')
357 other_tmp_dir = os.path.realpath(self.mkdtemp())
366 self.assertTrue(os.path.exists(so_file))
369 so_dir = os.path.dirname(so_file)
376 self.assertTrue(os.path.exists(so_file))
378 so_dir = os.path.dirname(so_file)
384 path = cmd.get_ext_fullpath('foo')
386 path = os.path.split(path)[0]
387 self.assertEqual(path, cmd.build_lib)
391 other_tmp_dir = os.path.realpath(self.mkdtemp())
395 path = cmd.get_ext_fullpath('foo')
399 path = os.path.split(path)[0]
400 lastdir = os.path.split(path)[-1]
406 #etree_c = os.path.join(self.tmp_dir, 'lxml.etree.c')
415 wanted = os.path.join(curdir, 'src', 'lxml', 'etree' + ext)
416 path = cmd.get_ext_fullpath('lxml.etree')
417 self.assertEqual(wanted, path)
421 cmd.build_lib = os.path.join(curdir, 'tmpdir')
422 wanted = os.path.join(curdir, 'tmpdir', 'lxml', 'etree' + ext)
423 path = cmd.get_ext_fullpath('lxml.etree')
424 self.assertEqual(wanted, path)
430 path = cmd.get_ext_fullpath('twisted.runner.portmap')
431 wanted = os.path.join(curdir, 'tmpdir', 'twisted', 'runner',
433 self.assertEqual(wanted, path)
437 path = cmd.get_ext_fullpath('twisted.runner.portmap')
438 wanted = os.path.join(curdir, 'twisted', 'runner', 'portmap' + ext)
439 self.assertEqual(wanted, path)
480 deptarget_c = os.path.join(self.tmp_dir, 'deptargetmodule.c')