@@ -17,7 +17,7 @@ SQLite for internal data storage. It's also possible to prototype an
17
17
application using SQLite and then port the code to a larger database such as
18
18
PostgreSQL or Oracle.
19
19
20
- The sqlite3 module was written by Gerhard Häring. It provides a SQL interface
20
+ The sqlite3 module was written by Gerhard Häring. It provides an SQL interface
21
21
compliant with the DB-API 2.0 specification described by :pep: `249 `, and
22
22
requires SQLite 3.7.15 or newer.
23
23
@@ -373,7 +373,7 @@ Connection Objects
373
373
374
374
.. class :: Connection
375
375
376
- A SQLite database connection has the following attributes and methods:
376
+ An SQLite database connection has the following attributes and methods:
377
377
378
378
.. attribute :: isolation_level
379
379
@@ -589,7 +589,7 @@ Connection Objects
589
589
590
590
.. method :: load_extension(path)
591
591
592
- This routine loads a SQLite extension from a shared library. You have to
592
+ This routine loads an SQLite extension from a shared library. You have to
593
593
enable extension loading with :meth: `enable_load_extension ` before you can
594
594
use this routine.
595
595
@@ -665,7 +665,7 @@ Connection Objects
665
665
666
666
.. method :: backup(target, *, pages=-1, progress=None, name="main", sleep=0.250)
667
667
668
- This method makes a backup of a SQLite database even while it's being accessed
668
+ This method makes a backup of an SQLite database even while it's being accessed
669
669
by other clients, or concurrently by the same connection. The copy will be
670
670
written into the mandatory argument *target *, that must be another
671
671
:class: `Connection ` instance.
@@ -1068,7 +1068,7 @@ This is how SQLite types are converted to Python types by default:
1068
1068
+-------------+----------------------------------------------+
1069
1069
1070
1070
The type system of the :mod: `sqlite3 ` module is extensible in two ways: you can
1071
- store additional Python types in a SQLite database via object adaptation, and
1071
+ store additional Python types in an SQLite database via object adaptation, and
1072
1072
you can let the :mod: `sqlite3 ` module convert SQLite types to different Python
1073
1073
types via converters.
1074
1074
0 commit comments