]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in code comment (#102726)
authorMartin Breuss <martin-martin@users.noreply.github.com>
Wed, 15 Mar 2023 19:18:18 +0000 (20:18 +0100)
committerGitHub <noreply@github.com>
Wed, 15 Mar 2023 19:18:18 +0000 (19:18 +0000)
Lib/test/test_traceback.py

index 92c5a000585855ea7a3ee3b32a8509ecd1e640e6..7ef93b3f0ac3323742ae0615edb092c97dff699a 100644 (file)
@@ -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)