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

Method __init__

Lib/test/_test_multiprocessing.py:1064–1066  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1062class _UpperCaser(multiprocessing.Process):
1063
1064 def __init__(self):
1065 multiprocessing.Process.__init__(self)
1066 self.child_conn, self.parent_conn = multiprocessing.Pipe()
1067
1068 def run(self):
1069 self.parent_conn.close()

Callers

nothing calls this directly

Calls 2

PipeMethod · 0.80
__init__Method · 0.45

Tested by

no test coverage detected