From 557a06309c212d0218191253afe020df01133c1f Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Sun, 27 Mar 2016 18:46:18 +0300 Subject: sqlite3 documentation: Connection.iterdump() is a method --- Doc/library/sqlite3.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index aee444b..c5a5e81 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -495,7 +495,7 @@ Connection Objects deleted since the database connection was opened. - .. attribute:: iterdump + .. method:: iterdump Returns an iterator to dump the database in an SQL text format. Useful when saving an in-memory database for later restoration. This function provides @@ -505,7 +505,7 @@ Connection Objects Example:: # Convert file existing_db.db to SQL dump file dump.sql - import sqlite3, os + import sqlite3 con = sqlite3.connect('existing_db.db') with open('dump.sql', 'w') as f: -- cgit v0.12