diff options
| author | Guido van Rossum <guido@python.org> | 2002-08-09 16:38:32 +0000 | 
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2002-08-09 16:38:32 +0000 | 
| commit | 3b0a3293c369f3c3f4753e3cb9172cb4e242af76 (patch) | |
| tree | e0f9d295c0a2897ddfb7a5bf3b076be70f1492b4 /Lib/toaiff.py | |
| parent | 830a5151c1e2ed4d0c647efb4ad54a9a6c67e4ae (diff) | |
| download | cpython-git-3b0a3293c369f3c3f4753e3cb9172cb4e242af76.tar.gz | |
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/toaiff.py')
| -rw-r--r-- | Lib/toaiff.py | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/toaiff.py b/Lib/toaiff.py index cf0bfc8c86..35fbebb5df 100644 --- a/Lib/toaiff.py +++ b/Lib/toaiff.py @@ -75,7 +75,8 @@ def toaiff(filename):  def _toaiff(filename, temps):      if filename[-2:] == '.Z': -        fname = tempfile.mktemp() +        (fd, fname) = tempfile.mkstemp() +        os.close(fd)          temps.append(fname)          sts = uncompress.copy(filename, fname)          if sts: @@ -98,7 +99,8 @@ def _toaiff(filename, temps):      if ftype is None or not ftype in table:          raise error, \                  filename + ': unsupported audio file type ' + `ftype` -    temp = tempfile.mktemp() +    (fd, temp) = tempfile.mktemp() +    os.close(fd)      temps.append(temp)      sts = table[ftype].copy(fname, temp)      if sts:  | 
