|
From: <ef...@us...> - 2010-06-01 19:04:25
|
Revision: 8363
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8363&view=rev
Author: efiring
Date: 2010-06-01 19:04:17 +0000 (Tue, 01 Jun 2010)
Log Message:
-----------
backend_driver: suppress "invalid value" warnings
Modified Paths:
--------------
trunk/matplotlib/examples/tests/backend_driver.py
Modified: trunk/matplotlib/examples/tests/backend_driver.py
===================================================================
--- trunk/matplotlib/examples/tests/backend_driver.py 2010-06-01 18:21:30 UTC (rev 8362)
+++ trunk/matplotlib/examples/tests/backend_driver.py 2010-06-01 19:04:17 UTC (rev 8363)
@@ -360,6 +360,8 @@
'import matplotlib\n',
'matplotlib.use("%s")\n' % backend,
'from pylab import savefig\n',
+ 'import numpy\n',
+ 'numpy.seterr(invalid="ignore")\n',
))
for line in file(fullpath):
line_lstrip = line.lstrip()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|