template: removed special-casing for NT; there isn't an 8-character limit.

This commit is contained in:
Tim Peters 2002-08-13 23:33:56 +00:00
parent 1749b252c9
commit bd7b4c7e46
1 changed files with 1 additions and 4 deletions

View File

@ -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