mirror of
https://github.com/python/cpython.git
synced 2025-08-30 13:38:43 +00:00
Fix typo in code comment (#102726)
This commit is contained in:
parent
215007b576
commit
00d1ef73d6
1 changed files with 1 additions and 1 deletions
|
@ -2987,7 +2987,7 @@ class SuggestionFormattingTestBase:
|
||||||
def test_getattr_suggestions_do_not_trigger_for_big_dicts(self):
|
def test_getattr_suggestions_do_not_trigger_for_big_dicts(self):
|
||||||
class A:
|
class A:
|
||||||
blech = None
|
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 suggestions.
|
||||||
for index in range(2000):
|
for index in range(2000):
|
||||||
setattr(A, f"index_{index}", None)
|
setattr(A, f"index_{index}", None)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue