(self, filename_or_obj, *, metadata=None, pil_kwargs=None)
| 547 | # matches the dpi kwarg (if any). |
| 548 | |
| 549 | def print_gif(self, filename_or_obj, *, metadata=None, pil_kwargs=None): |
| 550 | self._print_pil(filename_or_obj, "gif", pil_kwargs, metadata) |
| 551 | |
| 552 | def print_jpg(self, filename_or_obj, *, metadata=None, pil_kwargs=None): |
| 553 | # savefig() has already applied savefig.facecolor; we now set it to |
nothing calls this directly
no test coverage detected