Message167522
| 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 |
|