diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-03-29 02:40:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-29 02:40:38 (GMT) |
commit | d6d170fa80f66876f913475ff96e8c344329b218 (patch) | |
tree | cb0f351e085a02e1123157a8539f55c84f6f5846 | |
parent | d2c6a4428d52c108f4b06dcd1bb86023541c60ce (diff) | |
download | cpython-d6d170fa80f66876f913475ff96e8c344329b218.zip cpython-d6d170fa80f66876f913475ff96e8c344329b218.tar.gz cpython-d6d170fa80f66876f913475ff96e8c344329b218.tar.bz2 |
Fix typo in the sqlite3 docs (GH-31915) (GH-32158)
Co-authored-by: Jonathan <89750679+AHypnotoad@users.noreply.github.com>
(cherry picked from commit 66584c890d016e40d707400130d1cd98f2aedde9)
Co-authored-by: Jonathan <jonathan.joyner94@gmail.com>
-rw-r--r-- | Lib/sqlite3/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sqlite3/__init__.py b/Lib/sqlite3/__init__.py index 1e71745..34a9c04 100644 --- a/Lib/sqlite3/__init__.py +++ b/Lib/sqlite3/__init__.py @@ -21,7 +21,7 @@ # 3. This notice may not be removed or altered from any source distribution. """ -The sqlite3 extension module provides a DB-API 2.0 (PEP 249) compilant +The sqlite3 extension module provides a DB-API 2.0 (PEP 249) compliant interface to the SQLite library, and requires SQLite 3.7.15 or newer. To use the module, start by creating a database Connection object: |