mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Patch #1668482: don't use '-' in mkstemp
This commit is contained in:
parent
0e520b46ab
commit
9b2a109540
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ class _RandomNameSequence:
|
|||
|
||||
characters = ("abcdefghijklmnopqrstuvwxyz" +
|
||||
"ABCDEFGHIJKLMNOPQRSTUVWXYZ" +
|
||||
"0123456789-_")
|
||||
"0123456789_")
|
||||
|
||||
def __init__(self):
|
||||
self.mutex = _allocate_lock()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue