diff options
author | Gerhard Häring <gh@ghaering.de> | 2006-07-02 17:48:30 +0000 |
---|---|---|
committer | Gerhard Häring <gh@ghaering.de> | 2006-07-02 17:48:30 +0000 |
commit | 762fbd34858f7df608e6da8079bf648bc7d3d8cc (patch) | |
tree | e13a3f77d934422ff11bf4229032cff87b9a4b60 /Modules/_sqlite/module.h | |
parent | 6ffe499397acfe916202e3e46adfa868e6a307b9 (diff) | |
download | cpython-git-762fbd34858f7df608e6da8079bf648bc7d3d8cc.tar.gz |
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.
Diffstat (limited to 'Modules/_sqlite/module.h')
-rw-r--r-- | Modules/_sqlite/module.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_sqlite/module.h b/Modules/_sqlite/module.h index 3fdac615b3..e514bd1512 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; |