diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-08 01:22:31 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-08 01:22:31 (GMT) |
commit | bdcb9410c20c49928c91b065ccbd115aa450e037 (patch) | |
tree | 2d3922fdf383427b27030446e5dbc9216fc3554b /Lib/test/test_weakref.py | |
parent | bd7f76dd04780304c397323ae994092ce759d5a2 (diff) | |
download | cpython-bdcb9410c20c49928c91b065ccbd115aa450e037.zip cpython-bdcb9410c20c49928c91b065ccbd115aa450e037.tar.gz cpython-bdcb9410c20c49928c91b065ccbd115aa450e037.tar.bz2 |
SF bug #978308, Spurious errors taking bool of dead pro
Need to return -1 on error.
Needs backport.
Diffstat (limited to 'Lib/test/test_weakref.py')
-rw-r--r-- | Lib/test/test_weakref.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_weakref.py b/Lib/test/test_weakref.py index 31e2c7f..75869a7 100644 --- a/Lib/test/test_weakref.py +++ b/Lib/test/test_weakref.py @@ -104,6 +104,7 @@ class ReferencesTestCase(TestBase): self.assertRaises(weakref.ReferenceError, check, ref1) self.assertRaises(weakref.ReferenceError, check, ref2) + self.assertRaises(weakref.ReferenceError, bool, weakref.proxy(C())) self.assert_(self.cbcalled == 2) def check_basic_ref(self, factory): |