In Python 3 the map function returns a map object, not a list, which can not be serialized to json. This triggered exceptions when I run the cmonkey2 web browser. I added list() calls to fix this.
Further I fixed one issue with str / bytes types on Python 3 which triggered some exceptions as well.
In Python 3 the
map
function returns amap
object, not a list, which can not be serialized to json. This triggered exceptions when I run the cmonkey2 web browser. I addedlist()
calls to fix this.Further I fixed one issue with
str
/bytes
types on Python 3 which triggered some exceptions as well.