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

Method __init__

lib/matplotlib/transforms.py:1761–1768  ·  view source on GitHub ↗

*child*: A `Transform` instance. This child may later be replaced with :meth:`set`.

(self, child)

Source from the content-addressed store, hash-verified

1759 pass_through = True
1760
1761 def __init__(self, child):
1762 """
1763 *child*: A `Transform` instance. This child may later
1764 be replaced with :meth:`set`.
1765 """
1766 _api.check_isinstance(Transform, child=child)
1767 super().__init__()
1768 self.set(child)
1769
1770 def __eq__(self, other):
1771 return self._child.__eq__(other)

Callers

nothing calls this directly

Calls 2

setMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected