Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/graphmod.py @ 7873:4a4c7f6a5912
cleanup: drop unused imports
author | Peter Arrenbrecht <peter.arrenbrecht@gmail.com> |
---|---|
date | Mon, 23 Mar 2009 13:12:07 +0100 |
parents | 5f162f61e479 |
children | 46293a0c7e9f |
comparison
equal
deleted
inserted
replaced
7872:f680a1bd679b | 7873:4a4c7f6a5912 |
---|---|
4 # Copyright 2007 Joel Rosdahl <joel@rosdahl.net> | 4 # Copyright 2007 Joel Rosdahl <joel@rosdahl.net> |
5 # | 5 # |
6 # This software may be used and distributed according to the terms of | 6 # This software may be used and distributed according to the terms of |
7 # the GNU General Public License, incorporated herein by reference. | 7 # the GNU General Public License, incorporated herein by reference. |
8 | 8 |
9 from node import nullrev, short | 9 from node import nullrev |
10 import ui, hg, util, templatefilters | |
11 | 10 |
12 def graph(repo, start_rev, stop_rev): | 11 def graph(repo, start_rev, stop_rev): |
13 """incremental revision grapher | 12 """incremental revision grapher |
14 | 13 |
15 This generator function walks through the revision history from | 14 This generator function walks through the revision history from |