Commit 66503203 authored by Guido van Rossum's avatar Guido van Rossum

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

Store sys.exc_info()[:2] instead.
parent 1cb6cd0e
...@@ -16,7 +16,7 @@ def test(method, input, output, *args): ...@@ -16,7 +16,7 @@ def test(method, input, output, *args):
value = apply(f, args) value = apply(f, args)
except: except:
value = sys.exc_type value = sys.exc_type
exc = sys.exc_info() exc = sys.exc_info()[:2]
else: else:
exc = None exc = None
if value != output: if value != output:
...@@ -24,7 +24,7 @@ def test(method, input, output, *args): ...@@ -24,7 +24,7 @@ def test(method, input, output, *args):
print 'no' print 'no'
print '*',f, `input`, `output`, `value` print '*',f, `input`, `output`, `value`
if exc: if exc:
print ' value == %s: %s' % (exc[:2]) print ' value == %s: %s' % (exc)
else: else:
if verbose: if verbose:
print 'yes' print 'yes'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment