diff options
author | Jonathan <jonathan.joyner94@gmail.com> | 2022-03-28 18:44:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-28 18:44:41 (GMT) |
commit | 66584c890d016e40d707400130d1cd98f2aedde9 (patch) | |
tree | 5dac190f43bcd632e0d81a0f0810dcbe4800ee1a /Lib/sqlite3 | |
parent | 850687df47b03e98c1433e6e70e71a8921eb4454 (diff) | |
download | cpython-66584c890d016e40d707400130d1cd98f2aedde9.zip cpython-66584c890d016e40d707400130d1cd98f2aedde9.tar.gz cpython-66584c890d016e40d707400130d1cd98f2aedde9.tar.bz2 |
Fix typo in the sqlite3 docs (GH-31915)
Co-authored-by: Jonathan <89750679+AHypnotoad@users.noreply.github.com>
Diffstat (limited to 'Lib/sqlite3')
-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 0dedf18..5a2dbd3 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: |