|
From: <ry...@us...> - 2008-12-04 22:15:57
|
Revision: 6493
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6493&view=rev
Author: ryanmay
Date: 2008-12-04 22:13:57 +0000 (Thu, 04 Dec 2008)
Log Message:
-----------
Replace tabs in indentation with spaces.
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/axes.py
Modified: trunk/matplotlib/lib/matplotlib/axes.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/axes.py 2008-12-04 21:02:36 UTC (rev 6492)
+++ trunk/matplotlib/lib/matplotlib/axes.py 2008-12-04 22:13:57 UTC (rev 6493)
@@ -5579,14 +5579,14 @@
"""
x = np.asarray(x)
- if not cbook.iterable(y1):
- y1 = np.ones_like(x)*y1
+ if not cbook.iterable(y1):
+ y1 = np.ones_like(x)*y1
- if not cbook.iterable(y2):
- y2 = np.ones_like(x)*y2
+ if not cbook.iterable(y2):
+ y2 = np.ones_like(x)*y2
- if where is None:
- where = np.ones(len(x), np.bool)
+ if where is None:
+ where = np.ones(len(x), np.bool)
y1 = np.asarray(y1)
y2 = np.asarray(y2)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|