commit | b25615939663823c462c4d441f5c808a9aa38891 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Nov 10 02:16:36 2003 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Nov 10 02:16:36 2003 +0000 |
tree | c4bd2a883aff63188be62959228420fa1d957966 | |
parent | f09994e5273e358c5fc764db681bd3dafecc3e2d [diff] |
mktemp() shouldn't rely on os.path.exists(), which can return False if the file is a symlink. Instead, use os.lstat directly, if it exists; fall back on os.stat or the built-in open. Thanks to Iustin Pop.