From: <ds...@us...> - 2008-06-09 17:09:03
|
Revision: 5434 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5434&view=rev Author: dsdale Date: 2008-06-09 10:07:33 -0700 (Mon, 09 Jun 2008) Log Message: ----------- fixed a doc error in patches Modified Paths: -------------- trunk/matplotlib/doc/faq/environment_variables_faq.rst trunk/matplotlib/lib/matplotlib/patches.py trunk/matplotlib/lib/matplotlib/pyplot.py Added Paths: ----------- trunk/matplotlib/doc/api/axes_api.rst Added: trunk/matplotlib/doc/api/axes_api.rst =================================================================== --- trunk/matplotlib/doc/api/axes_api.rst (rev 0) +++ trunk/matplotlib/doc/api/axes_api.rst 2008-06-09 17:07:33 UTC (rev 5434) @@ -0,0 +1,11 @@ +*************** +matplotlib axes +*************** + + +:mod:`matplotlib.axes` +====================== + +.. automodule:: matplotlib.axes + :members: + :undoc-members: Modified: trunk/matplotlib/doc/faq/environment_variables_faq.rst =================================================================== --- trunk/matplotlib/doc/faq/environment_variables_faq.rst 2008-06-09 17:00:08 UTC (rev 5433) +++ trunk/matplotlib/doc/faq/environment_variables_faq.rst 2008-06-09 17:07:33 UTC (rev 5434) @@ -4,12 +4,15 @@ Environment Variables ********************* -.. envvar:: PATH: - The list of directories searched to find executable programs -.. envvar:: PYTHONPATH: - The list of directories that is searched to find Python packages and modules +.. envvar:: PATH + The list of directories searched to find executable programs +.. envvar:: PYTHONPATH + + The list of directories that is searched to find Python packages and modules + + Setting Environment Variables ============================= Modified: trunk/matplotlib/lib/matplotlib/patches.py =================================================================== --- trunk/matplotlib/lib/matplotlib/patches.py 2008-06-09 17:00:08 UTC (rev 5433) +++ trunk/matplotlib/lib/matplotlib/patches.py 2008-06-09 17:07:33 UTC (rev 5434) @@ -13,7 +13,8 @@ # these are not available for the object inspector until after the # class is built so we define an initial set here for the init # function and they will be overridden after object definition -artist.kwdocd['Patch'] = """\ +artist.kwdocd['Patch'] = """ + ================= ============================================== Property Description ================= ============================================== @@ -36,6 +37,7 @@ ================= ============================================== """ + class Patch(artist.Artist): """ A patch is a 2D thingy with a face color and an edge color Modified: trunk/matplotlib/lib/matplotlib/pyplot.py =================================================================== --- trunk/matplotlib/lib/matplotlib/pyplot.py 2008-06-09 17:00:08 UTC (rev 5433) +++ trunk/matplotlib/lib/matplotlib/pyplot.py 2008-06-09 17:07:33 UTC (rev 5434) @@ -424,7 +424,6 @@ * examples/axes_demo.py places custom axes. * examples/shared_axis_demo.py uses sharex and sharey - """ nargs = len(args) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |