commit | 3b0a3293c369f3c3f4753e3cb9172cb4e242af76 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri Aug 09 16:38:32 2002 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri Aug 09 16:38:32 2002 +0000 |
tree | e0f9d295c0a2897ddfb7a5bf3b076be70f1492b4 | |
parent | 830a5151c1e2ed4d0c647efb4ad54a9a6c67e4ae [diff] [blame] |
Massive changes from SF 589982 (tempfile.py rewrite, by Zack Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones.
diff --git a/Lib/test/test_whichdb.py b/Lib/test/test_whichdb.py index 21f1588..2f1a3a2 100644 --- a/Lib/test/test_whichdb.py +++ b/Lib/test/test_whichdb.py
@@ -11,7 +11,7 @@ import tempfile import glob -_fname = tempfile.mktemp() +_fname = test.test_support.TESTFN def _delete_files(): # we don't know the precise name the underlying database uses