MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / __init__

Method __init__

galleries/examples/misc/multiprocess_sgskip.py:79–84  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

77
78class NBPlot:
79 def __init__(self):
80 self.plot_pipe, plotter_pipe = mp.Pipe()
81 self.plotter = ProcessPlotter()
82 self.plot_process = mp.Process(
83 target=self.plotter, args=(plotter_pipe,), daemon=True)
84 self.plot_process.start()
85
86 def plot(self, finished=False):
87 send = self.plot_pipe.send

Callers

nothing calls this directly

Calls 2

ProcessPlotterClass · 0.85
startMethod · 0.45

Tested by

no test coverage detected