mercurial/util.py
changeset 12672 9b324c5e6273
parent 12401 4cdaf1adafc8
child 12689 c52c629ce19e
--- a/mercurial/util.py	Sat Oct 09 15:13:08 2010 -0500
+++ b/mercurial/util.py	Sat Oct 09 15:13:08 2010 -0500
@@ -716,10 +716,6 @@
     except (OSError, AttributeError):
         return False
 
-def needbinarypatch():
-    """return True if patches should be applied in binary mode by default."""
-    return os.name == 'nt'
-
 def endswithsep(path):
     '''Check path ends with os.sep or os.altsep.'''
     return path.endswith(os.sep) or os.altsep and path.endswith(os.altsep)