Lines Matching refs:dir_fd
12 dir_fd = None variable in GlobTests
43 self.dir_fd = os.open(self.tempdir, os.O_RDONLY | os.O_DIRECTORY)
45 self.dir_fd = None
48 if self.dir_fd is not None:
49 os.close(self.dir_fd)
88 if self.dir_fd is not None:
90 glob.glob(pattern, dir_fd=self.dir_fd, **kwargs), res2)
92 glob.iglob(pattern, dir_fd=self.dir_fd, **kwargs), res2)
94 glob.glob(bpattern, dir_fd=self.dir_fd, **kwargs), bres2)
96 glob.iglob(bpattern, dir_fd=self.dir_fd, **kwargs), bres2)
128 self.assertEqual(glob.glob('', dir_fd=self.dir_fd), [])
129 self.assertEqual(glob.glob(b'', dir_fd=self.dir_fd), [])