diff options
author | algonell <algonell@gmail.com> | 2024-09-09 15:58:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 14:58:26 +0200 |
commit | 9017b95ff2dcff16bcb0b0a609ed2b0daa845943 (patch) | |
tree | b7585aa38d40524cd8a0244f5577e50c0ffaaf07 /Lib/test/pickletester.py | |
parent | df4f0cbfad8a1ed0146cabd30d01efd135d4d048 (diff) | |
download | cpython-9017b95ff2dcff16bcb0b0a609ed2b0daa845943.tar.gz cpython-9017b95ff2dcff16bcb0b0a609ed2b0daa845943.zip |
Fix typos (#123775)
Diffstat (limited to 'Lib/test/pickletester.py')
-rw-r--r-- | Lib/test/pickletester.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py index e2297e5dd1a..ca6dd6b8b1a 100644 --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py @@ -2192,7 +2192,7 @@ class AbstractPicklingErrorTests: @support.cpython_only def test_bad_ext_code(self): # This should never happen in normal circumstances, because the type - # and the value of the extesion code is checked in copyreg.add_extension(). + # and the value of the extension code is checked in copyreg.add_extension(). key = (__name__, 'MyList') def check(code, exc): assert key not in copyreg._extension_registry |