[Python-checkins] cpython (3.3): Fix SQLite datatype name: it is REAL, not FLOAT. Found by Richard Kelsall on

georg.brandl python-checkins at python.org
Sun Oct 6 12:38:12 CEST 2013


http://hg.python.org/cpython/rev/3bc02a63596c
changeset:   86059:3bc02a63596c
branch:      3.3
parent:      86057:b7941783b6cc
user:        Georg Brandl <georg at python.org>
date:        Sun Oct 06 12:38:44 2013 +0200
summary:
  Fix SQLite datatype name: it is REAL, not FLOAT. Found by Richard Kelsall on docs at .

files:
  Doc/library/sqlite3.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -174,7 +174,7 @@
    For the *isolation_level* parameter, please see the
    :attr:`Connection.isolation_level` property of :class:`Connection` objects.
 
-   SQLite natively supports only the types TEXT, INTEGER, FLOAT, BLOB and NULL. If
+   SQLite natively supports only the types TEXT, INTEGER, REAL, BLOB and NULL. If
    you want to use other types you must add support for them yourself. The
    *detect_types* parameter and the using custom **converters** registered with the
    module-level :func:`register_converter` function allow you to easily do that.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list