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 vstinner
Recipients Arfrever, georg.brandl, mark.dickinson, meador.inge, pitrou, python-dev, skrah, vstinner
Date 2012-08-05.23:07:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344208045.68.0.689539402599.issue13072@psf.upfronthosting.co.za>
In-reply-to
Content
Hum, this issue is a regression from Python 3.2. I would like to see it fixed in Python 3.3. Example:

Python 3.2.3+ (3.2:243ad1a6f638+, Aug  4 2012, 01:36:41) 
[GCC 4.6.3 20120306 (Red Hat 4.6.3-2)] on linux2
>>> import array
>>> a=array.array('u', 'xyz')
>>> b=memoryview(a)
>>> a == b
True
>>> b == a
True
History
Date User Action Args
2012-08-05 23:07:25vstinnersetrecipients: + vstinner, georg.brandl, mark.dickinson, pitrou, Arfrever, skrah, meador.inge, python-dev
2012-08-05 23:07:25vstinnersetmessageid: <1344208045.68.0.689539402599.issue13072@psf.upfronthosting.co.za>
2012-08-05 23:07:25vstinnerlinkissue13072 messages
2012-08-05 23:07:24vstinnercreate