summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorCorvin <corvin@corvin.dev>2023-08-30 09:06:21 (GMT)
committerGitHub <noreply@github.com>2023-08-30 09:06:21 (GMT)
commit400a1cebc743515e40157ed7af86e48d654290ce (patch)
treee4f5f2e61c3cff4743684fd60908db34880ca10a /Misc/NEWS.d/next
parent210a5d7b8b2f5cdaf3740e8b9b468ed5ddf24591 (diff)
downloadcpython-400a1cebc743515e40157ed7af86e48d654290ce.zip
cpython-400a1cebc743515e40157ed7af86e48d654290ce.tar.gz
cpython-400a1cebc743515e40157ed7af86e48d654290ce.tar.bz2
gh-108590: Fix sqlite3.iterdump for invalid Unicode in TEXT columns (#108657)
Co-authored-by: Erlend E. Aasland <erlend@python.org>
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2023-08-29-22-53-48.gh-issue-108590.6k0pOl.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-08-29-22-53-48.gh-issue-108590.6k0pOl.rst b/Misc/NEWS.d/next/Library/2023-08-29-22-53-48.gh-issue-108590.6k0pOl.rst
new file mode 100644
index 0000000..50b41f2
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-08-29-22-53-48.gh-issue-108590.6k0pOl.rst
@@ -0,0 +1 @@
+Fixed an issue where :meth:`sqlite3.Connection.iterdump` would fail and leave an incomplete SQL dump if a table includes invalid Unicode sequences. Patch by Corvin McPherson