diff options
| author | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | 2009-02-19 18:52:21 (GMT) |
|---|---|---|
| committer | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | 2009-02-19 18:52:21 (GMT) |
| commit | 5149742e8b3c8221d4cb53dcfc9a12ae3fec9238 (patch) | |
| tree | d3b7dbc021eeed177f453603f8f59f0ad01b2e0e /Doc/library/sqlite3.rst | |
| parent | a630735b31b5ee0a1a59b3b28299e26a7ee74d9f (diff) | |
| download | cpython-5149742e8b3c8221d4cb53dcfc9a12ae3fec9238.zip cpython-5149742e8b3c8221d4cb53dcfc9a12ae3fec9238.tar.gz cpython-5149742e8b3c8221d4cb53dcfc9a12ae3fec9238.tar.bz2 | |
Since we recommend one module per import line, reflect this also in the
documentation.
Diffstat (limited to 'Doc/library/sqlite3.rst')
| -rw-r--r-- | Doc/library/sqlite3.rst | 3 |
1 files changed, 2 insertions, 1 deletions
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 @@ Connection Objects 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: |
