template:  removed special-casing for NT; there isn't an 8-character limit.
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 @@
 else:
     TMP_MAX = 10000
 
-if _os.name == 'nt':
-    template = '~t' # cater to eight-letter limit
-else:
-    template = "tmp"
+template = "tmp"
 
 tempdir = None