benmercs

Results 2 issues of benmercs

It seems the 'in' Python operator has non predictable behavior on Lua tables: ``` lua.execute ("aaa = { a = 12, b = 13, c = 14 }") aaa =...

bug

This simple python program will cause a heap crash: ``` import lua lg = lua.globals () lgList = [] for item in lg: lgList.append (item) ``` Running this in valgrind...

bug