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

Class TransformBlob

lib/matplotlib/tests/test_pickle.py:213–226  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

211
212
213class TransformBlob:
214 def __init__(self):
215 self.identity = mtransforms.IdentityTransform()
216 self.identity2 = mtransforms.IdentityTransform()
217 # Force use of the more complex composition.
218 self.composite = mtransforms.CompositeGenericTransform(
219 self.identity,
220 self.identity2)
221 # Check parent -> child links of TransformWrapper.
222 self.wrapper = mtransforms.TransformWrapper(self.composite)
223 # Check child -> parent links of TransformWrapper.
224 self.composite2 = mtransforms.CompositeGenericTransform(
225 self.wrapper,
226 self.identity)
227
228
229def test_transform():

Callers 1

test_transformFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_transformFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…