Commit 55b1592d authored by Tim Peters's avatar Tim Peters

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

parent 11313a57
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment