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 loewis
Recipients loewis, ncoghlan, pfalcon, serhiy.storchaka, terry.reedy
Date 2014-04-13.15:38:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397403529.49.0.0647219024657.issue21180@psf.upfronthosting.co.za>
In-reply-to
Content
Paul: Discussion of the PEP is out of the scope of this issue. The primary point of the PEP process is that it steers discussion. So if you object to the PEP, contact the PEP author and ask for your objection to be considered, and if not that, at least be recorded.

I feel that your proposed change is highly confusing. People might expect that 

array.array('i', 3)

creates an array with the single value 3 (just as they factually do expect that for bytes). Keyword-only parameters might clear that ambiguity, e.g.

array.array('i', len=3)
array.array(type='i', len=3, value=0)

In any case, it is unlikely that anything will be done with this issue unless you provide a patch (and that still would be no guarantee that somebody accepts it).
History
Date User Action Args
2014-04-13 15:38:49loewissetrecipients: + loewis, terry.reedy, pfalcon, ncoghlan, serhiy.storchaka
2014-04-13 15:38:49loewissetmessageid: <1397403529.49.0.0647219024657.issue21180@psf.upfronthosting.co.za>
2014-04-13 15:38:49loewislinkissue21180 messages
2014-04-13 15:38:49loewiscreate