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 xiang.zhang
Recipients serhiy.storchaka, xiang.zhang
Date 2016-07-20.08:17:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1469002642.37.0.996165914529.issue27577@psf.upfronthosting.co.za>
In-reply-to
Content
For tuple and list, their signatures are tuple([iterable]) and list([iterable]). But actually they support keyword argument *sequence*. The parameter names in doc are sometimes just placeholders but sometimes are real parameter names. So I suggest make the implementation and doc more compliant. One method is make the parameter name in implementation *iterable*. The other is totally suppress keyword argument since it is never documented. This is not a necessary change but I think the compliment is not a bad idea.
History
Date User Action Args
2016-07-20 08:17:22xiang.zhangsetrecipients: + xiang.zhang, serhiy.storchaka
2016-07-20 08:17:22xiang.zhangsetmessageid: <1469002642.37.0.996165914529.issue27577@psf.upfronthosting.co.za>
2016-07-20 08:17:22xiang.zhanglinkissue27577 messages
2016-07-20 08:17:21xiang.zhangcreate