diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-08-30 11:14:45 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-08-30 11:14:45 -0400 |
commit | af9943a4906a808c8d7c2b5004ba48f32400f1d3 (patch) | |
tree | c7e307ba819a025354f92eb5981a094841b2d3aa /setuptools/__init__.py | |
parent | 4e854d1e6ffd5ee1adffd8750589b0a16517d67c (diff) | |
download | external_python_setuptools-af9943a4906a808c8d7c2b5004ba48f32400f1d3.tar.gz external_python_setuptools-af9943a4906a808c8d7c2b5004ba48f32400f1d3.tar.bz2 external_python_setuptools-af9943a4906a808c8d7c2b5004ba48f32400f1d3.zip |
Replace comment with docstring. Fixes #423
Diffstat (limited to 'setuptools/__init__.py')
-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) |