diff options
author | Guido van Rossum <guido@python.org> | 2002-08-09 16:38:32 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-08-09 16:38:32 (GMT) |
commit | 3b0a3293c369f3c3f4753e3cb9172cb4e242af76 (patch) | |
tree | e0f9d295c0a2897ddfb7a5bf3b076be70f1492b4 /Lib/pipes.py | |
parent | 830a5151c1e2ed4d0c647efb4ad54a9a6c67e4ae (diff) | |
download | cpython-3b0a3293c369f3c3f4753e3cb9172cb4e242af76.zip cpython-3b0a3293c369f3c3f4753e3cb9172cb4e242af76.tar.gz cpython-3b0a3293c369f3c3f4753e3cb9172cb4e242af76.tar.bz2 |
Massive changes from SF 589982 (tempfile.py rewrite, by Zack
Weinberg). This changes all uses of deprecated tempfile functions to
the recommended ones.
Diffstat (limited to 'Lib/pipes.py')
-rw-r--r-- | Lib/pipes.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/pipes.py b/Lib/pipes.py index b565654..9de22e1 100644 --- a/Lib/pipes.py +++ b/Lib/pipes.py @@ -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 # |