Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #24257: Fixed incorrect uses of PyObject_IsInstance(). | Serhiy Storchaka | 2015-05-22 | 1 | -0/+8 |
|\ | | | | | | | | | Fixed segmentation fault in sqlite3.Row constructor with faked cursor type. Fixed system error in the comparison of faked types.SimpleNamespace. | ||||
| * | Issue #24257: Fixed incorrect uses of PyObject_IsInstance(). | Serhiy Storchaka | 2015-05-22 | 1 | -0/+8 |
| | | | | | | | | | | Fixed segmentation fault in sqlite3.Row constructor with faked cursor type. Fixed system error in the comparison of faked types.SimpleNamespace. | ||||
* | | Issue #13583: sqlite3.Row now supports slice indexing. | Serhiy Storchaka | 2015-03-31 | 1 | -0/+18 |
|/ | | | | Tests by Jessica McKellar. | ||||
* | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 1 | -12/+3 |
| | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. | ||||
* | Issue #21147: sqlite3 now raises an exception if the request contains a null | Serhiy Storchaka | 2014-09-11 | 1 | -0/+10 |
| | | | | character instead of truncate it. Based on patch by Victor Stinner. | ||||
* | Issue #10203: sqlite3.Row now truly supports sequence protocol. In particulr | Serhiy Storchaka | 2014-05-28 | 2 | -3/+25 |
| | | | | it supports reverse() and negative indices. Original patch by Claudiu Popa. | ||||
* | merge 3.3 (#20901) | Benjamin Peterson | 2014-03-13 | 1 | -1/+1 |
|\ | |||||
| * | weaken callback count inequality (closes #20901) | Benjamin Peterson | 2014-03-13 | 1 | -1/+1 |
| | | |||||
* | | merge 3.3 (#20080) | Benjamin Peterson | 2014-02-15 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | add missing test assertion (closes #20080) | Benjamin Peterson | 2014-02-15 | 1 | -0/+1 |
| | | | | | | | | Patch by Vajrasky Kok. | ||||
* | | (Merge 3.3) Issue #20026: Fix the sqlite module to handle correctly invalid | Victor Stinner | 2013-12-19 | 1 | -0/+5 |
|\ \ | |/ | | | | | isolation level (wrong type). | ||||
| * | Issue #20026: Fix the sqlite module to handle correctly invalid isolation level | Victor Stinner | 2013-12-19 | 1 | -0/+5 |
| | | | | | | | | (wrong type). | ||||
* | | Issue #19601: Use specific asserts in sqlite3 tests. | Serhiy Storchaka | 2013-11-16 | 2 | -30/+20 |
|\ \ | |/ | |||||
| * | Issue #19601: Use specific asserts in sqlite3 tests. | Serhiy Storchaka | 2013-11-16 | 2 | -30/+20 |
| | | |||||
* | | #18741: merge with 3.3. | Ezio Melotti | 2013-08-17 | 2 | -3/+5 |
|\ \ | |/ | |||||
| * | #18741: fix more typos. Patch by Févry Thibault. | Ezio Melotti | 2013-08-17 | 2 | -3/+5 |
| | | |||||
* | | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) | Brett Cannon | 2013-07-04 | 2 | -2/+2 |
| | | |||||
* | | Issue #18200: Update the stdlib (except tests) to use | Brett Cannon | 2013-06-14 | 2 | -2/+2 |
| | | | | | | | | ModuleNotFoundError. | ||||
* | | Issue #14720: Enhance sqlite3 microsecond conversion, document its behavior | Petri Lehtinen | 2013-02-26 | 2 | -3/+12 |
|\ \ | |/ | |||||
| * | Issue #14720: Enhance sqlite3 microsecond conversion, document its behavior | Petri Lehtinen | 2013-02-26 | 2 | -3/+12 |
| |\ | |||||
| | * | Issue #14720: Enhance sqlite3 microsecond conversion, document its behavior | Petri Lehtinen | 2013-02-26 | 2 | -3/+12 |
| | | | |||||
* | | | Issue #14720: sqlite3: Convert datetime microseconds correctly | Petri Lehtinen | 2013-02-23 | 2 | -1/+18 |
|\ \ \ | |/ / | |||||
| * | | Issue #14720: sqlite3: Convert datetime microseconds correctly | Petri Lehtinen | 2013-02-23 | 2 | -1/+18 |
| |\ \ | | |/ | |||||
| | * | Issue #14720: sqlite3: Convert datetime microseconds correctly | Petri Lehtinen | 2013-02-23 | 2 | -2/+19 |
| | | | | | | | | | | | | Patch by Lowe Thiderman | ||||
* | | | Issue #13773: sqlite3.connect() gets a new `uri` parameter to pass the ↵ | Antoine Pitrou | 2013-02-09 | 1 | -0/+18 |
|/ / | | | | | | | filename as a URI, allowing to pass custom options. | ||||
* | | Issue #17073: Fix some integer overflows in sqlite3 module. | Serhiy Storchaka | 2013-02-07 | 2 | -12/+67 |
|\ \ | |/ | |||||
| * | Issue #17073: Fix some integer overflows in sqlite3 module. | Serhiy Storchaka | 2013-02-07 | 2 | -12/+67 |
| | | |||||
* | | merge #13934: document sqlite version strings, use correct one in test. | R David Murray | 2013-01-11 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | #13934: document sqlite version strings, use correct one in test. | R David Murray | 2013-01-11 | 1 | -2/+2 |
| | | |||||
* | | merge #15545: fix sqlite3.iterdump regression on unsortable row_factory objects. | R David Murray | 2013-01-10 | 2 | -1/+23 |
|\ \ | |/ | | | | | | | | | | | | | | | The fix for issue 9750 introduced a regression by sorting the row objects returned by fetchall. But if a row_factory such as sqlite3.Row is used, the rows may not be sortable (in Python3), which leads to an exception. The sorting is still a nice idea, so the patch moves the sort into the sql. Fix and test by Peter Otten. | ||||
| * | #15545: fix sqlite3.iterdump regression on unsortable row_factory objects. | R David Murray | 2013-01-10 | 2 | -1/+23 |
| | | | | | | | | | | | | | | | | | | The fix for issue 9750 introduced a regression by sorting the row objects returned by fetchall. But if a row_factory such as sqlite3.Row is used, the rows may not be sortable (in Python3), which leads to an exception. The sorting is still a nice idea, so the patch moves the sort into the sql. Fix and test by Peter Otten. | ||||
* | | Merge branch '3.2' | Petri Lehtinen | 2012-02-21 | 1 | -0/+18 |
|\ \ | |/ | | | | | Closes #8033. | ||||
| * | sqlite3: Fix 64-bit integer handling in user functions on 32-bit architectures | Petri Lehtinen | 2012-02-21 | 1 | -0/+18 |
| | | | | | | | | Closes #8033. | ||||
* | | Merge branch '3.2' | Petri Lehtinen | 2012-02-17 | 1 | -0/+1 |
|\ \ | |/ | | | | | Closes #11689. | ||||
| * | Fix a variable scoping error in an sqlite3 test | Petri Lehtinen | 2012-02-17 | 1 | -0/+1 |
| | | | | | | | | Closes #11689. | ||||
* | | Merge branch '3.2' | Petri Lehtinen | 2012-02-12 | 2 | -22/+36 |
|\ \ | |/ | | | | | Closes #9750 | ||||
| * | Fix sqlite3.Connection.iterdump on tables/fields with reserved names or quotes | Petri Lehtinen | 2012-02-12 | 2 | -22/+36 |
| | | | | | | | | Closes #9750 | ||||
| * | Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ↵ | Petri Lehtinen | 2012-02-06 | 1 | -0/+22 |
| | | | | | | | | ProgrammingError now. | ||||
* | | Undocument and clean up sqlite3.OptimizedUnicode | Petri Lehtinen | 2012-02-09 | 1 | -0/+2 |
| | | | | | | | | Closes #13921. | ||||
* | | Make sqlite3 tests editable with Emacs | Petri Lehtinen | 2012-02-02 | 7 | -7/+7 |
| | | | | | | | | | | Change the coding declaration from ISO-8859-1 to iso-8859-1. Emacs doesn't understand the former. | ||||
* | | Merge branch 3.2 | Petri Lehtinen | 2012-02-01 | 2 | -1/+43 |
|\ \ | |/ | | | | | Closes #13676. | ||||
| * | sqlite3: Handle strings with embedded zeros correctly | Petri Lehtinen | 2012-02-01 | 2 | -1/+43 |
| | | | | | | | | Closes #13676. | ||||
* | | Issue #10811: Use TestCase.assertRaises() in the new test | Victor Stinner | 2011-05-09 | 1 | -5/+4 |
| | | |||||
* | | #10811: Fix recursive usage of cursors. Instead of crashing, raise a ↵ | Gerhard Haering | 2011-05-09 | 1 | -0/+23 |
| | | | | | | | | ProgrammingError now. | ||||
* | | Fix TraceCallbackTests to not use bound parameters (followup to issue #11688) | Antoine Pitrou | 2011-04-03 | 1 | -1/+4 |
| | | |||||
* | | Improve error message in test | Antoine Pitrou | 2011-04-03 | 1 | -1/+2 |
| | | |||||
* | | Issue #11688: Add sqlite3.Connection.set_trace_callback(). Patch by Torsten ↵ | Antoine Pitrou | 2011-04-03 | 1 | -1/+47 |
| | | | | | | | | Landschoff. | ||||
* | | Normalize the encoding names for Latin-1 and UTF-8 to | Marc-André Lemburg | 2011-02-25 | 1 | -1/+1 |
|/ | | | | | | | | | | 'latin-1' and 'utf-8'. These are optimized in the Python Unicode implementation to result in more direct processing, bypassing the codec registry. Also see issue11303. | ||||
* | #9424: Replace deprecated assert* methods in the Python test suite. | Ezio Melotti | 2010-11-20 | 2 | -2/+2 |
| | |||||
* | remove pointless coding cookies | Florent Xicluna | 2010-08-30 | 2 | -4/+2 |
| |