Returns a synchronized shared object
(self, typecode_or_type, *args, lock=True)
| 130 | return RawArray(typecode_or_type, size_or_initializer) |
| 131 | |
| 132 | def Value(self, typecode_or_type, *args, lock=True): |
| 133 | '''Returns a synchronized shared object''' |
| 134 | from .sharedctypes import Value |
| 135 | return Value(typecode_or_type, *args, lock=lock, |
| 136 | ctx=self.get_context()) |
| 137 | |
| 138 | def Array(self, typecode_or_type, size_or_initializer, *, lock=True): |
| 139 | '''Returns a synchronized shared array''' |