Revision: 6784
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6784&view=rev
Author:   mdboom
Date:     2009-01-15 19:41:52 +0000 (Thu, 15 Jan 2009)

Log Message:
-----------
[ 2502384 ] Typo in Documentation
Linestyle strings are literal-quoted to prevent Sphinx from converting the 
characters within them.

Modified Paths:
--------------
    trunk/matplotlib/lib/matplotlib/axes.py

Modified: trunk/matplotlib/lib/matplotlib/axes.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/axes.py     2009-01-14 17:54:36 UTC (rev 
6783)
+++ trunk/matplotlib/lib/matplotlib/axes.py     2009-01-15 19:41:52 UTC (rev 
6784)
@@ -3216,32 +3216,32 @@
         ================    ===============================
         character           description
         ================    ===============================
-        '-'                 solid line style
-        '--'                dashed line style
-        '-.'                dash-dot line style
-        ':'                 dotted line style
-        '.'                 point marker
-        ','                 pixel marker
-        'o'                 circle marker
-        'v'                 triangle_down marker
-        '^'                 triangle_up marker
-        '<'                 triangle_left marker
-        '>'                 triangle_right marker
-        '1'                 tri_down marker
-        '2'                 tri_up marker
-        '3'                 tri_left marker
-        '4'                 tri_right marker
-        's'                 square marker
-        'p'                 pentagon marker
-        '*'                 star marker
-        'h'                 hexagon1 marker
-        'H'                 hexagon2 marker
-        '+'                 plus marker
-        'x'                 x marker
-        'D'                 diamond marker
-        'd'                 thin_diamond marker
-        '|'                 vline marker
-        '_'                 hline marker
+        ``'-'``             solid line style
+        ``'--'``            dashed line style
+        ``'-.'``            dash-dot line style
+        ``':'``             dotted line style
+        ``'.'``             point marker
+        ``','``             pixel marker
+        ``'o'``             circle marker
+        ``'v'``             triangle_down marker
+        ``'^'``             triangle_up marker
+        ``'<'``             triangle_left marker
+        ``'>'``             triangle_right marker
+        ``'1'``             tri_down marker
+        ``'2'``             tri_up marker
+        ``'3'``             tri_left marker
+        ``'4'``             tri_right marker
+        ``'s'``             square marker
+        ``'p'``             pentagon marker
+        ``'*'``             star marker
+        ``'h'``             hexagon1 marker
+        ``'H'``             hexagon2 marker
+        ``'+'``             plus marker
+        ``'x'``             x marker
+        ``'D'``             diamond marker
+        ``'d'``             thin_diamond marker
+        ``'|'``             vline marker
+        ``'_'``             hline marker
         ================    ===============================
 
 
@@ -5348,10 +5348,10 @@
 
         self._process_unit_info(xdata=x, ydata=y, kwargs=kwargs)
 
-        
+
         x, y, C = cbook.delete_masked_points(x, y, C)
 
-            
+
         # Set the size of the hexagon grid
         if iterable(gridsize):
             nx, ny = gridsize
@@ -5561,7 +5561,7 @@
             else:
                 thismax = thismin + np.diff(coarse)[-1]
 
-            if not valid[i]: continue                
+            if not valid[i]: continue
 
             verts.append([(thismin, 0), (thismin, 0.05), (thismax, 0.05), 
(thismax, 0)])
             values.append(val)


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to