diff options
Diffstat (limited to 'Lib/test/test_tempfile.py')
-rw-r--r-- | Lib/test/test_tempfile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py index d96aae7..fd7e9d0 100644 --- a/Lib/test/test_tempfile.py +++ b/Lib/test/test_tempfile.py @@ -268,7 +268,7 @@ class test__mkstemp_inner(TC): def __del__(self): self._close(self.fd) self._unlink(self.name) - + def do_create(self, dir=None, pre="", suf="", bin=1): if dir is None: dir = tempfile.gettempdir() @@ -485,7 +485,7 @@ class test_mkdtemp(TC): os.rmdir(self.do_create(suf="b")) os.rmdir(self.do_create(pre="a", suf="b")) os.rmdir(self.do_create(pre="aa", suf=".txt")) - + def test_basic_many(self): """mkdtemp can create many directories (stochastic)""" extant = range(1000) |