From a1bc246dd5d86fc27fdcca708cf3eb2b2b803ac7 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Wed, 7 Sep 2016 04:02:41 +0300 Subject: [PATCH] Use shorter version of Connection.isolation_level in sqlite3.rst --- Doc/library/sqlite3.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 5b222c7aba3..d1005b55f1b 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -183,7 +183,7 @@ Module functions and constants parameter is 5.0 (five seconds). For the *isolation_level* parameter, please see the - :attr:`Connection.isolation_level` property of :class:`Connection` objects. + :attr:`~Connection.isolation_level` property of :class:`Connection` objects. 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