From bd7b4c7e46ca325da91ffccc247bdedb4ba2085a Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Tue, 13 Aug 2002 23:33:56 +0000 Subject: template: removed special-casing for NT; there isn't an 8-character limit. --- Lib/tempfile.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Lib/tempfile.py b/Lib/tempfile.py index d3ec9a4..f9d8dbc 100644 --- a/Lib/tempfile.py +++ b/Lib/tempfile.py @@ -72,10 +72,7 @@ if hasattr(_os, 'TMP_MAX'): else: TMP_MAX = 10000 -if _os.name == 'nt': - template = '~t' # cater to eight-letter limit -else: - template = "tmp" +template = "tmp" tempdir = None -- cgit v0.12