|
From: <jd...@us...> - 2008-05-26 17:09:46
|
Revision: 5275
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5275&view=rev
Author: jdh2358
Date: 2008-05-26 10:09:44 -0700 (Mon, 26 May 2008)
Log Message:
-----------
fixed an empty vertex list bug
Modified Paths:
--------------
branches/v0_91_maint/lib/matplotlib/lines.py
Modified: branches/v0_91_maint/lib/matplotlib/lines.py
===================================================================
--- branches/v0_91_maint/lib/matplotlib/lines.py 2008-05-26 17:08:43 UTC (rev 5274)
+++ branches/v0_91_maint/lib/matplotlib/lines.py 2008-05-26 17:09:44 UTC (rev 5275)
@@ -1537,7 +1537,6 @@
ind = list(self.ind)
ind.sort()
- ind = npy.array(ind)
xdata, ydata = self.line.get_data()
self.process_selected(ind, xdata[ind], ydata[ind])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|