Home | History | Annotate | Download | only in multiprocessing

Lines Matching defs:Array

46 import array
65 return array.array, (a.typecode, a.tostring())
66 ForkingPickler.register(array.array, reduce_array)
960 def Array(typecode, sequence, lock=True):
961 return array.array(typecode, sequence)
1112 SyncManager.register('Array', Array, ArrayProxy)