From: <jd...@us...> - 2008-05-26 17:05:54
|
Revision: 5273 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5273&view=rev Author: jdh2358 Date: 2008-05-26 10:05:50 -0700 (Mon, 26 May 2008) Log Message: ----------- changes to doc readme Modified Paths: -------------- trunk/matplotlib/doc/README.txt trunk/matplotlib/examples/api/logo2.py trunk/matplotlib/lib/matplotlib/lines.py Modified: trunk/matplotlib/doc/README.txt =================================================================== --- trunk/matplotlib/doc/README.txt 2008-05-26 17:04:38 UTC (rev 5272) +++ trunk/matplotlib/doc/README.txt 2008-05-26 17:05:50 UTC (rev 5273) @@ -3,9 +3,8 @@ This is the top level build directory for the matplotlib documentation. All of the documentation is written using sphinx, a -python documentation system built on top of ReST. +python documentation system built on top of ReST. This directory contains -If you are looking for plain text documentation, you can read the following * users - the user documentation, eg plotting tutorials, configuration tips, etc. Modified: trunk/matplotlib/examples/api/logo2.py =================================================================== --- trunk/matplotlib/examples/api/logo2.py 2008-05-26 17:04:38 UTC (rev 5272) +++ trunk/matplotlib/examples/api/logo2.py 2008-05-26 17:05:50 UTC (rev 5273) @@ -36,7 +36,7 @@ x = mu + sigma*np.random.randn(10000) # the histogram of the data -n, bins, patches = axhist.hist(x, 50, normed=1, +n, bins, patches = axhist.hist(x, 20, normed=1, facecolor='green', edgecolor='green', alpha=0.75) Modified: trunk/matplotlib/lib/matplotlib/lines.py =================================================================== --- trunk/matplotlib/lib/matplotlib/lines.py 2008-05-26 17:04:38 UTC (rev 5272) +++ trunk/matplotlib/lib/matplotlib/lines.py 2008-05-26 17:05:50 UTC (rev 5273) @@ -529,6 +529,7 @@ def get_markersize(self): return self._markersize + def get_xdata(self, orig=True): """ return the xdata; if orig is true return the original data, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |