]> granicus.if.org Git - python/commitdiff
Fix a typo in the mktemp -> mkstemp patch.
authorGuido van Rossum <guido@python.org>
Sat, 10 Aug 2002 00:17:59 +0000 (00:17 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 10 Aug 2002 00:17:59 +0000 (00:17 +0000)
Lib/plat-irix5/torgb.py
Lib/plat-irix6/torgb.py
Lib/toaiff.py

index c9fee0d9d6301450be358ce5f56ed213bc3bd587..6208289956ae17bdb8e39e41c2aa2394154546ea 100755 (executable)
@@ -92,7 +92,7 @@ def _torgb(filename, temps):
        if ftype is None or not table.has_key(ftype):
                raise error, \
                        filename + ': unsupported image file type ' + `ftype`
-       (fd, temp) = tempfile.mktemp()
+       (fd, temp) = tempfile.mkstemp()
        os.close(fd)
        sts = table[ftype].copy(fname, temp)
        if sts:
index c9fee0d9d6301450be358ce5f56ed213bc3bd587..6208289956ae17bdb8e39e41c2aa2394154546ea 100644 (file)
@@ -92,7 +92,7 @@ def _torgb(filename, temps):
        if ftype is None or not table.has_key(ftype):
                raise error, \
                        filename + ': unsupported image file type ' + `ftype`
-       (fd, temp) = tempfile.mktemp()
+       (fd, temp) = tempfile.mkstemp()
        os.close(fd)
        sts = table[ftype].copy(fname, temp)
        if sts:
index 35fbebb5df414d06745756faa0c0a5de046a8a23..51752f42336fc271a8c8f79c2d4f4d3cfc0ecd14 100644 (file)
@@ -99,7 +99,7 @@ def _toaiff(filename, temps):
     if ftype is None or not ftype in table:
         raise error, \
                 filename + ': unsupported audio file type ' + `ftype`
-    (fd, temp) = tempfile.mktemp()
+    (fd, temp) = tempfile.mkstemp()
     os.close(fd)
     temps.append(temp)
     sts = table[ftype].copy(fname, temp)