diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 10:38:57 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 10:38:57 (GMT) |
commit | 9ace9648e5b6462ca267e5ee987550b37d88bf45 (patch) | |
tree | 96adea2e7152a75bdaf4ec7cb858642e1afc9010 | |
parent | 924c822f735e2dd1680e0fe97d460d3da7259bf7 (diff) | |
parent | 3c1271142d7f8d16cea85e68460d1cbdc3581d05 (diff) | |
download | cpython-9ace9648e5b6462ca267e5ee987550b37d88bf45.zip cpython-9ace9648e5b6462ca267e5ee987550b37d88bf45.tar.gz cpython-9ace9648e5b6462ca267e5ee987550b37d88bf45.tar.bz2 |
merge with 3.3
-rw-r--r-- | Doc/library/sqlite3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 529dc94..6d1f76a 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. |