commit | 5149742e8b3c8221d4cb53dcfc9a12ae3fec9238 | [log] [tgz] |
---|---|---|
author | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | Thu Feb 19 18:52:21 2009 +0000 |
committer | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | Thu Feb 19 18:52:21 2009 +0000 |
tree | d3b7dbc021eeed177f453603f8f59f0ad01b2e0e | |
parent | a630735b31b5ee0a1a59b3b28299e26a7ee74d9f [diff] [blame] |
Since we recommend one module per import line, reflect this also in the documentation.
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index d031c90..1a44284 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst
@@ -423,7 +423,8 @@ Example:: # Convert file existing_db.db to SQL dump file dump.sql - import sqlite3, os + import os + import sqlite3 con = sqlite3.connect('existing_db.db') with open('dump.sql', 'w') as f: