basefilectx: move isbinary from filectx
authorSean Farley <sean.michael.farley@gmail.com>
Sun, 11 Aug 2013 22:56:30 -0500
changeset 19603 a92302f48a56
parent 19602 018ee491a6be
child 19604 ef7c47e4002f
basefilectx: move isbinary from filectx
mercurial/context.py
--- a/mercurial/context.py	Sun Aug 11 22:56:18 2013 -0500
+++ b/mercurial/context.py	Sun Aug 11 22:56:30 2013 -0500
@@ -517,6 +517,12 @@
     def path(self):
         return self._path
 
+    def isbinary(self):
+        try:
+            return util.binary(self.data())
+        except IOError:
+            return False
+
 class filectx(basefilectx):
     """A filecontext object makes access to data related to a particular
        filerevision convenient."""
@@ -577,12 +583,6 @@
     def size(self):
         return self._filelog.size(self._filerev)
 
-    def isbinary(self):
-        try:
-            return util.binary(self.data())
-        except IOError:
-            return False
-
     def cmp(self, fctx):
         """compare with other file context