]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix import/access for some identifiers. _TestSharedCTypes does not seem to be executed?
authorGeorg Brandl <georg@python.org>
Sat, 6 Feb 2010 23:33:33 +0000 (23:33 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 6 Feb 2010 23:33:33 +0000 (23:33 +0000)
Lib/test/test_multiprocessing.py

index 1f80c78e033ec6305d11a1539920ffaace16959a..24366a70698b02dcf470cfbf127c7f471f6ec88b 100644 (file)
@@ -1591,10 +1591,10 @@ class _TestSharedCTypes(BaseTestCase):
             return
 
         x = Value('i', 7, lock=lock)
-        y = Value(ctypes.c_double, 1.0/3.0, lock=lock)
+        y = Value(c_double, 1.0/3.0, lock=lock)
         foo = Value(_Foo, 3, 2, lock=lock)
-        arr = Array('d', range(10), lock=lock)
-        string = Array('c', 20, lock=lock)
+        arr = self.Array('d', range(10), lock=lock)
+        string = self.Array('c', 20, lock=lock)
         string.value = 'hello'
 
         p = self.Process(target=self._double, args=(x, y, foo, arr, string))