]> granicus.if.org Git - python/commitdiff
Fix SQLite datatype name: it is REAL, not FLOAT. Found by Richard Kelsall on docs@.
authorGeorg Brandl <georg@python.org>
Sun, 6 Oct 2013 10:38:44 +0000 (12:38 +0200)
committerGeorg Brandl <georg@python.org>
Sun, 6 Oct 2013 10:38:44 +0000 (12:38 +0200)
Doc/library/sqlite3.rst

index 08e3a2e0effe39f14e4a84981ac35f78af35998f..a2bd48c8fcc572d6b48bfd4c1ef074646d075a5b 100644 (file)
@@ -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.