Patch #1668482: don't use '-' in mkstemp
diff --git a/Lib/tempfile.py b/Lib/tempfile.py
index 2e8cd6d..7809552 100644
--- a/Lib/tempfile.py
+++ b/Lib/tempfile.py
@@ -114,7 +114,7 @@
 
     characters = ("abcdefghijklmnopqrstuvwxyz" +
                   "ABCDEFGHIJKLMNOPQRSTUVWXYZ" +
-                  "0123456789-_")
+                  "0123456789_")
 
     def __init__(self):
         self.mutex = _allocate_lock()