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/distutils/util.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/distutils/util.py')
-rw-r--r-- | Lib/distutils/util.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py index 23c29ebb2a..d9c622487c 100644 --- a/Lib/distutils/util.py +++ b/Lib/distutils/util.py @@ -359,11 +359,11 @@ def byte_compile (py_files, # "Indirect" byte-compilation: write a temporary script and then # run it with the appropriate flags. if not direct: - from tempfile import mktemp - script_name = mktemp(".py") + from tempfile import mkstemp + (script_fd, script_name) = mkstemp(".py") log.info("writing byte-compilation script '%s'", script_name) if not dry_run: - script = open(script_name, "w") + script = os.fdopen(script_fd, "w") script.write("""\ from distutils.util import byte_compile |