diff mercurial/filemerge.py @ 15738:e86dd8dfdea0

context: add isbinary function
author Laurens Holst <laurens.hg@grauw.nl>
date Wed, 21 Dec 2011 18:20:15 +0100
parents 2371f4aea665
children 83925d3a4559 b605448eb254
line wrap: on
line diff
--- a/mercurial/filemerge.py	Tue Dec 27 21:12:09 2011 +0100
+++ b/mercurial/filemerge.py	Wed Dec 21 18:20:15 2011 +0100
@@ -142,18 +142,12 @@
         f.close()
         return name
 
-    def isbin(ctx):
-        try:
-            return util.binary(ctx.data())
-        except IOError:
-            return False
-
     if not fco.cmp(fcd): # files identical?
         return None
 
     ui = repo.ui
     fd = fcd.path()
-    binary = isbin(fcd) or isbin(fco) or isbin(fca)
+    binary = fcd.isbinary() or fco.isbinary() or fca.isbinary()
     symlink = 'l' in fcd.flags() + fco.flags()
     tool, toolpath = _picktool(repo, ui, fd, binary, symlink)
     ui.debug("picked tool '%s' for %s (binary %s symlink %s)\n" %