Submitter | phabricator |
---|---|
Date | Feb. 7, 2018, 10:41 p.m. |
Message ID | <aa417056fd7b1abf59541fd4ea5331a2@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/27438/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/wireproto.py b/mercurial/wireproto.py --- a/mercurial/wireproto.py +++ b/mercurial/wireproto.py @@ -638,7 +638,13 @@ commands = {} def wireprotocommand(name, args=''): - """decorator for wire protocol command""" + """Decorator to declare a wire protocol command. + + ``name`` is the name of the wire protocol command being provided. + + ``args`` is a space-delimited list of named arguments that the command + accepts. ``*`` is a special value that says to accept all arguments. + """ def register(func): commands[name] = (func, args) return func