MCPcopy Index your code
hub / github.com/python/cpython / RawValue

Method RawValue

Lib/multiprocessing/context.py:122–125  ·  view source on GitHub ↗

Returns a shared object

(self, typecode_or_type, *args)

Source from the content-addressed store, hash-verified

120 context=self.get_context())
121
122 def RawValue(self, typecode_or_type, *args):
123 '''Returns a shared object'''
124 from .sharedctypes import RawValue
125 return RawValue(typecode_or_type, *args)
126
127 def RawArray(self, typecode_or_type, size_or_initializer):
128 '''Returns a shared array'''

Callers 3

test_valueMethod · 0.80
test_getobj_getlockMethod · 0.80
test_invalid_typecodeMethod · 0.80

Calls 1

RawValueFunction · 0.85

Tested by 3

test_valueMethod · 0.64
test_getobj_getlockMethod · 0.64
test_invalid_typecodeMethod · 0.64