Home
last modified time | relevance | path

Searched refs:RawArray (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/multiprocessing/
D__init__.py241 def RawArray(typecode_or_type, size_or_initializer): function
245 from multiprocessing.sharedctypes import RawArray
246 return RawArray(typecode_or_type, size_or_initializer)
Dsharedctypes.py81 def RawArray(typecode_or_type, size_or_initializer): function
120 obj = RawArray(typecode_or_type, size_or_initializer)
/external/python/cpython2/Lib/test/
Dtest_multiprocessing.py985 arr = self.RawArray('i', seq)
1029 raw_arr = self.RawArray('i', 10L)
1054 arr5 = self.RawArray('i', range(10))
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst1197 .. function:: RawArray(typecode_or_type, size_or_initializer)
1230 The same as :func:`RawArray` except that depending on the value of *lock* a
1287 (c_short * 7)() RawArray(c_short, 7) RawArray('h', 7)
1288 (c_int * 3)(9, 2, 8) RawArray(c_int, (9, 2, 8)) RawArray('i', (9, 2, 8))
/external/python/cpython2/Misc/
DNEWS5067 - Issue #11673: Fix multiprocessing Array and RawArray constructors to accept a