Message167522
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 |
|
Date |
User |
Action |
Args |
2012-08-05 23:07:25 | vstinner | set | recipients:
+ vstinner, georg.brandl, mark.dickinson, pitrou, Arfrever, skrah, meador.inge, python-dev |
2012-08-05 23:07:25 | vstinner | set | messageid: <1344208045.68.0.689539402599.issue13072@psf.upfronthosting.co.za> |
2012-08-05 23:07:25 | vstinner | link | issue13072 messages |
2012-08-05 23:07:24 | vstinner | create | |
|