[Python-checkins] Fix typo in Lib/sqlite3/test/test_types.py (GH-28226)

ambv webhook-mailer at python.org
Wed Sep 15 16:09:20 EDT 2021


https://github.com/python/cpython/commit/d081eab7df176453c9834b852a579e1ada0354b2
commit: d081eab7df176453c9834b852a579e1ada0354b2
branch: main
author: Konstantin Popov <konst.hardy at gmail.com>
committer: ambv <lukasz at langa.pl>
date: 2021-09-15T22:09:08+02:00
summary:

Fix typo in Lib/sqlite3/test/test_types.py (GH-28226)

preceeding -> preceding

Co-authored-by: Łukasz Langa <lukasz at langa.pl>

files:
M Lib/sqlite3/test/test_types.py

diff --git a/Lib/sqlite3/test/test_types.py b/Lib/sqlite3/test/test_types.py
index 396f153a75f20..0cfb72c5f0999 100644
--- a/Lib/sqlite3/test/test_types.py
+++ b/Lib/sqlite3/test/test_types.py
@@ -350,7 +350,7 @@ def test_col_name(self):
         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):



More information about the Python-checkins mailing list