mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +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
|
|
@ -193,10 +193,10 @@ class Hook:
|
|||
|
||||
if self.logdir is not None:
|
||||
import os, tempfile
|
||||
name = tempfile.mktemp(['.html', '.txt'][text])
|
||||
path = os.path.join(self.logdir, os.path.basename(name))
|
||||
(fd, name) = tempfile.mkstemp(suffix=['.html', '.txt'][text],
|
||||
dir=self.logdir)
|
||||
try:
|
||||
file = open(path, 'w')
|
||||
file = os.fdopen(fd, 'w')
|
||||
file.write(doc)
|
||||
file.close()
|
||||
msg = '<p> %s contains the description of this error.' % path
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue