# HG changeset patch # User Vadim Gelfer # Date 1146721677 25200 # Node ID ee90e5a9197f21357f41a0bc12cb5c40f5b3d1fc # Parent 2be3ac7abc210595efc271c06dd261cc08c11a28# Parent fb28ce04b349f7bef70df6c9cd761691bbf59e0a merge with crew. diff -r 2be3ac7abc21 -r ee90e5a9197f mercurial/util.py --- a/mercurial/util.py Wed May 03 14:40:39 2006 -0700 +++ b/mercurial/util.py Wed May 03 22:47:57 2006 -0700 @@ -231,7 +231,7 @@ name_st = os.stat(name) except OSError: break - if os.path.samestat(name_st, root_st): + if samestat(name_st, root_st): rel.reverse() name = os.path.join(*rel) audit_path(name) @@ -561,6 +561,9 @@ makelock = _makelock_file readlock = _readlock_file + def samestat(s1, s2): + return False + def explain_exit(code): return _("exited with status %d") % code, code @@ -627,6 +630,7 @@ return path normpath = os.path.normpath + samestat = os.path.samestat def makelock(info, pathname): try: