summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorPhilip Jenvey <pjenvey@underboss.org>2012-11-14 22:49:49 (GMT)
committerPhilip Jenvey <pjenvey@underboss.org>2012-11-14 22:49:49 (GMT)
commit21c95ebf7f398a03102e241c5f0fc416857b2529 (patch)
tree525f613caecf9d78fd272acc28e1c2cb03095386 /Lib
parent251269ccc8e6fac7e5f8ba89359cee8e6bdd5dfb (diff)
parentb37ac8eaf610c82c792ed038508b959e1bff686e (diff)
downloadcpython-21c95ebf7f398a03102e241c5f0fc416857b2529.zip
cpython-21c95ebf7f398a03102e241c5f0fc416857b2529.tar.gz
cpython-21c95ebf7f398a03102e241c5f0fc416857b2529.tar.bz2
merge 3.2
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_exceptions.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py
index 1d897f2..1ad7f97 100644
--- a/Lib/test/test_exceptions.py
+++ b/Lib/test/test_exceptions.py
@@ -7,8 +7,9 @@ import pickle
import weakref
import errno
-from test.support import (TESTFN, unlink, run_unittest, captured_output,
- gc_collect, cpython_only, no_tracing)
+from test.support import (TESTFN, captured_output, check_impl_detail,
+ cpython_only, gc_collect, run_unittest, no_tracing,
+ unlink)
class NaiveException(Exception):
def __init__(self, x):
@@ -551,7 +552,9 @@ class ExceptionTests(unittest.TestCase):
e.__context__ = None
obj = None
obj = wr()
- gc_collect()
+ # guarantee no ref cycles on CPython (don't gc_collect)
+ if check_impl_detail(cpython=False):
+ gc_collect()
self.assertTrue(obj is None, "%s" % obj)
# Some complicated construct
@@ -568,7 +571,8 @@ class ExceptionTests(unittest.TestCase):
except MyException:
pass
obj = None
- gc_collect()
+ if check_impl_detail(cpython=False):
+ gc_collect()
obj = wr()
self.assertTrue(obj is None, "%s" % obj)
@@ -583,7 +587,8 @@ class ExceptionTests(unittest.TestCase):
with Context():
inner_raising_func()
obj = None
- gc_collect()
+ if check_impl_detail(cpython=False):
+ gc_collect()
obj = wr()
self.assertTrue(obj is None, "%s" % obj)