mirror of
https://github.com/python/cpython.git
synced 2025-10-10 00:43:41 +00:00
template: removed special-casing for NT; there isn't an 8-character limit.
This commit is contained in:
parent
1749b252c9
commit
bd7b4c7e46
1 changed files with 1 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue