summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2012-02-12 19:05:31 (GMT)
committerPetri Lehtinen <petri@digip.org>2012-02-12 19:05:31 (GMT)
commit51d04d1ba8643d8a0c89d8307bf43697223f31e2 (patch)
treec9833d6beddeab16516269de0a916e09a4b8bc0a /Misc
parent54411c1784bc404448f496e7a9bf657eaab14daf (diff)
downloadcpython-51d04d1ba8643d8a0c89d8307bf43697223f31e2.zip
cpython-51d04d1ba8643d8a0c89d8307bf43697223f31e2.tar.gz
cpython-51d04d1ba8643d8a0c89d8307bf43697223f31e2.tar.bz2
Fix sqlite3.Connection.iterdump on tables/fields with reserved names or quotes
Closes #9750
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 313aed5..f79eced 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -503,6 +503,7 @@ Lenny Kneler
Pat Knight
Greg Kochanski
Damon Kohler
+Marko Kohtala
Vlad Korolev
Joseph Koshy
Maksim Kozyarchuk
diff --git a/Misc/NEWS b/Misc/NEWS
index 73bdf82..a00331d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,10 @@ Core and Builtins
Library
-------
+- Issue #9750: Fix sqlite3.Connection.iterdump on tables and fields
+ with a name that is a keyword or contains quotes. Patch by Marko
+ Kohtala.
+
- Issue #10287: nntplib now queries the server's CAPABILITIES again after
authenticating (since the result may change, according to RFC 4643).
Patch by Hynek Schlawack.