[issue15993] Windows: 3.3.0-rc2.msi: test_buffer fails

Stefan Krah report at bugs.python.org
Fri Sep 21 11:27:29 CEST 2012


Stefan Krah added the comment:

The high and low words of the 64-bit value are switched:

>>> a = array.array('Q', [1])
>>> m = memoryview(a)
>>> m[0]= 2**32+5
>>> m[0]
21474836481
>>> struct.unpack_from('8s', m, 0)
(b'\x01\x00\x00\x00\x05\x00\x00\x00',)


Can anyone reproduce this in a source build? I think this should
be a blocker.

----------
priority: critical -> release blocker

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue15993>
_______________________________________


More information about the Python-bugs-list mailing list