summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2022-03-12 01:10:55 (GMT)
committerGitHub <noreply@github.com>2022-03-12 01:10:55 (GMT)
commitd8ba5c102c54a5f0944638df4b6cda689faba7fa (patch)
tree930cd7ebca2f7b57b74b9ec1d8b8b67ea9bb0192 /Doc
parent28f20a6613b9d9287848bb78369b881a72941a39 (diff)
downloadcpython-d8ba5c102c54a5f0944638df4b6cda689faba7fa.zip
cpython-d8ba5c102c54a5f0944638df4b6cda689faba7fa.tar.gz
cpython-d8ba5c102c54a5f0944638df4b6cda689faba7fa.tar.bz2
[3.10] sqlite3: normalise pre-acronym determiners (GH-31772) (GH-31806)
For consistency, replace "a SQL" with "an SQL".. (cherry picked from commit 2d5835a019a46573d5b1b614c8ef88d6b564d8d4) Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/sqlite3.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 1c5d6ac..e7c191b 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -17,7 +17,7 @@ SQLite for internal data storage. It's also possible to prototype an
application using SQLite and then port the code to a larger database such as
PostgreSQL or Oracle.
-The sqlite3 module was written by Gerhard Häring. It provides a SQL interface
+The sqlite3 module was written by Gerhard Häring. It provides an SQL interface
compliant with the DB-API 2.0 specification described by :pep:`249`, and
requires SQLite 3.7.15 or newer.
@@ -337,7 +337,7 @@ Connection Objects
.. class:: Connection
- A SQLite database connection has the following attributes and methods:
+ An SQLite database connection has the following attributes and methods:
.. attribute:: isolation_level
@@ -544,7 +544,7 @@ Connection Objects
.. method:: load_extension(path)
- This routine loads a SQLite extension from a shared library. You have to
+ This routine loads an SQLite extension from a shared library. You have to
enable extension loading with :meth:`enable_load_extension` before you can
use this routine.
@@ -620,7 +620,7 @@ Connection Objects
.. method:: backup(target, *, pages=-1, progress=None, name="main", sleep=0.250)
- This method makes a backup of a SQLite database even while it's being accessed
+ This method makes a backup of an SQLite database even while it's being accessed
by other clients, or concurrently by the same connection. The copy will be
written into the mandatory argument *target*, that must be another
:class:`Connection` instance.
@@ -975,7 +975,7 @@ This is how SQLite types are converted to Python types by default:
+-------------+----------------------------------------------+
The type system of the :mod:`sqlite3` module is extensible in two ways: you can
-store additional Python types in a SQLite database via object adaptation, and
+store additional Python types in an SQLite database via object adaptation, and
you can let the :mod:`sqlite3` module convert SQLite types to different Python
types via converters.