Lines Matching full:join

146                     path = os.path.join(path, dirname)
729 fname = os.path.join(os.environ['TEMP'], self.fname)
756 self.fname = os.path.join(self.dirname, "f1")
1039 formatted_items = ", ".join(
1048 test_env = {'PATH': os.pathsep.join(test_path)}
1287 join = os.path.join
1307 self.walk_path = join(os_helper.TESTFN, "TEST1")
1308 self.sub1_path = join(self.walk_path, "SUB1")
1309 self.sub11_path = join(self.sub1_path, "SUB11")
1310 sub2_path = join(self.walk_path, "SUB2")
1311 sub21_path = join(sub2_path, "SUB21")
1312 tmp1_path = join(self.walk_path, "tmp1")
1313 tmp2_path = join(self.sub1_path, "tmp2")
1314 tmp3_path = join(sub2_path, "tmp3")
1315 tmp5_path = join(sub21_path, "tmp3")
1316 self.link_path = join(sub2_path, "link")
1317 t2_path = join(os_helper.TESTFN, "TEST2")
1318 tmp4_path = join(os_helper.TESTFN, "TEST2", "tmp4")
1319 broken_link_path = join(sub2_path, "broken_link")
1320 broken_link2_path = join(sub2_path, "broken_link2")
1321 broken_link3_path = join(sub2_path, "broken_link3")
1336 os.symlink(join('tmp3', 'broken'), broken_link2_path, True)
1337 os.symlink(join('SUB21', 'tmp5'), broken_link3_path, True)
1438 path1 = os.path.join(root, dir1)
1439 path1new = os.path.join(root, dir1 + '.new')
1448 self.assertIn(os.path.join(root, dir2), roots)
1454 base = os.path.join(os_helper.TESTFN, 'deep')
1455 p = os.path.join(base, *(['d']*depth))
1471 p = os.path.join(p, 'd')
1581 path = os.path.join(base, 'dir1', 'dir2', 'dir3')
1583 path = os.path.join(base, 'dir1', 'dir2', 'dir3', 'dir4')
1588 path = os.path.join(base, 'dir1', 'dir2', 'dir3', 'dir4', 'dir5', os.curdir)
1590 path = os.path.join(base, 'dir1', os.curdir, 'dir2', 'dir3', 'dir4',
1601 parent = os.path.join(base, 'dir1')
1602 path = os.path.join(parent, 'dir2')
1615 path = os.path.join(os_helper.TESTFN, 'dir1')
1633 path = os.path.join(os_helper.TESTFN, 'dir1')
1661 path = os.path.join(os_helper.TESTFN, 'dir1')
1672 path = os.path.abspath(os.path.join(os_helper.TESTFN, 'dir'))
1682 path = os.path.join(os_helper.TESTFN, 'dir1', 'dir2', 'dir3',
1761 dira = os.path.join(os_helper.TESTFN, 'dira')
1763 dirb = os.path.join(dira, 'dirb')
1771 dira = os.path.join(os_helper.TESTFN, 'dira')
1773 dirb = os.path.join(dira, 'dirb')
1775 create_file(os.path.join(dira, 'file.txt'))
1782 dira = os.path.join(os_helper.TESTFN, 'dira')
1784 dirb = os.path.join(dira, 'dirb')
1786 create_file(os.path.join(dirb, 'file.txt'))
1819 code = '\n'.join((
2025 fullpath = os.path.join(os.fsencode(program_path), program)
2031 fullpath = os.path.join(program_path, program)
2274 self.file2 = os.path.join(os_helper.TESTFN + "2")
2409 os_helper.create_empty_file(os.path.join(self.bdir, fn))
2435 f = open(os.path.join(self.dir, fn), 'rb')
2444 fullname = os.path.join(self.dir, fn)
2449 os.stat(os.path.join(self.dir, fn))
2522 os.path.join(os.path.dirname(__file__),
2578 dir_path = os.path.join(os_helper.TESTFN, dir_name)
2580 file_path = os.path.join(os_helper.TESTFN, file_name)
2752 level2 = os.path.join(level1, "level2")
2753 level3 = os.path.join(level2, "level3")
2760 file1 = os.path.abspath(os.path.join(level1, "file1"))
2766 link = os.path.join(level2, "link")
2805 path = os.path.join(*[segment] * 10)
2840 aliases = [os.path.join(root, a)
3010 src = os.path.join('base', 'some_link')
3372 self.server_buffer = b''.join([x async for x in self.chunks(reader)])
4139 filename = create_file(os.path.join(self.path, "file.txt"), b'python')
4158 filename = os.path.join(path, name)
4196 self.assertEqual(entry.path, os.path.join(self.path, name))
4225 dirname = os.path.join(self.path, "dir")
4230 os.link(filename, os.path.join(self.path, "link_file.txt"))
4234 os.symlink(dirname, os.path.join(self.path, "symlink_dir"),
4236 os.symlink(filename, os.path.join(self.path, "symlink_file.txt"))
4295 self.assertEqual(os.fspath(entry), os.path.join(self.path, 'file.txt'))
4303 os.path.join(os.fsencode(self.path),bytes_filename))
4306 path = os.path.join(self.path, 'dir')
4352 os.path.join(self.path, "symlink.txt"))
4377 os.fsencode(os.path.join(self.path, 'file.txt')))
4391 os.fsencode(os.path.join(self.path, 'file.txt')))
4402 os.symlink('file.txt', os.path.join(self.path, 'link'))