| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #21858: Better handling of Python exceptions in the sqlite3 module. | Victor Stinner | 2014-06-26 | 1 | -16/+26 |
|
|
* | Issue #20437: Fixed 22 potential bugs when deleting objects references. | Serhiy Storchaka | 2014-02-09 | 1 | -6/+3 |
|\ |
|
| * | Issue #20437: Fixed 21 potential bugs when deleting objects references. | Serhiy Storchaka | 2014-02-09 | 1 | -6/+3 |
|
|
* | | Issue #19437: Fix pysqlite_cursor_iternext() of sqlite3, when the row factory | Victor Stinner | 2013-11-05 | 1 | -0/+5 |
|
|
* | | Issue #19437: Fix pysqlite_cursor_iternext() of sqlite3, handle | Victor Stinner | 2013-11-05 | 1 | -0/+6 |
|
|
* | | Issue #18701: Remove support of old CPython versions (<3.0) from C code. | Serhiy Storchaka | 2013-08-16 | 1 | -1/+0 |
|
|
* | | Issue #18408: Fix _pysqlite_fetch_one_row(), in debug mode, don't call | Victor Stinner | 2013-07-17 | 1 | -0/+5 |
|/ |
|
* | Issue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3, | Serhiy Storchaka | 2013-04-28 | 1 | -1/+1 |
|
|
* | Issue #17073: Fix some integer overflows in sqlite3 module. | Serhiy Storchaka | 2013-02-07 | 1 | -17/+3 |
|\ |
|
| * | Issue #17073: Fix some integer overflows in sqlite3 module. | Serhiy Storchaka | 2013-02-07 | 1 | -17/+3 |
|
|
| * | Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a Pr... | Petri Lehtinen | 2012-02-06 | 1 | -10/+19 |
|
|
* | | Undocument and clean up sqlite3.OptimizedUnicode | Petri Lehtinen | 2012-02-09 | 1 | -17/+3 |
|
|
* | | Merge branch 3.2 | Petri Lehtinen | 2012-02-01 | 1 | -6/+7 |
|\ \
| |/ |
|
| * | sqlite3: Handle strings with embedded zeros correctly | Petri Lehtinen | 2012-02-01 | 1 | -6/+7 |
|
|
* | | Rename _Py_identifier to _Py_IDENTIFIER. | Martin v. Löwis | 2011-10-14 | 1 | -1/+1 |
|
|
* | | Add API for static strings, primarily good for identifiers. | Martin v. Löwis | 2011-10-09 | 1 | -1/+2 |
|
|
* | | Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. | Antoine Pitrou | 2011-10-04 | 1 | -2/+2 |
|\ \
| |/ |
|
| * | Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. | Antoine Pitrou | 2011-10-04 | 1 | -2/+2 |
|
|
* | | #10811: Fix recursive usage of cursors. Instead of crashing, raise a Programm... | Gerhard Haering | 2011-05-09 | 1 | -10/+19 |
|
|
* | | Issue #8914: fix various warnings from the Clang static analyzer v254. | Brett Cannon | 2011-02-22 | 1 | -5/+3 |
|/ |
|
* | Issue #6697: Check that _PyUnicode_AsString() result is not NULL in _sqlite | Victor Stinner | 2010-05-19 | 1 | -2/+2 |
|
|
* | Merged new pysqlite version 2.6.0 from trunk. | Gerhard Häring | 2010-03-05 | 1 | -64/+64 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -1/+1 |
|
|
* | Merged revisions 66394,66404,66412,66414,66424-66436 via svnmerge from | Benjamin Peterson | 2008-09-13 | 1 | -3/+5 |
|
|
* | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 1 | -2/+2 |
|
|
* | Forward port r64930. | Alexandre Vassalotti | 2008-07-13 | 1 | -7/+5 |
|
|
* | Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,... | Georg Brandl | 2008-06-10 | 1 | -14/+10 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -4/+4 |
|
|
* | Renamed PyBytes to PyByteArray | Christian Heimes | 2008-05-26 | 1 | -3/+3 |
|
|
* | Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,... | Christian Heimes | 2008-05-04 | 1 | -1/+5 |
|
|
* | Moved DECREF to correct place to get rid of leaked references. | Gerhard Häring | 2008-03-29 | 1 | -1/+1 |
|
|
* | Bring sqlite3 module up-to-date with what's now in 2.6. Almost. I intentionally | Gerhard Häring | 2008-03-29 | 1 | -42/+84 |
|
|
* | Make sure we get usable error messages when text could not be decoded when fe... | Gerhard Häring | 2008-02-29 | 1 | -1/+15 |
|
|
* | Merged revisions 60094-60123 via svnmerge from | Christian Heimes | 2008-01-20 | 1 | -3/+3 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -1/+1 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -6/+6 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -10/+6 |
|
|
* | Make str/str8 comparisons return True/False for !=/==. | Brett Cannon | 2007-10-22 | 1 | -2/+2 |
|
|
* | Remove unused variables | Neal Norwitz | 2007-10-08 | 1 | -1/+0 |
|
|
* | Breaking ground for PEP 3137 implementation: | Guido van Rossum | 2007-10-08 | 1 | -5/+2 |
|
|
* | Straggler (forgot to save this earlier). | Guido van Rossum | 2007-08-29 | 1 | -2/+1 |
|
|
* | "Fix" a few places that were using PyObject_AsCharBuffer() to convert a string | Guido van Rossum | 2007-08-29 | 1 | -1/+3 |
|
|
* | A few sqlite files were still using RO instead of READONLY. | Guido van Rossum | 2007-08-11 | 1 | -4/+4 |
|
|
* | Make the sqlite tests pass. | Gerhard Häring | 2007-08-10 | 1 | -10/+8 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -3/+2 |
|
|
* | Shut up compiler warnings. | Guido van Rossum | 2007-06-13 | 1 | -2/+2 |
|
|
* | Use AsCharBuffer to get C strings out of Python strings. | Guido van Rossum | 2007-05-09 | 1 | -13/+4 |
|
|
* | Merged revisions 53304-53433,53435-53450 via svnmerge from | Thomas Wouters | 2007-01-15 | 1 | -104/+116 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -13/+43 |
|
|
* | Get rid of most of the flags (in tp_flags) that keep track of various | Guido van Rossum | 2006-07-27 | 1 | -1/+1 |
|
|