diff options
author | Martin Breuss <martin-martin@users.noreply.github.com> | 2023-03-15 19:18:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-15 19:18:18 (GMT) |
commit | 00d1ef73d6799142f90d8e00f3dfcf5d86e6cad8 (patch) | |
tree | f9f93065ea1755e251bf95cfa298a38a26fa5d74 /Lib/test | |
parent | 215007b57619978243b5d5e4d0884f777e8b2715 (diff) | |
download | cpython-00d1ef73d6799142f90d8e00f3dfcf5d86e6cad8.zip cpython-00d1ef73d6799142f90d8e00f3dfcf5d86e6cad8.tar.gz cpython-00d1ef73d6799142f90d8e00f3dfcf5d86e6cad8.tar.bz2 |
Fix typo in code comment (#102726)
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_traceback.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_traceback.py b/Lib/test/test_traceback.py index 92c5a00..7ef93b3 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) |