(self, fn, typecode_or_type, *args, lock=True)
| 47 | |
| 48 | # From python 3.4.8 multiprocessing/context.py |
| 49 | def Value(self, fn, typecode_or_type, *args, lock=True): |
| 50 | return fn(typecode_or_type, *args, lock=lock, |
| 51 | ctx=self.get_context()) |
| 52 | |
| 53 | # From 3.6.4 heapq.py |
| 54 | def merge(*iterables, key=None, reverse=False): |