|
From: <ds...@us...> - 2007-08-16 21:58:02
|
Revision: 3714
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3714&view=rev
Author: dsdale
Date: 2007-08-16 14:57:58 -0700 (Thu, 16 Aug 2007)
Log Message:
-----------
revert changes that cause embedding_in_qt4 to fail
Modified Paths:
--------------
trunk/matplotlib/examples/embedding_in_qt4.py
Modified: trunk/matplotlib/examples/embedding_in_qt4.py
===================================================================
--- trunk/matplotlib/examples/embedding_in_qt4.py 2007-08-16 21:48:52 UTC (rev 3713)
+++ trunk/matplotlib/examples/embedding_in_qt4.py 2007-08-16 21:57:58 UTC (rev 3714)
@@ -64,13 +64,11 @@
def compute_initial_figure(self):
self.axes.plot([0, 1, 2, 3], [1, 2, 0, 4], 'r')
- self.axes.set_yscale('log')
def update_figure(self):
# Build a list of 4 random integers between 0 and 10 (both inclusive)
l = [ random.randint(0, 10) for i in xrange(4) ]
- l[l<=0]=1
self.axes.plot([0, 1, 2, 3], l, 'r')
self.draw()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|