Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/context.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 | a00a4db76a15 |
comparison
equal
deleted
inserted
replaced
8311:e0eb03bfa5af | 8312:b87a50b7125c |
---|---|
5 # This software may be used and distributed according to the terms of the | 5 # This software may be used and distributed according to the terms of the |
6 # GNU General Public License version 2, incorporated herein by reference. | 6 # GNU General Public License version 2, incorporated herein by reference. |
7 | 7 |
8 from node import nullid, nullrev, short, hex | 8 from node import nullid, nullrev, short, hex |
9 from i18n import _ | 9 from i18n import _ |
10 import ancestor, bdiff, error, util, os, errno | 10 import ancestor, bdiff, error, util |
11 import os, errno | |
11 | 12 |
12 propertycache = util.propertycache | 13 propertycache = util.propertycache |
13 | 14 |
14 class changectx(object): | 15 class changectx(object): |
15 """A changecontext object makes access to data related to a particular | 16 """A changecontext object makes access to data related to a particular |