[Python-checkins] Fix typo in code comment (#102726)

AlexWaygood webhook-mailer at python.org
Wed Mar 15 15:18:26 EDT 2023


https://github.com/python/cpython/commit/00d1ef73d6799142f90d8e00f3dfcf5d86e6cad8
commit: 00d1ef73d6799142f90d8e00f3dfcf5d86e6cad8
branch: main
author: Martin Breuss <martin-martin at users.noreply.github.com>
committer: AlexWaygood <Alex.Waygood at Gmail.com>
date: 2023-03-15T19:18:18Z
summary:

Fix typo in code comment (#102726)

files:
M Lib/test/test_traceback.py

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 MyClass:
     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)



More information about the Python-checkins mailing list