diff --git a/Lib/tempfile.py b/Lib/tempfile.py index d3ec9a46445..f9d8dbc7448 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