mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +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
|
@ -807,19 +807,19 @@ class FaqWizard:
|
|||
f.close()
|
||||
|
||||
import tempfile
|
||||
tfn = tempfile.mktemp()
|
||||
f = open(tfn, 'w')
|
||||
emit(LOGHEADER, self.ui, os.environ, date=date, _file=f)
|
||||
f.close()
|
||||
tf = tempfile.NamedTemporaryFile()
|
||||
emit(LOGHEADER, self.ui, os.environ, date=date, _file=tfn)
|
||||
tf.flush()
|
||||
tf.seek(0)
|
||||
|
||||
command = interpolate(SH_CHECKIN, file=file, tfn=tfn)
|
||||
command = interpolate(SH_CHECKIN, file=file, tfn=tf.name)
|
||||
log("\n\n" + command)
|
||||
p = os.popen(command)
|
||||
output = p.read()
|
||||
sts = p.close()
|
||||
log("output: " + output)
|
||||
log("done: " + str(sts))
|
||||
log("TempFile:\n" + open(tfn).read() + "end")
|
||||
log("TempFile:\n" + tf.read() + "end")
|
||||
|
||||
if not sts:
|
||||
self.prologue(T_COMMITTED)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue