summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-03-28 08:32:09 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2008-03-28 08:32:09 (GMT)
commitb9803421d231fc66489eafb45f6ae440010cacfc (patch)
treec934cab8654aef8bc092f4a70d3fddfc9e34fa51 /Misc
parent621cd262539cd6bea59bb1c3cfc35b9d37a26d98 (diff)
downloadcpython-b9803421d231fc66489eafb45f6ae440010cacfc.zip
cpython-b9803421d231fc66489eafb45f6ae440010cacfc.tar.gz
cpython-b9803421d231fc66489eafb45f6ae440010cacfc.tar.bz2
Accept patch issue2426 by Paul Kippes (kippesp).
Adds sqlite3.Connection.iterdump to allow dumping of databases.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 978b2eb..00fcff1 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -362,6 +362,7 @@ Lawrence Kesteloot
Vivek Khera
Mads Kiilerich
Taek Joo Kim
+Paul Kippes
Steve Kirsch
Ron Klatchko
Bastian Kleineidam
diff --git a/Misc/NEWS b/Misc/NEWS
index 7264dca..a998f9c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 2?
Core and builtins
-----------------
+- Patch #2426: Added sqlite3.Connection.iterdump method to allow easy dumping
+ of databases. Contributed by Paul Kippes at PyCon 2008.
+
- Patch #2477: Added from __future__ import unicode_literals.
- Added backport of bytearray type.