diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2018-04-20 20:08:45 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2018-04-20 20:08:45 (GMT) |
commit | 61f82e0e337f971da57f8f513abfe693edf95aa5 (patch) | |
tree | d783b7677df1f57618381c0b7c925a990a115444 /Lib/sqlite3 | |
parent | 0399cf9b5e370516e3d0aed6a63ff74aff5eadb5 (diff) | |
download | cpython-61f82e0e337f971da57f8f513abfe693edf95aa5.zip cpython-61f82e0e337f971da57f8f513abfe693edf95aa5.tar.gz cpython-61f82e0e337f971da57f8f513abfe693edf95aa5.tar.bz2 |
Spelling fixes to docs, docstrings, and comments (GH-6374)
Diffstat (limited to 'Lib/sqlite3')
-rw-r--r-- | Lib/sqlite3/test/dbapi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sqlite3/test/dbapi.py b/Lib/sqlite3/test/dbapi.py index 5332975..7c259d2 100644 --- a/Lib/sqlite3/test/dbapi.py +++ b/Lib/sqlite3/test/dbapi.py @@ -161,7 +161,7 @@ class ConnectionTests(unittest.TestCase): self.cx.in_transaction = True def CheckOpenWithPathLikeObject(self): - """ Checks that we can succesfully connect to a database using an object that + """ Checks that we can successfully connect to a database using an object that is PathLike, i.e. has __fspath__(). """ self.addCleanup(unlink, TESTFN) class Path: |