summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-08-09 22:51:24 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-08-09 22:51:24 (GMT)
commit9900916df4f1fa62830be24c83369de5a1f2375c (patch)
tree0bafc5aee6a3c603081719367dd4cb996efacd84 /Lib/test
parentc751d446e7f53c439902305431c347b51ff288b0 (diff)
downloadcpython-9900916df4f1fa62830be24c83369de5a1f2375c.zip
cpython-9900916df4f1fa62830be24c83369de5a1f2375c.tar.gz
cpython-9900916df4f1fa62830be24c83369de5a1f2375c.tar.bz2
Merged revisions 83918 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83918 | antoine.pitrou | 2010-08-10 00:38:19 +0200 (mar., 10 août 2010) | 5 lines Issue #3757: thread-local objects now support cyclic garbage collection. Thread-local objects involved in reference cycles will be deallocated timely by the cyclic GC, even if the underlying thread is still running. ........
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_threading_local.py43
1 files changed, 35 insertions, 8 deletions
diff --git a/Lib/test/test_threading_local.py b/Lib/test/test_threading_local.py
index ad0f43c..35c0889 100644
--- a/Lib/test/test_threading_local.py
+++ b/Lib/test/test_threading_local.py
@@ -1,10 +1,15 @@
import unittest
from doctest import DocTestSuite
from test import test_support
-threading = test_support.import_module('threading')
import weakref
import gc
+# Modules under test
+_thread = test_support.import_module('thread')
+threading = test_support.import_module('threading')
+import _threading_local
+
+
class Weak(object):
pass
@@ -13,7 +18,7 @@ def target(local, weaklist):
local.weak = weak
weaklist.append(weakref.ref(weak))
-class ThreadingLocalTest(unittest.TestCase):
+class BaseLocalTest:
def test_local_refs(self):
self._local_refs(20)
@@ -21,7 +26,7 @@ class ThreadingLocalTest(unittest.TestCase):
self._local_refs(100)
def _local_refs(self, n):
- local = threading.local()
+ local = self._local()
weaklist = []
for i in range(n):
t = threading.Thread(target=target, args=(local, weaklist))
@@ -32,9 +37,9 @@ class ThreadingLocalTest(unittest.TestCase):
gc.collect()
self.assertEqual(len(weaklist), n)
- # XXX threading.local keeps the local of the last stopped thread alive.
+ # XXX _threading_local keeps the local of the last stopped thread alive.
deadlist = [weak for weak in weaklist if weak() is None]
- self.assertEqual(len(deadlist), n-1)
+ self.assertIn(len(deadlist), (n-1, n))
# Assignment to the same thread local frees it sometimes (!)
local.someothervar = None
@@ -48,7 +53,7 @@ class ThreadingLocalTest(unittest.TestCase):
# is created but not correctly set on the object.
# The first member set may be bogus.
import time
- class Local(threading.local):
+ class Local(self._local):
def __init__(self):
time.sleep(0.01)
local = Local()
@@ -69,7 +74,7 @@ class ThreadingLocalTest(unittest.TestCase):
def test_derived_cycle_dealloc(self):
# http://bugs.python.org/issue6990
- class Local(threading.local):
+ class Local(self._local):
pass
locals = None
passed = [False]
@@ -121,10 +126,32 @@ class ThreadingLocalTest(unittest.TestCase):
self.assertRaises(TypeError, cls, 1)
+class ThreadLocalTest(unittest.TestCase, BaseLocalTest):
+ _local = _thread._local
+
+ # Fails for the pure Python implementation
+ def test_cycle_collection(self):
+ class X:
+ pass
+
+ x = X()
+ x.local = self._local()
+ x.local.x = x
+ wr = weakref.ref(x)
+ del x
+ gc.collect()
+ self.assertIs(wr(), None)
+
+
+class PyThreadingLocalTest(unittest.TestCase, BaseLocalTest):
+ _local = _threading_local.local
+
+
def test_main():
suite = unittest.TestSuite()
suite.addTest(DocTestSuite('_threading_local'))
- suite.addTest(unittest.makeSuite(ThreadingLocalTest))
+ suite.addTest(unittest.makeSuite(ThreadLocalTest))
+ suite.addTest(unittest.makeSuite(PyThreadingLocalTest))
try:
from thread import _local