sprhawk / python-on-a-chip

Automatically exported from code.google.com/p/python-on-a-chip
Other
0 stars 0 forks source link

Remove bytearray from desktop platform #96

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
With bytearray enabled on the desktop platform and its class defined in the 
builtins, __bi.py, there is insufficient RAM and the following system tests 
fail: t207, t233, t289, t291.  Even if HAVE_BYTEARRAY is undefined and the 
bytearray class is defined, the system tests still fail.

So, bytearrays are disabled for the desktop build until [r10 | The Big Rewrite] 
when code objects do not consume RAM.

Original issue reported on code.google.com by dwhall...@gmail.com on 14 Jul 2010 at 6:56

GoogleCodeExporter commented 9 years ago
r519
Removed bytearray class from src/lib/__bi.py.
Undefined HAVE_BYTEARRAY in all platform/*/pmfeatures.h
Set HAVE_BYTEARRAY to False in src/tools/pmImgCreator.py
Renamed src/tests/system/t289.c so it won't be run as a system test

All system tests pass.  Mainlined directly.

Original comment by dwhall...@gmail.com on 14 Jul 2010 at 8:31

GoogleCodeExporter commented 9 years ago

Original comment by dwhall...@gmail.com on 26 Jul 2010 at 3:10