# HG changeset patch # User Benoit Boissinot # Date 1130545130 25200 # Node ID 1a3c6689ef2b46442f87debae53584bdbb1bf6b1 # Parent e6dd91a88b57765dd2764fa09627c552f2995aca fix a bug where hg could remove file ending with .tmp util.opener used a fixed filename for writing tempfile instead of using the tempfile module. diff -r e6dd91a88b57 -r 1a3c6689ef2b mercurial/util.py --- a/mercurial/util.py Fri Oct 28 11:03:18 2005 -0700 +++ b/mercurial/util.py Fri Oct 28 17:18:50 2005 -0700 @@ -377,8 +377,17 @@ os.makedirs(d) else: if nlink > 1: - file(f + ".tmp", "wb").write(file(f, "rb").read()) - rename(f+".tmp", f) + d, fn = os.path.split(f) + fd, temp = tempfile.mkstemp(prefix=fn, dir=d) + fp = os.fdopen(fd, "wb") + try: + fp.write(file(f, "rb").read()) + except: + try: os.unlink(temp) + except: pass + raise + fp.close() + rename(temp, f) return file(f, mode)