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 georg.brandl
Recipients Jonathan Booth, docs@python, georg.brandl, random832
Date 2016-04-22.05:08:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1461301736.42.0.0901839317311.issue26821@psf.upfronthosting.co.za>
In-reply-to
Content
Indeed, I don't think the `array` module is much used anymore.

If you're looking to serialize or deserialize fixed-size formats, you'll probably want the `struct` module.  It has both native and fixed-size modes.

For anything else involving arrays (mostly, but not exclusively, of numbers), just use numpy.  It has a much more developed system of data types for its arrays, and supports views.
History
Date User Action Args
2016-04-22 05:08:56georg.brandlsetrecipients: + georg.brandl, docs@python, random832, Jonathan Booth
2016-04-22 05:08:56georg.brandlsetmessageid: <1461301736.42.0.0901839317311.issue26821@psf.upfronthosting.co.za>
2016-04-22 05:08:56georg.brandllinkissue26821 messages
2016-04-22 05:08:56georg.brandlcreate