From: <jd...@us...> - 2009-05-29 02:30:57
|
Revision: 7160 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7160&view=rev Author: jdh2358 Date: 2009-05-29 02:08:15 +0000 (Fri, 29 May 2009) Log Message: ----------- added spine autodocs Modified Paths: -------------- trunk/matplotlib/doc/api/index.rst trunk/matplotlib/examples/pylab_examples/axhspan_demo.py Added Paths: ----------- trunk/matplotlib/doc/api/spine_api.rst Modified: trunk/matplotlib/doc/api/index.rst =================================================================== --- trunk/matplotlib/doc/api/index.rst 2009-05-28 18:02:49 UTC (rev 7159) +++ trunk/matplotlib/doc/api/index.rst 2009-05-29 02:08:15 UTC (rev 7160) @@ -30,5 +30,6 @@ mlab_api.rst path_api.rst pyplot_api.rst + spine_api.rst ticker_api.rst index_backend_api.rst Added: trunk/matplotlib/doc/api/spine_api.rst =================================================================== --- trunk/matplotlib/doc/api/spine_api.rst (rev 0) +++ trunk/matplotlib/doc/api/spine_api.rst 2009-05-29 02:08:15 UTC (rev 7160) @@ -0,0 +1,12 @@ +***************** +matplotlib spine +***************** + + +:mod:`matplotlib.spine` +====================== + +.. automodule:: matplotlib.spine + :members: + :undoc-members: + :show-inheritance: Modified: trunk/matplotlib/examples/pylab_examples/axhspan_demo.py =================================================================== --- trunk/matplotlib/examples/pylab_examples/axhspan_demo.py 2009-05-28 18:02:49 UTC (rev 7159) +++ trunk/matplotlib/examples/pylab_examples/axhspan_demo.py 2009-05-29 02:08:15 UTC (rev 7160) @@ -11,7 +11,7 @@ # draw a default hline at y=1 that spans the xrange l = plt.axhline(y=1) -# draw a default vline at x=1 that spans the xrange +# draw a default vline at x=1 that spans the yrange l = plt.axvline(x=1) # draw a thick blue vline at x=0 that spans the the upper quadrant of This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |