Mercurial > public > mercurial-scm > python-hglib
comparison hglib/context.py @ 134:1b47146a4a2c 1.4
style: fix long lines
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Tue, 30 Sep 2014 12:48:04 -0500 |
parents | a7fe976b1931 |
children | 7ba67c1f1f92 |
comparison
equal
deleted
inserted
replaced
133:b6f601ba7f3c | 134:1b47146a4a2c |
---|---|
1 from hglib.error import CommandError | 1 from hglib.error import CommandError |
2 import client, util, templates | 2 import client, util, templates |
3 | 3 |
4 _nullcset = ['-1', '000000000000000000000000000000000000000', '', '', '', '', ''] | 4 _nullcset = ['-1', '000000000000000000000000000000000000000', '', '', |
5 '', '', ''] | |
5 | 6 |
6 class changectx(object): | 7 class changectx(object): |
7 """A changecontext object makes access to data related to a particular | 8 """A changecontext object makes access to data related to a particular |
8 changeset convenient.""" | 9 changeset convenient.""" |
9 def __init__(self, repo, changeid=''): | 10 def __init__(self, repo, changeid=''): |