Nice library. Did find a problem with it while using it on a 64-bit system. The construct
a = array.array("L", string)
is used often and doesn't work on 64-bit system where for some reason the above eats chunks of 8-bytes. Replacing all the occurrences with array.array("I", string) fixes the issue.
Small bug
Hoi,
Nice library. Did find a problem with it while using it on a 64-bit system. The construct
a = array.array("L", string)
is used often and doesn't work on 64-bit system where for some reason the above eats chunks of 8-bytes. Replacing all the occurrences with array.array("I", string) fixes the issue.
Works perfectly otherwise.