This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients Ankur.Ankan, eric.snow, giampaolo.rodola, gvanrossum, nedbat, pconnell, peter.otten, rhettinger, serhiy.storchaka, terry.reedy
Date 2015-04-27.14:56:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1430146598.95.0.787098566591.issue16669@psf.upfronthosting.co.za>
In-reply-to
Content
Sorry Peter, I don't like that variant and want to stick with a separate customization step that uses **kwds so we can use normal syntax for the name value pairs and to allow that possibility of someone passing in an existing dict using NT.set_docstrings(**d).

Also FWIW, the addition can be simplified a bit when Issue 24064 is added:

        for fieldname, docstring in docstrings.items():
            getattr(cls, fieldname).__doc__ = docstring
History
Date User Action Args
2015-04-27 14:58:04rhettingerunlinkissue16669 messages
2015-04-27 14:56:39rhettingersetrecipients: + rhettinger, gvanrossum, terry.reedy, peter.otten, giampaolo.rodola, nedbat, eric.snow, serhiy.storchaka, pconnell, Ankur.Ankan
2015-04-27 14:56:38rhettingersetmessageid: <1430146598.95.0.787098566591.issue16669@psf.upfronthosting.co.za>
2015-04-27 14:56:38rhettingerlinkissue16669 messages
2015-04-27 14:56:38rhettingercreate