# HG changeset patch # User Phil Cohen # Date 2017-08-25 04:30:51 # Node ID 1ad3085239ad7458c05575565927107dfd58e408 # Parent fa6309c5761dbe55781df0e99c71eb30ec17ab85 simplemerge: make context parameters non-optional Also update the function docstring. Differential Revision: https://phab.mercurial-scm.org/D382 diff --git a/mercurial/simplemerge.py b/mercurial/simplemerge.py --- a/mercurial/simplemerge.py +++ b/mercurial/simplemerge.py @@ -419,13 +419,10 @@ def _picklabels(defaults, overrides): return [name_a, name_b, name_base] -def simplemerge(ui, localctx=None, basectx=None, otherctx=None, repo=None, - **opts): +def simplemerge(ui, localctx, basectx, otherctx, repo=None, **opts): """Performs the simplemerge algorithm. - {local|base|other}ctx are optional. If passed, they (local/base/other) will - be read from and the merge result written to (local). You should pass - explicit labels in this mode since the default is to use the file paths. + The merged result is written into `localctx`. """ def readctx(ctx): if not ctx: