summaryrefslogtreecommitdiffstats
path: root/Lib/sqlite3/test/regression.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. ↵Zackery Spytz2018-12-201-0/+4
| | | | | (GH-11175) (GH-11249) (cherry picked from commit 842acaab1376c5c84fd5966bb6070e289880e1ca)
* [2.7] bpo-34052: Prevent SQLite functions from setting callbacks on ↵Serhiy Storchaka2018-12-051-19/+65
| | | | | | | | | exceptions. (GH-8113). (GH-10946) (GH-10955) (cherry picked from commit 5b25f1d03100e2283c1b129d461ba68ac0169a14) (cherry picked from commit 1de91a0032fed500ddd3d8c4fb7a38c0b8719f67) Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>.
* bpo-31764: Prevent a crash in sqlite3.Cursor.close() in case the Cursor ↵Oren Milman2017-11-081-0/+3
| | | | object is uninitialized (GH-4333)
* bpo-31770: Prevent a crash and refleaks when calling ↵Miss Islington (bot)2017-11-071-0/+18
| | | | | sqlite3.Cursor.__init__() more than once (GH-3968) (#4302) (cherry picked from commit e56ab746a965277ffcc4396d8a0902b6e072d049)
* revert dd13098a5dc2 (#29006, #10513)Benjamin Peterson2017-01-161-0/+30
|
* revert 030e100f048a (#29006, #10513)Benjamin Peterson2017-01-121-30/+0
|
* Issue #10513: Fix a regression in Connection.commit()Berker Peksag2016-08-261-0/+30
| | | | | | Statements should not be reset after a commit. Backported from https://github.com/ghaering/pysqlite/commit/029050896b1e6058573abeef5a8970384c0c7faa
* English spelling and grammar fixesMartin Panter2016-07-111-1/+1
|
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
|
* Issue #21147: sqlite3 now raises an exception if the request contains a nullSerhiy Storchaka2014-09-111-0/+10
| | | | character instead of truncate it. Based on patch by Victor Stinner.
* Issue #20026: Fix the sqlite module to handle correctly invalid isolation levelVictor Stinner2013-12-191-0/+5
| | | | (wrong type).
* #18741: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-2/+4
|
* Issue #14720: Enhance sqlite3 microsecond conversion, document its behaviorPetri Lehtinen2013-02-261-2/+11
|
* Issue #14720: sqlite3: Convert datetime microseconds correctlyPetri Lehtinen2013-02-231-1/+18
| | | | Patch by Lowe Thiderman
* Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ↵Petri Lehtinen2012-02-061-0/+22
| | | | ProgrammingError now.
* sqlite3: Fix a segfault on calling a connection with something else than aVictor Stinner2010-03-131-7/+12
| | | | | | | | string. Initialize all attributes to be able to call the statement destructor on error. Avoid also a duplicate connection in some tests: setUp() does already open a connection (":memory:").
* Merged code from pysqlite 2.6.0.Gerhard Häring2010-03-051-10/+101
|
* Merge r73838 from py3k branch. Use the nondeprecated unittest methodGregory P. Smith2009-07-041-2/+2
| | | | names.
* #3312: fix two sqlite3 crashes.Georg Brandl2008-07-161-0/+14
|
* Made sqlite3 module's regression tests work with SQLite versions that don'tGerhard Häring2008-03-021-2/+3
| | | | support "create table if not exists", yet.
* Updated to pysqlite 2.4.1. Documentation additions will come later.Gerhard Häring2008-02-291-1/+75
|
* Merged changes from standalone version 2.3.3. This should probably all beGerhard Häring2007-01-141-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | merged into the 2.5 maintenance branch: - self->statement was not checked while fetching data, which could lead to crashes if you used the pysqlite API in unusual ways. Closing the cursor and continuing to fetch data was enough. - Converters are stored in a converters dictionary. The converter name is uppercased first. The old upper-casing algorithm was wrong and was replaced by a simple call to the Python string's upper() method instead. -Applied patch by Glyph Lefkowitz that fixes the problem with subsequent SQLITE_SCHEMA errors. - Improvement to the row type: rows can now be iterated over and have a keys() method. This improves compatibility with both tuple and dict a lot. - A bugfix for the subsecond resolution in timestamps. - Corrected the way the flags PARSE_DECLTYPES and PARSE_COLNAMES are checked for. Now they work as documented. - gcc on Linux sucks. It exports all symbols by default in shared libraries, so if symbols are not unique it can lead to problems with symbol lookup. pysqlite used to crash under Apache when mod_cache was enabled because both modules had the symbol cache_init. I fixed this by applying the prefix pysqlite_ almost everywhere. Sigh.
* Merged changes from external pysqlite 2.3.0 release. Documentation updates willGerhard Häring2006-06-131-0/+8
| | | | follow in a few hours at the latest. Then we should be ready for beta1.
* Updated the sqlite3 module to the external pysqlite 2.2.2 version.Gerhard Häring2006-04-231-1/+26
|
* Update to pysqlite 2.2.0Anthony Baxter2006-04-041-0/+48