[Python-Dev] [Python-checkins] cpython (2.7): Clean-up the SQLite introduction.

Ezio Melotti ezio.melotti at gmail.com
Wed Apr 18 05:19:50 CEST 2012


Hi,

On Tue, Apr 17, 2012 at 8:48 PM, raymond.hettinger
<python-checkins at python.org> wrote:
> http://hg.python.org/cpython/rev/d229032dc213
> changeset:   76387:d229032dc213
> branch:      2.7
> user:        Raymond Hettinger <python at rcn.com>
> date:        Tue Apr 17 22:48:06 2012 -0400
> summary:
>  Clean-up the SQLite introduction.
>
> files:
>  Doc/library/sqlite3.rst |  52 ++++++++++++++--------------
>  1 files changed, 26 insertions(+), 26 deletions(-)
>
>
> diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
> --- a/Doc/library/sqlite3.rst
> +++ b/Doc/library/sqlite3.rst
> @@ -23,7 +23,7 @@
>  :file:`/tmp/example` file::
>

The filename here should be updated too.

>    import sqlite3
> -   conn = sqlite3.connect('/tmp/example')
> +   conn = sqlite3.connect('example.db')

Best Regards,
Ezio Melotti


More information about the Python-Dev mailing list