|
From: <jd...@us...> - 2008-07-27 04:48:55
|
Revision: 5901
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5901&view=rev
Author: jdh2358
Date: 2008-07-27 04:48:53 +0000 (Sun, 27 Jul 2008)
Log Message:
-----------
fix backend driver typo
Modified Paths:
--------------
trunk/matplotlib/examples/tests/backend_driver.py
Modified: trunk/matplotlib/examples/tests/backend_driver.py
===================================================================
--- trunk/matplotlib/examples/tests/backend_driver.py 2008-07-27 04:47:42 UTC (rev 5900)
+++ trunk/matplotlib/examples/tests/backend_driver.py 2008-07-27 04:48:53 UTC (rev 5901)
@@ -34,7 +34,7 @@
'bar_stacked.py',
'barchart_demo.py',
'barb_demo.py',
- 'barcode_demo.py ',
+ 'barcode_demo.py',
'boxplot_demo.py',
'broken_barh.py',
'barh_demo.py',
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jd...@us...> - 2008-12-09 03:37:20
|
Revision: 6529
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6529&view=rev
Author: jdh2358
Date: 2008-12-09 03:37:16 +0000 (Tue, 09 Dec 2008)
Log Message:
-----------
added missing comma to backend driver list
Modified Paths:
--------------
trunk/matplotlib/examples/tests/backend_driver.py
Modified: trunk/matplotlib/examples/tests/backend_driver.py
===================================================================
--- trunk/matplotlib/examples/tests/backend_driver.py 2008-12-09 03:33:57 UTC (rev 6528)
+++ trunk/matplotlib/examples/tests/backend_driver.py 2008-12-09 03:37:16 UTC (rev 6529)
@@ -221,7 +221,7 @@
'quad_bezier.py',
'scatter_piecharts.py',
'span_regions.py',
- 'two_scales.py'
+ 'two_scales.py',
'unicode_minus.py',
'watermark_image.py',
'watermark_text.py',
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jd...@us...> - 2009-06-05 16:53:48
|
Revision: 7182
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7182&view=rev
Author: jdh2358
Date: 2009-06-05 16:53:47 +0000 (Fri, 05 Jun 2009)
Log Message:
-----------
updated backend driver to find the new fill_between examples
Modified Paths:
--------------
trunk/matplotlib/examples/tests/backend_driver.py
Modified: trunk/matplotlib/examples/tests/backend_driver.py
===================================================================
--- trunk/matplotlib/examples/tests/backend_driver.py 2009-06-05 16:53:11 UTC (rev 7181)
+++ trunk/matplotlib/examples/tests/backend_driver.py 2009-06-05 16:53:47 UTC (rev 7182)
@@ -86,7 +86,7 @@
'figimage_demo.py',
'figlegend_demo.py',
'figure_title.py',
- 'fill_between.py',
+ 'fill_between_demo.py',
'fill_demo.py',
'fill_demo2.py',
'fill_spiral.py',
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jo...@us...> - 2009-06-13 12:09:34
|
Revision: 7214
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7214&view=rev
Author: jouni
Date: 2009-06-13 12:09:29 +0000 (Sat, 13 Jun 2009)
Log Message:
-----------
Call current mplot3d demos from backend_driver.py
Modified Paths:
--------------
trunk/matplotlib/examples/tests/backend_driver.py
Modified: trunk/matplotlib/examples/tests/backend_driver.py
===================================================================
--- trunk/matplotlib/examples/tests/backend_driver.py 2009-06-12 19:41:58 UTC (rev 7213)
+++ trunk/matplotlib/examples/tests/backend_driver.py 2009-06-13 12:09:29 UTC (rev 7214)
@@ -243,7 +243,18 @@
mplot3d_dir = os.path.join('..', 'mplot3d')
mplot3d_files = [
- 'demo.py',
+ '2dcollections3d_demo.py',
+ 'bars3d_demo.py',
+ 'contour3d_demo.py',
+ 'contour3d_demo2.py',
+ 'contourf3d_demo.py',
+ 'lines3d_demo.py',
+ 'polys3d_demo.py',
+ 'scatter3d_demo.py',
+ 'surface3d_demo.py',
+ 'surface3d_demo2.py',
+ 'text3d_demo.py',
+ 'wire3d_demo.py',
]
# dict from dir to files we know we don't want to test (eg examples
@@ -273,6 +284,7 @@
report_missing(pylab_dir, pylab_files)
report_missing(api_dir, api_files)
report_missing(units_dir, units_files)
+report_missing(mplot3d_dir, mplot3d_files)
files = (
[os.path.join(api_dir, fname) for fname in api_files] +
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
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.
|