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

Method __setstate__

lib/matplotlib/backends/backend_agg.py:84–85  ·  view source on GitHub ↗
(self, state)

Source from the content-addressed store, hash-verified

82 return {'width': self.width, 'height': self.height, 'dpi': self.dpi}
83
84 def __setstate__(self, state):
85 self.__init__(state['width'], state['height'], state['dpi'])
86
87 def _update_methods(self):
88 self.draw_gouraud_triangles = self._renderer.draw_gouraud_triangles

Callers

nothing calls this directly

Calls 1

__init__Method · 0.95

Tested by

no test coverage detected