From: Martin Breuss Date: Wed, 15 Mar 2023 19:18:18 +0000 (+0100) Subject: Fix typo in code comment (#102726) X-Git-Tag: v3.12.0a7~163 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=00d1ef73d6799142f90d8e00f3dfcf5d86e6cad8;p=thirdparty%2FPython%2Fcpython.git Fix typo in code comment (#102726) --- diff --git a/Lib/test/test_traceback.py b/Lib/test/test_traceback.py index 92c5a0005858..7ef93b3f0ac3 100644 --- a/Lib/test/test_traceback.py +++ b/Lib/test/test_traceback.py @@ -2987,7 +2987,7 @@ class SuggestionFormattingTestBase: def test_getattr_suggestions_do_not_trigger_for_big_dicts(self): class A: blech = None - # A class with a very big __dict__ will not be consider + # A class with a very big __dict__ will not be considered # for suggestions. for index in range(2000): setattr(A, f"index_{index}", None)