diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-09-07 01:02:41 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-09-07 01:02:41 (GMT) |
commit | a1bc246dd5d86fc27fdcca708cf3eb2b2b803ac7 (patch) | |
tree | 99aa8d9469d419295fa0e57d01bec7179e511eed | |
parent | 5a7d923e7561d6e2bd8ad505178efa2d27ebd785 (diff) | |
download | cpython-a1bc246dd5d86fc27fdcca708cf3eb2b2b803ac7.zip cpython-a1bc246dd5d86fc27fdcca708cf3eb2b2b803ac7.tar.gz cpython-a1bc246dd5d86fc27fdcca708cf3eb2b2b803ac7.tar.bz2 |
Use shorter version of Connection.isolation_level in sqlite3.rst
-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 5b222c7..d1005b5 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 |