diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-08-09 18:01:01 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-08-09 18:01:01 (GMT) |
commit | a0d55de8773559568e57cf01445eb6a9011ad5dd (patch) | |
tree | 0c25b1c852caf0271bf21cfc6fe56312cae961af /Lib/test/test_tempfile.py | |
parent | 4030714a93afacdcb4783f37320c48b4ad99da87 (diff) | |
download | cpython-a0d55de8773559568e57cf01445eb6a9011ad5dd.zip cpython-a0d55de8773559568e57cf01445eb6a9011ad5dd.tar.gz cpython-a0d55de8773559568e57cf01445eb6a9011ad5dd.tar.bz2 |
Whitespace normalization.
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) |