From: Berker Peksag Date: Wed, 7 Sep 2016 01:02:41 +0000 (+0300) Subject: Use shorter version of Connection.isolation_level in sqlite3.rst X-Git-Tag: v3.6.0b1~373^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a1bc246dd5d86fc27fdcca708cf3eb2b2b803ac7;p=thirdparty%2FPython%2Fcpython.git Use shorter version of Connection.isolation_level in sqlite3.rst --- diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 5b222c7aba3e..d1005b55f1bc 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