c-jo / cpython

RISC OS port of the Python programming language
https://www.python.org/
Other
7 stars 3 forks source link

swi.block[n] doesn't accept values > 0x7fffffff #13

Closed c-jo closed 4 years ago

c-jo commented 4 years ago

b = swi.block(1) b[0] = 0x7ffffff # OK b[0] = 0x800000 # Fails

I guess something is treating the value as signed.