mirror of
https://github.com/python/cpython.git
synced 2025-10-22 14:42:22 +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:
|
else:
|
||||||
TMP_MAX = 10000
|
TMP_MAX = 10000
|
||||||
|
|
||||||
if _os.name == 'nt':
|
template = "tmp"
|
||||||
template = '~t' # cater to eight-letter limit
|
|
||||||
else:
|
|
||||||
template = "tmp"
|
|
||||||
|
|
||||||
tempdir = None
|
tempdir = None
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue