Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 77c1c5e

Browse files
committed
fixed a small fromstring ps bug
svn path=/trunk/matplotlib/; revision=358
1 parent ceb0d66 commit 77c1c5e

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

MANIFEST

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ examples/coords_demo.py
189189
examples/csd_demo.py
190190
examples/cursor_demo.py
191191
examples/custom_ticker1.py
192+
examples/customize_rc.py
192193
examples/dash_control.py
193194
examples/data_helper.py
194195
examples/date_demo1.py
@@ -200,7 +201,9 @@ examples/embedding_in_gtk.py
200201
examples/embedding_in_gtk2.py
201202
examples/embedding_in_tk.py
202203
examples/embedding_in_wx.py
204+
examples/embedding_in_wx2.py
203205
examples/errorbar_demo.py
206+
examples/figimage_demo.py
204207
examples/figtext.py
205208
examples/fill_demo.py
206209
examples/finance_demo.py
@@ -214,9 +217,11 @@ examples/histogram_demo_canvasagg.py
214217
examples/image_demo.py
215218
examples/image_demo2.py
216219
examples/image_demo_na.py
220+
examples/image_origin.py
217221
examples/interactive.py
218222
examples/interactive2.py
219223
examples/invert_axes.py
224+
examples/layer_images.py
220225
examples/legend_demo.py
221226
examples/legend_demo2.py
222227
examples/line_styles.py
@@ -365,6 +370,7 @@ matplotlib/axes.py
365370
matplotlib/axis.py
366371
matplotlib/backend_bases.py
367372
matplotlib/cbook.py
373+
matplotlib/cm.py
368374
matplotlib/collections.py
369375
matplotlib/colors.py
370376
matplotlib/dates.py
@@ -392,7 +398,6 @@ matplotlib/backends/backend_agg.py
392398
matplotlib/backends/backend_gd.py
393399
matplotlib/backends/backend_gtk.py
394400
matplotlib/backends/backend_gtkagg.py
395-
matplotlib/backends/backend_gtkgd.py
396401
matplotlib/backends/backend_paint.py
397402
matplotlib/backends/backend_ps.py
398403
matplotlib/backends/backend_svg.py
@@ -404,7 +409,6 @@ matplotlib/backends/tkagg.py
404409
src/_backend_agg.cpp
405410
src/_backend_agg.h
406411
src/_gtkagg.cpp
407-
src/_gtkgd.c
408412
src/_image.cpp
409413
src/_image.h
410414
src/_tkagg.cpp
@@ -413,3 +417,5 @@ src/_transforms.h
413417
src/_windowing.cpp
414418
src/ft2font.cpp
415419
src/ft2font.h
420+
src/mplutils.cpp
421+
src/mplutils.h

examples/backend_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def drive(backend):
8585
times = {}
8686
backends = ['PS', 'GD', 'Paint', 'Agg', 'Template']
8787
#backends.extend([ 'GTK', 'WX', 'TkAgg'])
88-
backends = [ 'Agg']
88+
#backends = [ 'Agg']
8989
#backends = [ 'Agg', 'PS', 'Template']
9090

9191
for backend in backends:

0 commit comments

Comments
 (0)