From: Tim Peters Date: Tue, 13 Aug 2002 23:33:56 +0000 (+0000) Subject: template: removed special-casing for NT; there isn't an 8-character limit. X-Git-Tag: v2.3c1~4493 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bd7b4c7e46ca325da91ffccc247bdedb4ba2085a;p=thirdparty%2FPython%2Fcpython.git template: removed special-casing for NT; there isn't an 8-character limit. --- diff --git a/Lib/tempfile.py b/Lib/tempfile.py index d3ec9a464450..f9d8dbc74488 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