diff options
Diffstat (limited to 'Lib/tempfile.py')
-rw-r--r-- | Lib/tempfile.py | 5 |
1 files changed, 1 insertions, 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 |