From: <md...@us...> - 2008-06-23 12:45:06
|
Revision: 5642 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5642&view=rev Author: mdboom Date: 2008-06-23 05:44:28 -0700 (Mon, 23 Jun 2008) Log Message: ----------- Fix some docstrings. Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/axes.py trunk/matplotlib/lib/matplotlib/figure.py Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2008-06-23 12:34:45 UTC (rev 5641) +++ trunk/matplotlib/lib/matplotlib/axes.py 2008-06-23 12:44:28 UTC (rev 5642) @@ -4567,7 +4567,7 @@ *style*: the style of the regular symbol: - ===== ================== + ===== ========================================= Value Description ===== ========================================= 0 a regular polygon Modified: trunk/matplotlib/lib/matplotlib/figure.py =================================================================== --- trunk/matplotlib/lib/matplotlib/figure.py 2008-06-23 12:34:45 UTC (rev 5641) +++ trunk/matplotlib/lib/matplotlib/figure.py 2008-06-23 12:44:28 UTC (rev 5642) @@ -211,7 +211,8 @@ *figurePatch* a :class:`matplotlib.patches.Rectangle` instance - *suppressComposite + + *suppressComposite* for multiple figure images, the figure will make composite images depending on the renderer option_image_nocomposite function. If suppressComposite is True|False, this will @@ -771,7 +772,7 @@ toolbar.update() self._axstack.clear() self._seen = {} - self.artists = [] + self.artists = [] self.lines = [] self.patches = [] self.texts=[] @@ -800,7 +801,7 @@ for p in self.patches: p.draw(renderer) for l in self.lines: l.draw(renderer) for a in self.artists: a.draw(renderer) - + # override the renderer default if self.suppressComposite # is not None composite = renderer.option_image_nocomposite() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |