From af9943a4906a808c8d7c2b5004ba48f32400f1d3 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 30 Aug 2015 11:14:45 -0400 Subject: Replace comment with docstring. Fixes #423 --- setuptools/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'setuptools') 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) -- cgit v1.2.1