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 alex
Recipients alex
Date 2011-07-22.18:35:11
SpamBayes Score 9.174957e-05
Marked as misclassified No
Message-id <1311359712.07.0.0731829142816.issue12615@psf.upfronthosting.co.za>
In-reply-to
Content
From python-ideas:

introduce array.zeroes, a new classmethod that provides an alternative constructor, its signature is zeroes(typecode, length), which allows for preallocating an array, with a lower overhead than methods such as array(typecode, [0]) * length, and is more readable (plus consistant with the numpy method of the same name).
History
Date User Action Args
2011-07-22 18:35:12alexsetrecipients: + alex
2011-07-22 18:35:12alexsetmessageid: <1311359712.07.0.0731829142816.issue12615@psf.upfronthosting.co.za>
2011-07-22 18:35:11alexlinkissue12615 messages
2011-07-22 18:35:11alexcreate