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

Method _run

lib/matplotlib/animation.py:316–326  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

314 self._run()
315
316 def _run(self):
317 # Uses subprocess to call the program for assembling frames into a
318 # movie file. *args* returns the sequence of command line arguments
319 # from a few configuration options.
320 command = self._args()
321 _log.info('MovieWriter._run: running command: %s',
322 cbook._pformat_subprocess(command))
323 PIPE = subprocess.PIPE
324 self._proc = subprocess.Popen(
325 command, stdin=PIPE, stdout=PIPE, stderr=PIPE,
326 creationflags=subprocess_creation_flags)
327
328 def finish(self):
329 """Finish any processing for writing the movie."""

Callers 2

setupMethod · 0.95
finishMethod · 0.45

Calls 1

_argsMethod · 0.95

Tested by

no test coverage detected