summaryrefslogtreecommitdiff
path: root/Lib/sqlite3
Commit message (Expand)AuthorAgeFilesLines
* Issue #21147: sqlite3 now raises an exception if the request contains a nullSerhiy Storchaka2014-09-111-0/+10
* Issue #10203: sqlite3.Row now truly supports sequence protocol. In particulrSerhiy Storchaka2014-05-282-3/+25
* merge 3.3 (#20901)Benjamin Peterson2014-03-121-0/+18
|\
| * merge 3.3 (#20080)Benjamin Peterson2014-02-151-0/+1
| |\
| * \ (Merge 3.3) Issue #20026: Fix the sqlite module to handle correctly invalidVictor Stinner2013-12-191-0/+5
| |\ \
| * \ \ Issue #19601: Use specific asserts in sqlite3 tests.Serhiy Storchaka2013-11-171-0/+18
| |\ \ \
| | * \ \ #18741: merge with 3.3.Ezio Melotti2013-08-172-3/+5
| | |\ \ \
| | * | | | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-042-2/+2
| | * | | | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-132-2/+2
| | * | | | Issue #14720: Enhance sqlite3 microsecond conversion, document its behaviorPetri Lehtinen2013-02-261-0/+18
| | |\ \ \ \
| | | * \ \ \ Issue #14720: sqlite3: Convert datetime microseconds correctlyPetri Lehtinen2013-02-232-1/+18
| | | |\ \ \ \
| | | * | | | | Issue #13773: sqlite3.connect() gets a new `uri` parameter to pass the filena...Antoine Pitrou2013-02-101-0/+18
* | | | | | | | weaken callback count inequality (closes #20901)Benjamin Peterson2014-03-121-1/+1
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | add missing test assertion (closes #20080)Benjamin Peterson2014-02-151-0/+1
| |_|_|_|_|/ |/| | | | |
* | | | | | Issue #20026: Fix the sqlite module to handle correctly invalid isolation levelVictor Stinner2013-12-191-0/+5
|/ / / / /
* | | | | Issue #19601: Use specific asserts in sqlite3 tests.Serhiy Storchaka2013-11-172-30/+20
| |_|_|/ |/| | |
* | | | #18741: fix more typos. Patch by F?vry Thibault.Ezio Melotti2013-08-172-3/+5
|/ / /
* | | Issue #14720: Enhance sqlite3 microsecond conversion, document its behaviorPetri Lehtinen2013-02-266-8/+60
|\ \ \ | | |/ | |/|
| * | Issue #14720: sqlite3: Convert datetime microseconds correctlyPetri Lehtinen2013-02-232-1/+18
| |\ \ | | |/ | |/|
| * | Issue #17073: Fix some integer overflows in sqlite3 module.Serhiy Storchaka2013-02-072-12/+67
| |\ \
| * \ \ merge #13934: document sqlite version strings, use correct one in test.R David Murray2013-01-101-2/+2
| |\ \ \
| * \ \ \ merge #15545: fix sqlite3.iterdump regression on unsortable row_factory objects.R David Murray2013-01-102-1/+23
| |\ \ \ \
| * \ \ \ \ Merge branch '3.2'Petri Lehtinen2012-02-217-9/+61
| |\ \ \ \ \
| | * \ \ \ \ Merge branch '3.2'Petri Lehtinen2012-02-177-9/+61
| | |\ \ \ \ \
| | | * \ \ \ \ Merge branch '3.2'Petri Lehtinen2012-02-122-22/+36
| | | |\ \ \ \ \
| | | * | | | | | Undocument and clean up sqlite3.OptimizedUnicodePetri Lehtinen2012-02-091-0/+2
| | | * | | | | | Make sqlite3 tests editable with EmacsPetri Lehtinen2012-02-027-7/+7
| | | * | | | | | Merge branch 3.2Petri Lehtinen2012-02-012-1/+43
| | | |\ \ \ \ \ \
| | | * | | | | | | Issue #10811: Use TestCase.assertRaises() in the new testVictor Stinner2011-05-091-5/+4
| | | * | | | | | | #10811: Fix recursive usage of cursors. Instead of crashing, raise a Programm...Gerhard Haering2011-05-091-0/+23
| | | * | | | | | | Fix TraceCallbackTests to not use bound parameters (followup to issue #11688)Antoine Pitrou2011-04-041-1/+4
| | | * | | | | | | Improve error message in testAntoine Pitrou2011-04-041-1/+2
| | | * | | | | | | Issue #11688: Add sqlite3.Connection.set_trace_callback(). Patch by Torsten ...Antoine Pitrou2011-04-041-1/+47
| | | * | | | | | | Normalize the encoding names for Latin-1 and UTF-8 toMarc-André Lemburg2011-02-251-1/+1
* | | | | | | | | | Issue #14720: Enhance sqlite3 microsecond conversion, document its behaviorPetri Lehtinen2013-02-262-3/+12
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | Issue #14720: sqlite3: Convert datetime microseconds correctlyPetri Lehtinen2013-02-232-2/+19
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | Issue #17073: Fix some integer overflows in sqlite3 module.Serhiy Storchaka2013-02-072-12/+67
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | #13934: document sqlite version strings, use correct one in test.R David Murray2013-01-101-2/+2
| |_|_|_|_|/ |/| | | | |
* | | | | | #15545: fix sqlite3.iterdump regression on unsortable row_factory objects.R David Murray2013-01-102-1/+23
|/ / / / /
* | | | | sqlite3: Fix 64-bit integer handling in user functions on 32-bit architecturesPetri Lehtinen2012-02-191-0/+18
|/ / / /
* | | | Fix a variable scoping error in an sqlite3 testPetri Lehtinen2012-02-171-0/+1
| |_|/ |/| |
* | | Fix sqlite3.Connection.iterdump on tables/fields with reserved names or quotesPetri Lehtinen2012-02-122-22/+36
* | | Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a Pr...Petri Lehtinen2011-05-091-0/+22
| |/ |/|
* | sqlite3: Handle strings with embedded zeros correctlyPetri Lehtinen2012-02-012-1/+43
|/
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-202-2/+2
* remove pointless coding cookiesFlorent Xicluna2010-08-302-4/+2
* #8845: expose sqlite3 inTransaction as RO in_transaction Connection attribute.R. David Murray2010-06-011-0/+23
* Merged revisions 80552-80556,80564-80566,80568-80571 via svnmerge fromVictor Stinner2010-04-281-1/+5
* Issue #8195: Fix a crash in sqlite Connection.create_collation() if theVictor Stinner2010-04-221-0/+7
* Merged revisions 78898 via svnmerge fromVictor Stinner2010-03-131-7/+12