Home | History | Annotate | Download | only in test

Lines Matching refs:_dir

1929         self._dir = test_support.TESTFN
1930 if os.path.isdir(self._dir):
1931 test_support.rmtree(self._dir)
1932 if os.path.isfile(self._dir):
1933 test_support.unlink(self._dir)
1934 os.mkdir(self._dir)
1935 os.mkdir(os.path.join(self._dir, "cur"))
1936 os.mkdir(os.path.join(self._dir, "tmp"))
1937 os.mkdir(os.path.join(self._dir, "new"))
1943 test_support.rmdir(os.path.join(self._dir, "cur"))
1944 test_support.rmdir(os.path.join(self._dir, "tmp"))
1945 test_support.rmdir(os.path.join(self._dir, "new"))
1946 test_support.rmdir(self._dir)
1953 tmpname = os.path.join(self._dir, "tmp", filename)
1954 newname = os.path.join(self._dir, dir, filename)