You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It also fails with python's own sqlite3 module, as follows:
____________ BinaryConverterTests.test_CheckBinaryInputForConverter ____________
self = <test_types.BinaryConverterTests testMethod=test_CheckBinaryInputForConverter>
def test_CheckBinaryInputForConverter(self):
testdata = b"abcdefg" * 10
compressed = zlib.compress(testdata)
> result = self.con.execute('select ? as "x [bin]"', (compressed,)).fetchone()[0]
E ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory that can interpret 8-bit bytestrings (like text_factory = str). It is highly recommended that you instead just switch your application to Unicode strings.
src/test/test_types.py:397: ProgrammingError
This test fails with pyrqlite as follows:
It also fails with python's own sqlite3 module, as follows:
@alanjds
The text was updated successfully, but these errors were encountered: