Mercurial > public > mercurial-scm > hg-stable
diff mercurial/copies.py @ 8312:b87a50b7125c
separate import lines from mercurial and general python modules
author | Simon Heimberg <simohe@besonet.ch> |
---|---|
date | Tue, 28 Apr 2009 17:40:46 +0200 |
parents | 46293a0c7e9f |
children | 0e73e21d81ff |
line wrap: on
line diff
--- a/mercurial/copies.py Thu May 07 15:08:25 2009 +0300 +++ b/mercurial/copies.py Tue Apr 28 17:40:46 2009 +0200 @@ -6,7 +6,8 @@ # GNU General Public License version 2, incorporated herein by reference. from i18n import _ -import util, heapq +import util +import heapq def _nonoverlap(d1, d2, d3): "Return list of elements in d1 not in d2 or d3"