summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2012-02-12 19:03:02 (GMT)
committerPetri Lehtinen <petri@digip.org>2012-02-12 19:03:02 (GMT)
commit587209f08995e122de76b61154a8c70067778412 (patch)
treedc328567af046f00d8beb14e544965cc15361572 /Misc
parentc227965cbd77f73b4ede12bb8dcd0dd8ec939388 (diff)
downloadcpython-587209f08995e122de76b61154a8c70067778412.zip
cpython-587209f08995e122de76b61154a8c70067778412.tar.gz
cpython-587209f08995e122de76b61154a8c70067778412.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 b21e78c..c1352ea 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -457,6 +457,7 @@ Lenny Kneler
Pat Knight
Greg Kochanski
Damon Kohler
+Marko Kohtala
Joseph Koshy
Maksim Kozyarchuk
Stefan Krah
diff --git a/Misc/NEWS b/Misc/NEWS
index f311d55..00eac65 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -90,6 +90,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 #13994: Earlier partial revert of Distutils enhancements in 2.7
has left two versions of customize_compiler, the original in
distutils.sysconfig and another copy in distutils.ccompiler, with some