|
From: <ef...@us...> - 2010-06-13 23:04:37
|
Revision: 8428
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8428&view=rev
Author: efiring
Date: 2010-06-13 23:04:30 +0000 (Sun, 13 Jun 2010)
Log Message:
-----------
[2922266] pyplot_tutorial.rst: remove tabs from code (patch by Ori Avtalion)
Modified Paths:
--------------
trunk/matplotlib/doc/users/pyplot_tutorial.rst
Modified: trunk/matplotlib/doc/users/pyplot_tutorial.rst
===================================================================
--- trunk/matplotlib/doc/users/pyplot_tutorial.rst 2010-06-13 22:53:25 UTC (rev 8427)
+++ trunk/matplotlib/doc/users/pyplot_tutorial.rst 2010-06-13 23:04:30 UTC (rev 8428)
@@ -75,7 +75,7 @@
one line so it is a list of length 1. I use tuple unpacking in the
``line, = plot(x, y, 'o')`` to get the first element of the list::
- line, = plt.plot(x, y, '-')
+ line, = plt.plot(x, y, '-')
line.set_antialiased(False) # turn off antialising
* Use the :func:`~matplotlib.pyplot.setp` command. The example below
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|