From: Guido van Rossum Date: Fri, 28 Apr 2000 20:39:58 +0000 (+0000) Subject: Get rid of memory leak caused by assingning sys.exc_info() to a local. X-Git-Tag: v2.0b1~1899 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6650320349185a9e2f06fba56a3bd3142fb6f8d5;p=python Get rid of memory leak caused by assingning sys.exc_info() to a local. Store sys.exc_info()[:2] instead. --- diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index 94b2a4f312..45449ee67b 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -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'