Mercurial > public > mercurial-scm > hg-stable
diff mercurial/mdiff.py @ 2470:fe1689273f84
use demandload more.
author | Vadim Gelfer <vadim.gelfer@gmail.com> |
---|---|
date | Tue, 20 Jun 2006 23:58:21 -0700 |
parents | 35fb62a3a673 |
children | a20a1bb0c396 |
line wrap: on
line diff
--- a/mercurial/mdiff.py Mon Jun 19 20:37:36 2006 +0200 +++ b/mercurial/mdiff.py Tue Jun 20 23:58:21 2006 -0700 @@ -6,8 +6,8 @@ # of the GNU General Public License, incorporated herein by reference. from demandload import demandload -import struct, bdiff, util, mpatch -demandload(globals(), "re") +import bdiff, mpatch +demandload(globals(), "re struct util") def splitnewlines(text): '''like str.splitlines, but only split on newlines.'''