# HG changeset patch # User Siddharth Agarwal # Date 1427873936 25200 # Node ID 98744856b7d3f0831ac4fe91c3c5fceb7edfdcf8 # Parent ce8dd4fd2d5dac8b0d3eb78bb79d869a2e11f98e util: add normcase spec and fallback These will be used in upcoming patches to efficiently create a dirstate foldmap. diff -r ce8dd4fd2d5d -r 98744856b7d3 mercurial/util.py --- a/mercurial/util.py Fri Apr 03 22:44:25 2015 +0200 +++ b/mercurial/util.py Wed Apr 01 00:38:56 2015 -0700 @@ -48,6 +48,8 @@ nlinks = platform.nlinks normpath = platform.normpath normcase = platform.normcase +normcasespec = platform.normcasespec +normcasefallback = platform.normcasefallback openhardlinks = platform.openhardlinks oslink = platform.oslink parsepatchoutput = platform.parsepatchoutput