diff options
| -rw-r--r-- | setuptools/__init__.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py index f1798328..1f421da4 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -123,7 +123,10 @@ class Command(_Command): command_consumes_arguments = False def __init__(self, dist, **kw): - # Add support for keyword arguments + """ + Construct the command for dist, updating + vars(self) with any keyword parameters. + """ _Command.__init__(self, dist) vars(self).update(kw) |
