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

Method _putter

Lib/test/_test_multiprocessing.py:3533–3540  ·  view source on GitHub ↗
(cls, address, authkey)

Source from the content-addressed store, hash-verified

3531
3532 @classmethod
3533 def _putter(cls, address, authkey):
3534 manager = QueueManager2(
3535 address=address, authkey=authkey, serializer=SERIALIZER,
3536 shutdown_timeout=SHUTDOWN_TIMEOUT)
3537 manager.connect()
3538 queue = manager.get_queue()
3539 # Note that xmlrpclib will deserialize object as a list not a tuple
3540 queue.put(tuple(cls.values))
3541
3542 @warnings_helper.ignore_fork_in_thread_deprecation_warnings()
3543 @support.skip_if_sanitizer('TSan: leaks threads', thread=True)

Callers

nothing calls this directly

Calls 3

QueueManager2Class · 0.85
connectMethod · 0.45
putMethod · 0.45

Tested by

no test coverage detected