# HG changeset patch # User Martin von Zweigbergk # Date 2018-10-04 17:30:05 # Node ID a38a99c74ad4041e226df636b6cdf3521910e056 # Parent 6346e21eecc8ce0c0e7019554e481057cb78a3a3 context: drop incorrect and superfluous docstring It's been incorrect at least since 8b86acc7aa64 (context: drop support for looking up context by ambiguous changeid (API), 2018-04-28). Differential Revision: https://phab.mercurial-scm.org/D4880 diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -385,7 +385,6 @@ class changectx(basectx): changeset convenient. It represents a read-only context already present in the repo.""" def __init__(self, repo, rev, node): - """changeid is a revision number, node, or tag""" super(changectx, self).__init__(repo) self._rev = rev self._node = node