summaryrefslogtreecommitdiff
path: root/Modules/_sqlite
Commit message (Expand)AuthorAgeFilesLines
* Fix compilation warnings on Windows (GH-8627)Victor Stinner2018-08-021-1/+1
* [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)Serhiy Storchaka2018-07-311-1/+1
* [2.7] prefix internal sqlite symbols with _pysqlite_ (GH-8215). (GH-8217)Benjamin Peterson2018-07-094-18/+18
* [2.7] delete some unused pysqlite forward declarations (GH-8211). (GH-8214)Benjamin Peterson2018-07-091-4/+0
* [2.7] Fix error message in sqlite connection thread check. (GH-6028). (GH-6325)Serhiy Storchaka2018-04-011-2/+2
* bpo-31764: Prevent a crash in sqlite3.Cursor.close() in case the Cursor objec...Oren Milman2017-11-081-0/+5
* bpo-31770: Prevent a crash and refleaks when calling sqlite3.Cursor.__init__(...Miss Islington (bot)2017-11-061-8/+7
* consistently use Py_TYPE, Py_REFCNT, and correct initializer macros (#3563)Benjamin Peterson2017-09-132-2/+2
* revert dd13098a5dc2 (#29006, #10513)Benjamin Peterson2017-01-161-1/+0
* revert 030e100f048a (#29006, #10513)Benjamin Peterson2017-01-111-0/+1
* fix refleak in null-containing error case (#21147)Benjamin Peterson2016-12-031-1/+2
* Issue #28480: Avoid label at end of compound statement --without-threadsMartin Panter2016-10-201-0/+1
* Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation()Serhiy Storchaka2016-10-011-3/+5
* fix unused variable warnings in pysqlite (closes #27967)Benjamin Peterson2016-09-062-6/+2
* Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factorySerhiy Storchaka2016-08-291-2/+11
* Issue #10513: Fix a regression in Connection.commit()Berker Peksag2016-08-261-1/+0
* English spelling and grammar fixesMartin Panter2016-07-112-2/+2
* Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-102-6/+6
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-062-9/+9
* Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-271-2/+2
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-242-16/+10
* Issue #24257: Fixed segmentation fault in sqlite3.Row constructor with fakedSerhiy Storchaka2015-05-221-1/+1
* Issue #20274: When calling a _sqlite.Connection, it now complains if passedLarry Hastings2015-05-081-3/+6
* Issue #21147: sqlite3 now raises an exception if the request contains a nullSerhiy Storchaka2014-09-112-3/+7
* Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particularSerhiy Storchaka2014-08-061-11/+17
* Issue #10203: sqlite3.Row now truly supports sequence protocol. In particularSerhiy Storchaka2014-05-281-2/+24
* Issue #20437: Fixed 43 potential bugs when deleting objects references.Serhiy Storchaka2014-02-092-8/+4
* Issue #20026: Fix the sqlite module to handle correctly invalid isolation levelVictor Stinner2013-12-191-1/+4
* Issue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3,Serhiy Storchaka2013-04-283-7/+7
* Issue #17073: Fix some integer overflows in sqlite3 module.Serhiy Storchaka2013-02-075-63/+134
* Issue #14572: Prevent build failures with pre-3.5.0 versions ofNed Deily2012-05-191-2/+2
* sqlite3: Fix 64-bit integer handling in user functions on 32-bit architecturesPetri Lehtinen2012-02-211-5/+8
* Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a Pr...Petri Lehtinen2012-02-062-10/+20
* sqlite3: Handle strings with embedded zeros correctlyPetri Lehtinen2012-02-012-11/+13
* Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.Antoine Pitrou2011-10-041-2/+2
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
* Remove an unnecessary variable.Brett Cannon2010-05-051-3/+0
* sqlite3: Fix a segfault on calling a connection with something else than aVictor Stinner2010-03-131-0/+6
* Merged code from pysqlite 2.6.0.Gerhard Häring2010-03-0517-65/+323
* #5615: make it possible to configure --without-threads again.Georg Brandl2009-04-052-6/+32
* Issue #5341: Fix a variety of spelling errors.Mark Dickinson2009-02-211-1/+1
* Issue #3846: Release GIL during calls to sqlite3_prepare. This improves concu...Gerhard Häring2008-09-122-0/+6
* Fixes issue #3103. In the sqlite3 module, made one more function static. All ...Gerhard Häring2008-09-128-28/+28
* sqlite3 module: Mark iterdump() method as "Non-standard" like all the other m...Gerhard Häring2008-09-121-1/+1
* Silenced a compiler warning in the sqlite moduleChristian Heimes2008-08-221-2/+2
* #3312: fix two sqlite3 crashes.Georg Brandl2008-07-162-3/+13
* Issue #3153: sqlite leaks on error.Alexandre Vassalotti2008-07-132-23/+12
* Expand docstrings of sqlite3 functions.Georg Brandl2008-06-221-12/+52
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-097-50/+50
* Fixed rowcount for SELECT statements. They're -1 now (again), for better DB-A...Gerhard Häring2008-05-312-15/+11