本文整理汇总了Python中matplotlib.artist.ArtistInspector方法的典型用法代码示例。如果您正苦于以下问题:Python artist.ArtistInspector方法的具体用法?Python artist.ArtistInspector怎么用?Python artist.ArtistInspector使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类matplotlib.artist
的用法示例。
在下文中一共展示了artist.ArtistInspector方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_artist_inspector_get_valid_values
# 需要导入模块: from matplotlib import artist [as 别名]
# 或者: from matplotlib.artist import ArtistInspector [as 别名]
def test_artist_inspector_get_valid_values(accept_clause, expected):
class TestArtist(martist.Artist):
def set_f(self, arg):
pass
TestArtist.set_f.__doc__ = """
Some text.
%s
""" % accept_clause
valid_values = martist.ArtistInspector(TestArtist).get_valid_values('f')
assert valid_values == expected
示例2: test_artist_inspector_get_valid_values
# 需要导入模块: from matplotlib import artist [as 别名]
# 或者: from matplotlib.artist import ArtistInspector [as 别名]
def test_artist_inspector_get_valid_values(accept_clause, expected):
class TestArtist(martist.Artist):
def set_f(self):
pass
func = TestArtist.set_f
if hasattr(func, '__func__'):
func = func.__func__ # python 2 must write via __func__.__doc__
func.__doc__ = """
Some text.
%s
""" % accept_clause
valid_values = martist.ArtistInspector(TestArtist).get_valid_values('f')
assert valid_values == expected