Kaydet (Commit) d5cd65b7 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

make multiprocessing.sharedctypes.Value's lock argument a keyword-only argument for real

üst ce279a72
......@@ -62,13 +62,10 @@ def RawArray(typecode_or_type, size_or_initializer):
result.__init__(*size_or_initializer)
return result
def Value(typecode_or_type, *args, **kwds):
def Value(typecode_or_type, *args, lock=None):
'''
Return a synchronization wrapper for a Value
'''
lock = kwds.pop('lock', None)
if kwds:
raise ValueError('unrecognized keyword argument(s): %s' % list(kwds.keys()))
obj = RawValue(typecode_or_type, *args)
if lock is None:
lock = RLock()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment