Mercurial > public > mercurial-scm > hg
comparison mercurial/context.py @ 6212:e75aab656f46
Remove unused imports
author | Joel Rosdahl <joel@rosdahl.net> |
---|---|
date | Thu, 06 Mar 2008 22:23:41 +0100 |
parents | f89fd07fc51d |
children | c0c4c7b1e8d3 |
comparison
equal
deleted
inserted
replaced
6211:f89fd07fc51d | 6212:e75aab656f46 |
---|---|
5 # This software may be used and distributed according to the terms | 5 # This software may be used and distributed according to the terms |
6 # of the GNU General Public License, incorporated herein by reference. | 6 # of the GNU General Public License, incorporated herein by reference. |
7 | 7 |
8 from node import nullid, nullrev, short | 8 from node import nullid, nullrev, short |
9 from i18n import _ | 9 from i18n import _ |
10 import ancestor, bdiff, repo, revlog, util, os, errno | 10 import ancestor, bdiff, revlog, util, os, errno |
11 | 11 |
12 class changectx(object): | 12 class changectx(object): |
13 """A changecontext object makes access to data related to a particular | 13 """A changecontext object makes access to data related to a particular |
14 changeset convenient.""" | 14 changeset convenient.""" |
15 def __init__(self, repo, changeid=None): | 15 def __init__(self, repo, changeid=None): |