aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_dictcomps.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_dictcomps.py')
-rw-r--r--Lib/test/test_dictcomps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_dictcomps.py b/Lib/test/test_dictcomps.py
index 26b56dac503..a7a46216787 100644
--- a/Lib/test/test_dictcomps.py
+++ b/Lib/test/test_dictcomps.py
@@ -132,7 +132,7 @@ class DictComprehensionTest(unittest.TestCase):
def test_exception_locations(self):
# The location of an exception raised from __init__ or
- # __next__ should should be the iterator expression
+ # __next__ should be the iterator expression
def init_raises():
try:
{x:x for x in BrokenIter(init_raises=True)}