This commit is contained in:
Benjamin Peterson 2011-07-03 13:48:36 -05:00
commit 7b7099c36f
3 changed files with 23 additions and 4 deletions

View file

@ -567,6 +567,21 @@ class ExceptionTests(unittest.TestCase):
del g
self.assertEqual(sys.exc_info()[0], TypeError)
def test_generator_leaking2(self):
# See issue 12475.
def g():
yield
try:
raise RuntimeError
except RuntimeError:
it = g()
next(it)
try:
next(it)
except StopIteration:
pass
self.assertEqual(sys.exc_info(), (None, None, None))
def test_generator_finalizing_and_exc_info(self):
# See #7173
def simple_gen():