mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Massive changes from SF 589982 (tempfile.py rewrite, by Zack
Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones.
This commit is contained in:
parent
830a5151c1
commit
3b0a3293c3
31 changed files with 134 additions and 149 deletions
|
@ -225,7 +225,8 @@ def makepipeline(infile, steps, outfile):
|
|||
lkind = list[i-1][2]
|
||||
rkind = list[i][2]
|
||||
if lkind[1] == 'f' or rkind[0] == 'f':
|
||||
temp = tempfile.mktemp()
|
||||
(fd, temp) = tempfile.mkstemp()
|
||||
os.close(fd)
|
||||
garbage.append(temp)
|
||||
list[i-1][-1] = list[i][0] = temp
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue