Get rid of memory leak caused by assingning sys.exc_info() to a local.

Store sys.exc_info()[:2] instead.
This commit is contained in:
Guido van Rossum 2000-04-28 20:39:58 +00:00
parent 1cb6cd0ec5
commit 6650320349

View file

@ -16,7 +16,7 @@ def test(method, input, output, *args):
value = apply(f, args)
except:
value = sys.exc_type
exc = sys.exc_info()
exc = sys.exc_info()[:2]
else:
exc = None
if value != output:
@ -24,7 +24,7 @@ def test(method, input, output, *args):
print 'no'
print '*',f, `input`, `output`, `value`
if exc:
print ' value == %s: %s' % (exc[:2])
print ' value == %s: %s' % (exc)
else:
if verbose:
print 'yes'