# HG changeset patch # User Pierre-Yves David # Date 1357303687 -3600 # Node ID 9807e7d596c393afa140ef7801034a8a36a142b6 # Parent a55b06885cda861cf989c987beac66cf49d5b15b cmdutil: make options argument optional There is not reason to force passing of an empty options list. diff -r a55b06885cda -r 9807e7d596c3 mercurial/cmdutil.py --- a/mercurial/cmdutil.py Mon Jan 07 17:23:25 2013 +0100 +++ b/mercurial/cmdutil.py Fri Jan 04 13:48:07 2013 +0100 @@ -2014,12 +2014,12 @@ '''returns a function object bound to table which can be used as a decorator for populating table as a command table''' - def cmd(name, options, synopsis=None): + def cmd(name, options=(), synopsis=None): def decorator(func): if synopsis: - table[name] = func, options[:], synopsis + table[name] = func, list(options), synopsis else: - table[name] = func, options[:] + table[name] = func, list(options) return func return decorator