# HG changeset patch
# User Augie Fackler <raf@durin42.com>
# Date 1413400423 14400
#      Wed Oct 15 15:13:43 2014 -0400
# Node ID 77c121da614327a579b3b4e5b173da947915acf3
# Parent  3232f92360d4da06d304ea6856568c9a3ab2e6b7
checklink: always close the NamedTemporaryFile

This fixes test-patchbomb.t when using pypy with --pure.

diff --git a/mercurial/posix.py b/mercurial/posix.py
--- a/mercurial/posix.py
+++ b/mercurial/posix.py
@@ -156,9 +156,12 @@
     name = tempfile.mktemp(dir=path, prefix='hg-checklink-')
     try:
         fd = tempfile.NamedTemporaryFile(dir=path, prefix='hg-checklink-')
-        os.symlink(os.path.basename(fd.name), name)
-        os.unlink(name)
-        return True
+        try:
+            os.symlink(os.path.basename(fd.name), name)
+            os.unlink(name)
+            return True
+        finally:
+            fd.close()
     except AttributeError:
         return False
     except OSError, inst: