Lines Matching refs:path

46         destination = os.path.join(builddir, "installation")
50 dist.script_name = os.path.join(builddir, "setup.py")
53 build_lib=os.path.join(builddir, "lib"),
64 got = os.path.normpath(got)
65 expected = os.path.normpath(expected)
68 libdir = os.path.join(destination, "lib", "python")
70 platlibdir = os.path.join(destination, sys.platlibdir, "python")
74 os.path.join(destination, "include", "python", "foopkg"))
75 check_path(cmd.install_scripts, os.path.join(destination, "bin"))
85 self.user_base = os.path.join(self.tmpdir, 'B')
86 self.user_site = os.path.join(self.tmpdir, 'S')
92 def _expanduser(path):
94 self.old_expand = os.path.expanduser
95 os.path.expanduser = _expanduser
102 os.path.expanduser = self.old_expand
122 self.assertFalse(os.path.exists(self.user_base))
123 self.assertFalse(os.path.exists(self.user_site))
129 self.assertTrue(os.path.exists(self.user_base))
130 self.assertTrue(os.path.exists(self.user_site))
136 dist = Distribution({'name': 'xx', 'extra_path': 'path,dirs'})
141 self.assertEqual(cmd.extra_path, ['path', 'dirs'])
143 self.assertEqual(cmd.path_file, 'path')
146 cmd.extra_path = ['path']
148 self.assertEqual(cmd.extra_path, ['path'])
149 self.assertEqual(cmd.extra_dirs, 'path')
150 self.assertEqual(cmd.path_file, 'path')
160 cmd.extra_path = 'path,dirs,again'
195 cmd.record = os.path.join(project_dir, 'filelist')
205 found = [os.path.basename(line) for line in content.splitlines()]
230 cmd.record = os.path.join(project_dir, 'filelist')
240 found = [os.path.basename(line) for line in content.splitlines()]