Message77260
| Author |
gumpy |
| Recipients |
gumpy |
| Date |
2008年12月07日.21:30:15 |
| SpamBayes Score |
0.0054670614 |
| Marked as misclassified |
No |
| Message-id |
<1228685417.26.0.287726050142.issue4583@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
This is with r67651 and related to #4569, #4509 and possibly #4580.
>>> from array import array
>>> a = array('i', range(16))
>>> m = memoryview(a)
>>> a.extend(array('i', range(48)))
>>> m[:] = array('i', range(64))
Segmentation fault
>>> from array import array
>>> a = array('b', range(16))
>>> m = memoryview(a)
>>> a.extend(array('b', range(48)))
>>> m[:] = array('b', range(64))
Segmentation fault |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2008年12月07日 21:30:17 | gumpy | set | recipients:
+ gumpy |
| 2008年12月07日 21:30:17 | gumpy | set | messageid: <1228685417.26.0.287726050142.issue4583@psf.upfronthosting.co.za> |
| 2008年12月07日 21:30:16 | gumpy | link | issue4583 messages |
| 2008年12月07日 21:30:15 | gumpy | create |
|