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

Function test_capstyle

lib/matplotlib/tests/test_collections.py:719–725  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

717
718@mpl.style.context('default')
719def test_capstyle():
720 col = mcollections.PathCollection([])
721 assert col.get_capstyle() is None
722 col = mcollections.PathCollection([], capstyle='round')
723 assert col.get_capstyle() == 'round'
724 col.set_capstyle('butt')
725 assert col.get_capstyle() == 'butt'
726
727
728@mpl.style.context('default')

Callers

nothing calls this directly

Calls 2

get_capstyleMethod · 0.45
set_capstyleMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…