From: <jd...@us...> - 2009-07-19 13:35:17
|
Revision: 7272 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7272&view=rev Author: jdh2358 Date: 2009-07-19 13:35:15 +0000 (Sun, 19 Jul 2009) Log Message: ----------- fixed Axes.step docstring per sf bug 2823304 Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/lib/matplotlib/axes.py Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2009-07-19 10:15:57 UTC (rev 7271) +++ trunk/matplotlib/CHANGELOG 2009-07-19 13:35:15 UTC (rev 7272) @@ -1,3 +1,8 @@ +2009-07-19 Fixed the docstring of Axes.step to reflect the correct + meaning of the kwargs "pre" and "post" - See SF bug + https://sourceforge.net/tracker/index.php?func=detail&aid=2823304&group_id=80706&atid=560720 + - JDH + 2009-07-18 Fix support for hatches without color fills to pdf and svg backends. Add an example of that to hatch_demo.py. - JKS Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2009-07-19 10:15:57 UTC (rev 7271) +++ trunk/matplotlib/lib/matplotlib/axes.py 2009-07-19 13:35:15 UTC (rev 7272) @@ -4109,9 +4109,9 @@ Keyword arguments: *where*: [ 'pre' | 'post' | 'mid' ] - If 'pre', the interval from x[i] to x[i+1] has level y[i] + If 'pre', the interval from x[i] to x[i+1] has level y[i+1] - If 'post', that interval has level y[i+1] + If 'post', that interval has level y[i] If 'mid', the jumps in *y* occur half-way between the *x*-values. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |