]> granicus.if.org Git - python/commitdiff
sqlite3 documentation: Connection.iterdump() is a method
authorBerker Peksag <berker.peksag@gmail.com>
Sun, 27 Mar 2016 15:46:18 +0000 (18:46 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Sun, 27 Mar 2016 15:46:18 +0000 (18:46 +0300)
Doc/library/sqlite3.rst

index aee444b1388be5d2a2703b4836f88cf879a78931..c5a5e818edce351fbb6f9236d18de3683421d7fe 100644 (file)
@@ -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: