From: Georg Brandl Date: Sun, 6 Oct 2013 10:38:44 +0000 (+0200) Subject: Fix SQLite datatype name: it is REAL, not FLOAT. Found by Richard Kelsall on docs@. X-Git-Tag: v3.4.0a4~246^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3c1271142d7f8d16cea85e68460d1cbdc3581d05;p=thirdparty%2FPython%2Fcpython.git Fix SQLite datatype name: it is REAL, not FLOAT. Found by Richard Kelsall on docs@. --- diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 08e3a2e0effe..a2bd48c8fcc5 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -174,7 +174,7 @@ Module functions and constants 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.