mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30: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
|
|
@ -202,8 +202,8 @@ def pipeto(input, command):
|
|||
pipe.close()
|
||||
|
||||
def pipethrough(input, command, output):
|
||||
tempname = tempfile.mktemp()
|
||||
temp = open(tempname, 'w')
|
||||
(fd, tempname) = tempfile.mkstemp()
|
||||
temp = os.fdopen(fd, 'w')
|
||||
copyliteral(input, temp)
|
||||
temp.close()
|
||||
pipe = os.popen(command + ' <' + tempname, 'r')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue