Mercurial > public > mercurial-scm > hg-stable
diff mercurial/util.py @ 18868:cafa447a7d3b
util: add functions to check symlink/exec bits
These are not yet used.
author | Bryan O'Sullivan <bryano@fb.com> |
---|---|
date | Wed, 03 Apr 2013 11:35:27 -0700 |
parents | 5b05ceb24a8d |
children | 451eb1c27c1b |
line wrap: on
line diff
--- a/mercurial/util.py Wed Apr 03 13:03:50 2013 -0500 +++ b/mercurial/util.py Wed Apr 03 11:35:27 2013 -0700 @@ -65,6 +65,8 @@ split = platform.split sshargs = platform.sshargs statfiles = getattr(osutil, 'statfiles', platform.statfiles) +statisexec = platform.statisexec +statislink = platform.statislink termwidth = platform.termwidth testpid = platform.testpid umask = platform.umask