From: <md...@us...> - 2008-11-07 13:31:31
|
Revision: 6371 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6371&view=rev Author: mdboom Date: 2008-11-07 13:31:25 +0000 (Fri, 07 Nov 2008) Log Message: ----------- Minor docstring fix. Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/artist.py Modified: trunk/matplotlib/lib/matplotlib/artist.py =================================================================== --- trunk/matplotlib/lib/matplotlib/artist.py 2008-11-07 12:36:37 UTC (rev 6370) +++ trunk/matplotlib/lib/matplotlib/artist.py 2008-11-07 13:31:25 UTC (rev 6371) @@ -569,8 +569,8 @@ pyplot signature: findobj(o=gcf(), match=None) - recursively find all :class:matplotlib.artist.Artist instances - contained in self + Recursively find all :class:matplotlib.artist.Artist instances + contained in self. *match* can be @@ -812,16 +812,16 @@ def findobj(self, match=None): """ - recursively find all :class:matplotlib.artist.Artist instances - contained in self + Recursively find all :class:`matplotlib.artist.Artist` + instances contained in *self*. - if *match* is not None, it can be + If *match* is not None, it can be - function with signature ``boolean = match(artist)`` - - class instance: eg Line2D + - class instance: eg :class:`~matplotlib.lines.Line2D` - used to filter matches + used to filter matches. """ if match is None: # always return True @@ -861,7 +861,6 @@ getp(o) # get all the object properties getp(o, 'linestyle') # get the linestyle property - *o* is a :class:`Artist` instance, eg :class:`~matplotllib.lines.Line2D` or an instance of a :class:`~matplotlib.axes.Axes` or :class:`matplotlib.text.Text`. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |