micropython-lib/unix-ffi/sqlite3
Robert Klink 8d6ebf57a2 unix-ffi/sqlite3: Fix bytes to accommodate for different pointer sizes.
Currently, the bytes object used to store the sqlite3 database pointer
is always 4 bytes, which causes segfaults on 64 bit platforms with 8
byte pointers. To address this, the size is now dynamically determined
using the uctypes modules pointer size.

Signed-off-by: Robert Klink <rhermanklink@ripe.net>
2024-08-22 13:09:33 +10:00
..
manifest.py unix-ffi: Remove "unix_ffi" argument from require(). 2024-03-17 13:22:36 +11:00
sqlite3.py unix-ffi/sqlite3: Fix bytes to accommodate for different pointer sizes. 2024-08-22 13:09:33 +10:00
test_sqlite3.py all: Run black over all code. 2021-05-27 15:50:04 +10:00
test_sqlite3_2.py