summaryrefslogtreecommitdiffstats
path: root/Lib/sqlite3
diff options
context:
space:
mode:
authorKonstantin Popov <konst.hardy@gmail.com>2021-09-15 20:09:08 (GMT)
committerGitHub <noreply@github.com>2021-09-15 20:09:08 (GMT)
commitd081eab7df176453c9834b852a579e1ada0354b2 (patch)
tree7a75e31b0b2e4401db9f9195810c001964703e31 /Lib/sqlite3
parent4b30aaa0c9dc4da956199dbd48af9c06089cb271 (diff)
downloadcpython-d081eab7df176453c9834b852a579e1ada0354b2.zip
cpython-d081eab7df176453c9834b852a579e1ada0354b2.tar.gz
cpython-d081eab7df176453c9834b852a579e1ada0354b2.tar.bz2
Fix typo in Lib/sqlite3/test/test_types.py (GH-28226)
preceeding -> preceding Co-authored-by: Ɓukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Lib/sqlite3')
-rw-r--r--Lib/sqlite3/test/test_types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sqlite3/test/test_types.py b/Lib/sqlite3/test/test_types.py
index 396f153..0cfb72c 100644
--- a/Lib/sqlite3/test/test_types.py
+++ b/Lib/sqlite3/test/test_types.py
@@ -350,7 +350,7 @@ class ColNamesTests(unittest.TestCase):
self.assertEqual(val, "<xxx>")
# Check if the stripping of colnames works. Everything after the first
- # '[' (and the preceeding space) should be stripped.
+ # '[' (and the preceding space) should be stripped.
self.assertEqual(self.cur.description[0][0], "x y")
def test_case_in_converter_name(self):