commit | 762fbd34858f7df608e6da8079bf648bc7d3d8cc | [log] [tgz] |
---|---|---|
author | Gerhard Häring <gh@ghaering.de> | Sun Jul 02 17:48:30 2006 +0000 |
committer | Gerhard Häring <gh@ghaering.de> | Sun Jul 02 17:48:30 2006 +0000 |
tree | e13a3f77d934422ff11bf4229032cff87b9a4b60 | |
parent | 6ffe499397acfe916202e3e46adfa868e6a307b9 [diff] [blame] |
The sqlite3 module did cut off data from the SQLite database at the first null character before sending it to a custom converter. This has been fixed now.
diff --git a/Modules/_sqlite/module.h b/Modules/_sqlite/module.h index 3fdac61..e514bd1 100644 --- a/Modules/_sqlite/module.h +++ b/Modules/_sqlite/module.h
@@ -25,7 +25,7 @@ #define PYSQLITE_MODULE_H #include "Python.h" -#define PYSQLITE_VERSION "2.3.1" +#define PYSQLITE_VERSION "2.3.2" extern PyObject* Error; extern PyObject* Warning;