diff options
author | Erlend E. Aasland <erlend@python.org> | 2023-08-28 22:25:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-28 22:25:35 (GMT) |
commit | b451e9020df6414e8c51e4e0acd41f855b8742cd (patch) | |
tree | bba772e78c769ffa9e599e7bc86f62b707165bfd /Misc | |
parent | 5531d03d99c980d29915923e6c93028b4af083b1 (diff) | |
download | cpython-b451e9020df6414e8c51e4e0acd41f855b8742cd.zip cpython-b451e9020df6414e8c51e4e0acd41f855b8742cd.tar.gz cpython-b451e9020df6414e8c51e4e0acd41f855b8742cd.tar.bz2 |
[3.12] gh-64662: Fix virtual table support in sqlite3.Connection.iterdump (#108340) (#108563)
* [3.12] gh-64662: Add virtual table support to sqlite3.Connection.iterdump (#108340)
(cherry picked from commit d0160c7c22c8dff0a61c49b5304244df6e36465e)
Co-authored-by: Aviv Palivoda <palaviv@gmail.com>
* The _quote_value helper is not part of 3.12; spell out the replacement
* With quotes
* Ok, let's use explicit quoting
---------
Co-authored-by: Aviv Palivoda <palaviv@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-08-22-22-29-42.gh-issue-64662.jHl_Bt.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-08-22-22-29-42.gh-issue-64662.jHl_Bt.rst b/Misc/NEWS.d/next/Library/2023-08-22-22-29-42.gh-issue-64662.jHl_Bt.rst new file mode 100644 index 0000000..1b4c33a --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-08-22-22-29-42.gh-issue-64662.jHl_Bt.rst @@ -0,0 +1,2 @@ +Fix support for virtual tables in :meth:`sqlite3.Connection.iterdump`. Patch +by Aviv Palivoda. |