Home | History | Annotate | Download | only in test

Lines Matching refs:_dir

29         self._dir = test_support.TESTFN

30 os.mkdir(self._dir)
31 os.mkdir(os.path.join(self._dir, "cur"))
32 os.mkdir(os.path.join(self._dir, "tmp"))
33 os.mkdir(os.path.join(self._dir, "new"))
39 os.rmdir(os.path.join(self._dir, "cur"))
40 os.rmdir(os.path.join(self._dir, "tmp"))
41 os.rmdir(os.path.join(self._dir, "new"))
42 os.rmdir(self._dir)
49 tmpname = os.path.join(self._dir, "tmp", filename)
50 newname = os.path.join(self._dir, dir, filename)