mirror of https://github.com/python/cpython.git
Issue #16824: Fix a failure guard in the never reached in the normal test execution code in test_pep380.
This commit is contained in:
parent
0dc5ab41f0
commit
5da57027ef
|
@ -519,7 +519,7 @@ def g():
|
|||
next(gi)
|
||||
for x in range(3):
|
||||
y = gi.send(42)
|
||||
trace.append("Should not have yielded:", y)
|
||||
trace.append("Should not have yielded: %s" % (y,))
|
||||
except AttributeError as e:
|
||||
self.assertIn("send", e.args[0])
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue