View | Details | Raw Unified | Return to bug 166329
Collapse All | Expand All

(-)py-matplotlib/Makefile (-2 / +1 lines)
Lines 7-14 Link Here
7
#
7
#
8
8
9
PORTNAME=	matplotlib
9
PORTNAME=	matplotlib
10
PORTVERSION=	1.0.1
10
PORTVERSION=	1.1.0
11
PORTREVISION=	3
12
CATEGORIES=	math python
11
CATEGORIES=	math python
13
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}/
12
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}/
14
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
13
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
(-)py-matplotlib/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (matplotlib-1.0.1.tar.gz) = 83bc6377373b3f34b18eac1883c27f3f381f5c9b9c422b4d85c91e217a947af6
1
SHA256 (matplotlib-1.1.0.tar.gz) = be37e1d86c65ecacae6683f8805e051e9904e5f2e02bf2b7a34262c46a6d06a7
2
SIZE (matplotlib-1.0.1.tar.gz) = 13285166
2
SIZE (matplotlib-1.1.0.tar.gz) = 35842643
(-)py-matplotlib/files/patch-setupext.py (-31 / +11 lines)
Lines 1-6 Link Here
1
--- setupext.py.orig    2010-07-07 05:41:55.000000000 +0400
1
--- setupext.py.orig	2011-10-06 15:50:23.000000000 +0100
2
+++ setupext.py    2011-10-16 18:49:43.000000000 +0400
2
+++ setupext.py	2012-03-22 23:29:06.881660702 +0000
3
@@ -68,6 +68,10 @@
3
@@ -70,6 +70,10 @@
4
     'freebsd4' : ['/usr/local', '/usr'],
4
     'freebsd4' : ['/usr/local', '/usr'],
5
     'freebsd5' : ['/usr/local', '/usr'],
5
     'freebsd5' : ['/usr/local', '/usr'],
6
     'freebsd6' : ['/usr/local', '/usr'],
6
     'freebsd6' : ['/usr/local', '/usr'],
Lines 11-46 Link Here
11
     'sunos5' : [os.getenv('MPLIB_BASE') or '/usr/local',],
11
     'sunos5' : [os.getenv('MPLIB_BASE') or '/usr/local',],
12
     'gnukfreebsd5' : ['/usr/local', '/usr'],
12
     'gnukfreebsd5' : ['/usr/local', '/usr'],
13
     'gnukfreebsd6' : ['/usr/local', '/usr'],
13
     'gnukfreebsd6' : ['/usr/local', '/usr'],
14
@@ -789,7 +793,7 @@
14
@@ -1018,9 +1022,12 @@
15
         module.libraries.extend(wxlibs)
16
         return
17
 
18
-    get_pkgconfig(module, '', flags='--cppflags --libs', pkg_config_exec='wx-config')
19
+    get_pkgconfig(module, '', flags='--cppflags --libs', pkg_config_exec=wxconfig)
20
 
21
 # Make sure you use the Tk version given by Tkinter.TkVersion
22
 # or else you'll build for a wrong version of the Tcl
23
@@ -828,8 +832,12 @@
24
                 gotit = False
25
 
26
     if gotit:
27
+        try:
28
+          tk_v = Tkinter.__version__.split()[-2]
29
+        except (AttributeError, IndexError):
30
+          tk_v = 'version not identified'
31
         print_status("Tkinter", "Tkinter: %s, Tk: %s, Tcl: %s" %
32
-                     (Tkinter.__version__.split()[-2], Tkinter.TkVersion, Tkinter.TclVersion))
33
+                     (tk_v, Tkinter.TkVersion, Tkinter.TclVersion))
34
     else:
35
         print_status("Tkinter", "no")
36
     if explanation is not None:
37
@@ -1092,9 +1100,9 @@
38
 
15
 
39
         # Add final versions of directories and libraries to module lists
16
         # Add final versions of directories and libraries to module lists
40
         tcl_lib, tcl_inc, tk_lib, tk_inc = result
17
         tcl_lib_dir, tcl_inc_dir, tcl_lib, tk_lib_dir, tk_inc_dir, tk_lib = result
41
-        module.include_dirs.extend([tcl_inc, tk_inc])
18
-        module.include_dirs.extend([tcl_inc_dir, tk_inc_dir])
42
-        module.library_dirs.extend([tcl_lib, tk_lib])
19
-        module.library_dirs.extend([tcl_lib_dir, tk_lib_dir])
43
-        module.libraries.extend(['tk' + tk_ver, 'tcl' + tk_ver])
20
-        module.libraries.extend([tcl_lib, tk_lib])
21
+        #module.include_dirs.extend([tcl_inc_dir, tk_inc_dir])
22
+        #module.library_dirs.extend([tcl_lib_dir, tk_lib_dir])
23
+        #module.libraries.extend([tcl_lib, tk_lib])
44
+        module.include_dirs.extend(["/usr/local/include/tcl8.5", "/usr/local/include/tk8.5"])
24
+        module.include_dirs.extend(["/usr/local/include/tcl8.5", "/usr/local/include/tk8.5"])
45
+        module.library_dirs.extend(["/usr/local/lib/tcl8.5", "/usr/local/lib/tk8.5"])
25
+        module.library_dirs.extend(["/usr/local/lib/tcl8.5", "/usr/local/lib/tk8.5"])
46
+        module.libraries.extend(['tk' + "85", 'tcl' + "85"])
26
+        module.libraries.extend(['tk' + "85", 'tcl' + "85"])
(-)py-matplotlib/pkg-plist (-84 / +1007 lines)
Lines 19-24 Link Here
19
%%PYTHON_SITELIBDIR%%/matplotlib/afm.py
19
%%PYTHON_SITELIBDIR%%/matplotlib/afm.py
20
%%PYTHON_SITELIBDIR%%/matplotlib/afm.pyc
20
%%PYTHON_SITELIBDIR%%/matplotlib/afm.pyc
21
%%PYTHON_SITELIBDIR%%/matplotlib/afm.pyo
21
%%PYTHON_SITELIBDIR%%/matplotlib/afm.pyo
22
%%PYTHON_SITELIBDIR%%/matplotlib/animation.py
23
%%PYTHON_SITELIBDIR%%/matplotlib/animation.pyc
24
%%PYTHON_SITELIBDIR%%/matplotlib/animation.pyo
22
%%PYTHON_SITELIBDIR%%/matplotlib/artist.py
25
%%PYTHON_SITELIBDIR%%/matplotlib/artist.py
23
%%PYTHON_SITELIBDIR%%/matplotlib/artist.pyc
26
%%PYTHON_SITELIBDIR%%/matplotlib/artist.pyc
24
%%PYTHON_SITELIBDIR%%/matplotlib/artist.pyo
27
%%PYTHON_SITELIBDIR%%/matplotlib/artist.pyo
Lines 34-39 Link Here
34
%%PYTHON_SITELIBDIR%%/matplotlib/backends/Matplotlib.nib/classes.nib
37
%%PYTHON_SITELIBDIR%%/matplotlib/backends/Matplotlib.nib/classes.nib
35
%%PYTHON_SITELIBDIR%%/matplotlib/backends/Matplotlib.nib/info.nib
38
%%PYTHON_SITELIBDIR%%/matplotlib/backends/Matplotlib.nib/info.nib
36
%%PYTHON_SITELIBDIR%%/matplotlib/backends/Matplotlib.nib/keyedobjects.nib
39
%%PYTHON_SITELIBDIR%%/matplotlib/backends/Matplotlib.nib/keyedobjects.nib
40
%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_compat.py
41
%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_compat.pyc
42
%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_compat.pyo
37
%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/__init__.py
43
%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/__init__.py
38
%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/__init__.pyc
44
%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/__init__.pyc
39
%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/__init__.pyo
45
%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/__init__.pyo
Lines 143-148 Link Here
143
%%PYTHON_SITELIBDIR%%/matplotlib/colors.py
149
%%PYTHON_SITELIBDIR%%/matplotlib/colors.py
144
%%PYTHON_SITELIBDIR%%/matplotlib/colors.pyc
150
%%PYTHON_SITELIBDIR%%/matplotlib/colors.pyc
145
%%PYTHON_SITELIBDIR%%/matplotlib/colors.pyo
151
%%PYTHON_SITELIBDIR%%/matplotlib/colors.pyo
152
%%PYTHON_SITELIBDIR%%/matplotlib/container.py
153
%%PYTHON_SITELIBDIR%%/matplotlib/container.pyc
154
%%PYTHON_SITELIBDIR%%/matplotlib/container.pyo
146
%%PYTHON_SITELIBDIR%%/matplotlib/contour.py
155
%%PYTHON_SITELIBDIR%%/matplotlib/contour.py
147
%%PYTHON_SITELIBDIR%%/matplotlib/contour.pyc
156
%%PYTHON_SITELIBDIR%%/matplotlib/contour.pyc
148
%%PYTHON_SITELIBDIR%%/matplotlib/contour.pyo
157
%%PYTHON_SITELIBDIR%%/matplotlib/contour.pyo
Lines 192-200 Link Here
192
%%PYTHON_SITELIBDIR%%/matplotlib/legend.py
201
%%PYTHON_SITELIBDIR%%/matplotlib/legend.py
193
%%PYTHON_SITELIBDIR%%/matplotlib/legend.pyc
202
%%PYTHON_SITELIBDIR%%/matplotlib/legend.pyc
194
%%PYTHON_SITELIBDIR%%/matplotlib/legend.pyo
203
%%PYTHON_SITELIBDIR%%/matplotlib/legend.pyo
204
%%PYTHON_SITELIBDIR%%/matplotlib/legend_handler.py
205
%%PYTHON_SITELIBDIR%%/matplotlib/legend_handler.pyc
206
%%PYTHON_SITELIBDIR%%/matplotlib/legend_handler.pyo
195
%%PYTHON_SITELIBDIR%%/matplotlib/lines.py
207
%%PYTHON_SITELIBDIR%%/matplotlib/lines.py
196
%%PYTHON_SITELIBDIR%%/matplotlib/lines.pyc
208
%%PYTHON_SITELIBDIR%%/matplotlib/lines.pyc
197
%%PYTHON_SITELIBDIR%%/matplotlib/lines.pyo
209
%%PYTHON_SITELIBDIR%%/matplotlib/lines.pyo
210
%%PYTHON_SITELIBDIR%%/matplotlib/markers.py
211
%%PYTHON_SITELIBDIR%%/matplotlib/markers.pyc
212
%%PYTHON_SITELIBDIR%%/matplotlib/markers.pyo
198
%%PYTHON_SITELIBDIR%%/matplotlib/mathtext.py
213
%%PYTHON_SITELIBDIR%%/matplotlib/mathtext.py
199
%%PYTHON_SITELIBDIR%%/matplotlib/mathtext.pyc
214
%%PYTHON_SITELIBDIR%%/matplotlib/mathtext.pyc
200
%%PYTHON_SITELIBDIR%%/matplotlib/mathtext.pyo
215
%%PYTHON_SITELIBDIR%%/matplotlib/mathtext.pyo
Lines 359-392 Link Here
359
%%PYTHON_SITELIBDIR%%/matplotlib/mpl.py
374
%%PYTHON_SITELIBDIR%%/matplotlib/mpl.py
360
%%PYTHON_SITELIBDIR%%/matplotlib/mpl.pyc
375
%%PYTHON_SITELIBDIR%%/matplotlib/mpl.pyc
361
%%PYTHON_SITELIBDIR%%/matplotlib/mpl.pyo
376
%%PYTHON_SITELIBDIR%%/matplotlib/mpl.pyo
362
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/__init__.py
363
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/__init__.pyc
364
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/__init__.pyo
365
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/_sp_imports.py
366
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/_sp_imports.pyc
367
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/_sp_imports.pyo
368
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/fft/__init__.py
369
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/fft/__init__.pyc
370
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/fft/__init__.pyo
371
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/linear_algebra/__init__.py
372
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/linear_algebra/__init__.pyc
373
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/linear_algebra/__init__.pyo
374
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/ma/__init__.py
375
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/ma/__init__.pyc
376
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/ma/__init__.pyo
377
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/mlab/__init__.py
378
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/mlab/__init__.pyc
379
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/mlab/__init__.pyo
380
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/random_array/__init__.py
381
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/random_array/__init__.pyc
382
%%PYTHON_SITELIBDIR%%/matplotlib/numerix/random_array/__init__.pyo
383
%%PYTHON_SITELIBDIR%%/matplotlib/nxutils.so
377
%%PYTHON_SITELIBDIR%%/matplotlib/nxutils.so
384
%%PYTHON_SITELIBDIR%%/matplotlib/offsetbox.py
378
%%PYTHON_SITELIBDIR%%/matplotlib/offsetbox.py
385
%%PYTHON_SITELIBDIR%%/matplotlib/offsetbox.pyc
379
%%PYTHON_SITELIBDIR%%/matplotlib/offsetbox.pyc
386
%%PYTHON_SITELIBDIR%%/matplotlib/offsetbox.pyo
380
%%PYTHON_SITELIBDIR%%/matplotlib/offsetbox.pyo
387
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/pcolormesh.pdf
381
%%PYTHON_SITELIBDIR%%/matplotlib/sankey.py
388
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/pcolormesh.png
382
%%PYTHON_SITELIBDIR%%/matplotlib/sankey.pyc
389
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/pcolormesh.svg
383
%%PYTHON_SITELIBDIR%%/matplotlib/sankey.pyo
384
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/dviread/test.map
385
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn0g04.png
386
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn6a08.png
387
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn2c08.png
388
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn4a08.png
389
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn3p01.png
390
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn3p08.png
391
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn4a16.png
392
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn0g02.png
393
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn2c16.png
394
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn6a16.png
395
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn3p04.png
396
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn0g08.png
397
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn0g01.png
398
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn3p02.png
399
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn0g16.png
400
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_backend_pdf/pdf_use14corefonts.pdf
401
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-img.png
402
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-con.png
403
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-img.png
404
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-con.png
405
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/trig-ref-img.png
406
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/trig-ref-con.png
407
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/trig-lin-img.png
408
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/trig-lin-con.png
409
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-img.png
410
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-con.png
411
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-con.png
412
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-img.png
413
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-img.png
414
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-con.png
415
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-con.png
416
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-img.png
417
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/trig-nn-img.png
418
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/steep-lin-con.png
419
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-img.png
420
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/steep-lin-img.png
421
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-con.png
422
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-con.png
423
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/steep-ref-con.png
424
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-img.png
425
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-con.png
426
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-img.png
427
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/steep-ref-img.png
428
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-con.png
429
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-img.png
430
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-con.png
431
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-img.png
432
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-con.png
433
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-con.png
434
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-con.png
435
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-img.png
436
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-img.png
437
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-img.png
438
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-con.png
439
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/steep-nn-img.png
440
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-con.png
441
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-con.png
442
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-img.png
443
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/steep-nn-con.png
444
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/trig-nn-con.png
445
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-img.png
446
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-img.png
447
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-img.png
448
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-con.png
449
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-con.png
450
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-con.png
451
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-img.png
452
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-con.png
453
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-con.png
454
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-img.png
455
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-img.png
456
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-img.png
457
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-con.png
458
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-con.png
459
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-img.png
460
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-img.png
461
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.svg
462
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.svg
463
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.pdf
464
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.pdf
465
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.png
466
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.png
467
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.svg
468
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.svg
469
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.png
470
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.png
471
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.pdf
472
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.pdf
473
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.svg
474
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.svg
475
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.pdf
476
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.pdf
477
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.png
478
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.png
479
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_figure/figure_today.png
480
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_figure/figure_today.pdf
481
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_figure/figure_today.svg
482
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.svg
483
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.pdf
484
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_legend/legend_auto2.png
485
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_legend/legend_auto2.pdf
486
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_legend/legend_auto2.svg
487
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_legend/legend_auto1.svg
488
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_legend/legend_auto1.png
489
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_legend/legend_auto1.pdf
490
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.pdf
491
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.svg
492
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.pdf
493
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.png
494
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.svg
495
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_21.png
496
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_33.png
497
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.pdf
498
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_57.png
499
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.svg
500
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.png
501
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.pdf
502
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_50.png
503
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.svg
504
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.png
505
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.svg
506
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_48.png
507
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.pdf
508
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.svg
509
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.pdf
510
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_35.svg
511
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_26.png
512
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_34.png
513
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.pdf
514
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.svg
515
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.svg
516
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.png
517
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_54.png
518
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_46.png
519
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.pdf
520
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.png
521
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_22.png
522
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.svg
523
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.png
524
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_28.png
525
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.svg
526
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.png
527
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_25.png
528
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_54.svg
529
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.png
530
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.pdf
531
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_54.svg
532
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_59.png
533
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.svg
534
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.svg
535
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.png
536
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_53.png
537
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_41.png
538
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.svg
539
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.png
540
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.svg
541
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_10.png
542
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.png
543
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.pdf
544
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_08.png
545
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.png
546
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.pdf
547
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.svg
548
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_57.pdf
549
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.png
550
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.png
551
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.pdf
552
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_38.pdf
553
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.pdf
554
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.png
555
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_17.png
556
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_38.pdf
557
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.png
558
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.pdf
559
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.svg
560
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_57.png
561
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.png
562
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.pdf
563
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_00.svg
564
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.png
565
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.pdf
566
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.svg
567
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_19.png
568
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.pdf
569
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_01.png
570
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_13.png
571
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.svg
572
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.png
573
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.pdf
574
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.svg
575
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_38.png
576
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.pdf
577
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_06.png
578
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_14.png
579
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.svg
580
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_38.png
581
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.png
582
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.png
583
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.pdf
584
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.pdf
585
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_05.png
586
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_17.png
587
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.svg
588
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.png
589
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_34.pdf
590
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_55.png
591
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.svg
592
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.pdf
593
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_55.png
594
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.pdf
595
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.pdf
596
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.png
597
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.svg
598
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.png
599
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.png
600
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.pdf
601
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.png
602
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.svg
603
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_02.png
604
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_10.png
605
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.svg
606
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_33.pdf
607
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.png
608
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.svg
609
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_08.png
610
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.pdf
611
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.pdf
612
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.pdf
613
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.png
614
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.png
615
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.svg
616
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_55.pdf
617
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.png
618
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_55.pdf
619
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_34.png
620
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.pdf
621
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_06.png
622
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_19.png
623
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.png
624
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.pdf
625
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_33.png
626
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.svg
627
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_01.png
628
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.pdf
629
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.png
630
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.svg
631
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.pdf
632
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_34.png
633
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.png
634
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.svg
635
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.svg
636
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.png
637
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_50.png
638
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_42.png
639
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_48.png
640
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.svg
641
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.png
642
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_51.svg
643
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.svg
644
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_57.png
645
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_45.png
646
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.pdf
647
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.png
648
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.svg
649
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.svg
650
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_39.png
651
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_33.png
652
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.png
653
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.svg
654
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.pdf
655
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.pdf
656
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.png
657
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_59.png
658
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_41.png
659
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.svg
660
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.svg
661
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.pdf
662
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_25.png
663
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_37.png
664
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.pdf
665
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.svg
666
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.pdf
667
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.svg
668
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_22.png
669
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_30.png
670
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.pdf
671
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.png
672
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.png
673
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.svg
674
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.pdf
675
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.svg
676
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_46.png
677
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.svg
678
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.pdf
679
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.png
680
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.png
681
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.svg
682
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.pdf
683
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.png
684
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.svg
685
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.pdf
686
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_07.png
687
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_15.png
688
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_51.png
689
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.png
690
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.svg
691
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.png
692
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.pdf
693
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.pdf
694
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.png
695
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.svg
696
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.png
697
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.pdf
698
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.png
699
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.svg
700
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_18.png
701
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.pdf
702
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.svg
703
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.pdf
704
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_00.png
705
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_12.png
706
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.png
707
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.png
708
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.pdf
709
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.pdf
710
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_51.pdf
711
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.png
712
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.pdf
713
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_16.png
714
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.png
715
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.pdf
716
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.svg
717
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.png
718
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.svg
719
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_11.png
720
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.png
721
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.pdf
722
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_09.png
723
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.png
724
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.pdf
725
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.svg
726
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.pdf
727
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.png
728
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.svg
729
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_24.png
730
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.png
731
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_55.svg
732
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.pdf
733
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_55.svg
734
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_58.png
735
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.png
736
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.svg
737
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.svg
738
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_52.png
739
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_40.png
740
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.pdf
741
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.svg
742
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.png
743
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.svg
744
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_55.png
745
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_47.png
746
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.pdf
747
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.png
748
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_23.png
749
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.png
750
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.svg
751
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_29.png
752
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.pdf
753
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_51.png
754
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.svg
755
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.svg
756
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.png
757
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_49.png
758
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.pdf
759
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.svg
760
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.pdf
761
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_34.svg
762
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_27.png
763
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_35.png
764
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.pdf
765
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.svg
766
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.pdf
767
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_33.svg
768
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.png
769
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_20.png
770
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_32.png
771
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.pdf
772
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_56.png
773
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.png
774
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.svg
775
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_23.png
776
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_31.png
777
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.pdf
778
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.svg
779
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.png
780
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.png
781
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_00.pdf
782
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.svg
783
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_47.png
784
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.svg
785
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.pdf
786
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.png
787
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_58.png
788
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_40.png
789
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.svg
790
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.svg
791
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.pdf
792
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_24.png
793
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_36.png
794
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.pdf
795
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.svg
796
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.pdf
797
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.svg
798
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_56.png
799
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_44.png
800
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.pdf
801
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.png
802
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_57.svg
803
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.svg
804
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_38.png
805
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_32.png
806
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.svg
807
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_00.png
808
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.pdf
809
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.pdf
810
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.png
811
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_35.png
812
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.svg
813
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.png
814
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.png
815
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_38.svg
816
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_51.png
817
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_43.png
818
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_49.png
819
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.svg
820
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.png
821
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_38.svg
822
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.svg
823
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_18.png
824
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.png
825
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.pdf
826
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.svg
827
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.png
828
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_00.png
829
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.pdf
830
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.svg
831
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.png
832
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.pdf
833
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.pdf
834
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.pdf
835
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.svg
836
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.png
837
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.png
838
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_54.pdf
839
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.png
840
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_54.pdf
841
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_35.png
842
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_07.png
843
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.pdf
844
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.png
845
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.pdf
846
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.svg
847
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_03.png
848
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.png
849
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_11.png
850
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.svg
851
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.pdf
852
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.svg
853
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.png
854
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.pdf
855
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_09.png
856
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_04.png
857
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_16.png
858
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.png
859
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.svg
860
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_35.pdf
861
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.svg
862
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_54.png
863
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.pdf
864
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_54.png
865
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.pdf
866
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.pdf
867
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.png
868
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.svg
869
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.png
870
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_49.png
871
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.png
872
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.svg
873
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_43.png
874
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.png
875
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.pdf
876
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_27.png
877
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_35.png
878
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.png
879
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.svg
880
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.pdf
881
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.png
882
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.svg
883
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.pdf
884
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_20.png
885
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_32.png
886
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.png
887
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.svg
888
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.svg
889
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_38.png
890
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.pdf
891
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_35.svg
892
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.pdf
893
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_35.svg
894
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.pdf
895
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_44.png
896
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.png
897
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.svg
898
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.png
899
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.svg
900
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.pdf
901
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_36.png
902
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.png
903
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.pdf
904
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_52.png
905
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_40.png
906
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.png
907
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.svg
908
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.pdf
909
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.svg
910
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.pdf
911
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_55.png
912
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_47.png
913
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.png
914
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_54.svg
915
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.pdf
916
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.svg
917
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_29.png
918
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.svg
919
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.png
920
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.svg
921
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_31.png
922
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.png
923
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.pdf
924
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.pdf
925
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_57.pdf
926
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.png
927
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.svg
928
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.svg
929
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_57.pdf
930
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.png
931
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.svg
932
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_04.png
933
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.png
934
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_09.png
935
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.pdf
936
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_38.pdf
937
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.png
938
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_03.png
939
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.png
940
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.png
941
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.pdf
942
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.png
943
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.pdf
944
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.png
945
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_07.png
946
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_15.png
947
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.pdf
948
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_00.svg
949
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.pdf
950
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_57.png
951
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.svg
952
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.pdf
953
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_57.png
954
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.png
955
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.svg
956
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.pdf
957
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.png
958
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.pdf
959
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.png
960
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.svg
961
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_00.png
962
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_12.png
963
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.pdf
964
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.pdf
965
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.svg
966
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.pdf
967
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.png
968
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.svg
969
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_38.png
970
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.pdf
971
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.svg
972
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_55.png
973
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_34.pdf
974
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.png
975
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_34.pdf
976
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.svg
977
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.png
978
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.png
979
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.pdf
980
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.pdf
981
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.svg
982
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_03.png
983
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_11.png
984
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_33.pdf
985
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.svg
986
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.png
987
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.pdf
988
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.svg
989
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_16.png
990
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_04.png
991
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.svg
992
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.png
993
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_33.pdf
994
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.png
995
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_12.png
996
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.png
997
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.svg
998
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.png
999
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.pdf
1000
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.pdf
1001
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_34.png
1002
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_18.png
1003
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.pdf
1004
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_34.png
1005
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_55.pdf
1006
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.png
1007
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.svg
1008
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.pdf
1009
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_33.png
1010
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.svg
1011
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.pdf
1012
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.svg
1013
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_15.png
1014
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.svg
1015
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.png
1016
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.pdf
1017
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_33.png
1018
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.svg
1019
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_51.svg
1020
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.svg
1021
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.png
1022
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_56.png
1023
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_44.png
1024
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.png
1025
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_51.svg
1026
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.svg
1027
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.png
1028
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_20.png
1029
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_38.png
1030
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.png
1031
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.svg
1032
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.png
1033
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_27.png
1034
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.pdf
1035
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.svg
1036
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.pdf
1037
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.png
1038
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.pdf
1039
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.svg
1040
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_51.png
1041
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_43.png
1042
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.svg
1043
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.pdf
1044
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.svg
1045
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.svg
1046
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.pdf
1047
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_29.png
1048
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_23.png
1049
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_31.png
1050
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.svg
1051
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.pdf
1052
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.svg
1053
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.pdf
1054
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_55.png
1055
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.png
1056
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.svg
1057
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.png
1058
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_52.png
1059
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_58.png
1060
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.png
1061
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.svg
1062
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.pdf
1063
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.svg
1064
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.pdf
1065
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_24.png
1066
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_36.png
1067
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.pdf
1068
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_51.png
1069
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.pdf
1070
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.svg
1071
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.png
1072
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_01.png
1073
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_13.png
1074
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.pdf
1075
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.pdf
1076
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.svg
1077
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.pdf
1078
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.png
1079
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.svg
1080
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_51.png
1081
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_06.png
1082
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_14.png
1083
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.pdf
1084
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.svg
1085
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.pdf
1086
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.svg
1087
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.png
1088
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.pdf
1089
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.png
1090
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.svg
1091
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.png
1092
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_08.png
1093
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.pdf
1094
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_51.pdf
1095
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.png
1096
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_02.png
1097
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.png
1098
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.png
1099
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.pdf
1100
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.png
1101
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_51.pdf
1102
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.png
1103
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.pdf
1104
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.pdf
1105
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.svg
1106
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.svg
1107
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.png
1108
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.pdf
1109
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.svg
1110
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.png
1111
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_05.png
1112
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.png
1113
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_54.png
1114
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_46.png
1115
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_55.svg
1116
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.png
1117
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.pdf
1118
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.svg
1119
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_28.png
1120
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.svg
1121
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.png
1122
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.svg
1123
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_30.png
1124
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.png
1125
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.pdf
1126
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.svg
1127
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.png
1128
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_37.png
1129
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.pdf
1130
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.png
1131
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.pdf
1132
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_53.png
1133
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_41.png
1134
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.svg
1135
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.png
1136
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.pdf
1137
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.svg
1138
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.pdf
1139
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_21.png
1140
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_33.png
1141
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.svg
1142
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.svg
1143
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.png
1144
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.pdf
1145
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_39.png
1146
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_34.svg
1147
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.pdf
1148
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_34.svg
1149
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_45.png
1150
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.svg
1151
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.png
1152
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.pdf
1153
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_48.png
1154
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_33.svg
1155
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.png
1156
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_42.png
1157
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.png
1158
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.pdf
1159
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_26.png
1160
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_34.png
1161
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.svg
1162
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.png
1163
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.pdf
1164
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_33.svg
1165
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.png
1166
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.pdf
1167
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.pdf
1168
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.png
1169
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.svg
1170
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.png
1171
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_53.png
1172
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_59.png
1173
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.svg
1174
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.png
1175
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.pdf
1176
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.svg
1177
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_00.pdf
1178
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_25.png
1179
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_37.png
1180
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.svg
1181
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.svg
1182
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.pdf
1183
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.svg
1184
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_28.png
1185
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.pdf
1186
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_22.png
1187
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_30.png
1188
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.svg
1189
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.pdf
1190
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.svg
1191
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_54.png
1192
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_00.png
1193
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.png
1194
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_57.svg
1195
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.pdf
1196
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_26.png
1197
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_57.svg
1198
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.pdf
1199
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.pdf
1200
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.png
1201
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.svg
1202
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_50.png
1203
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_42.png
1204
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.svg
1205
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.png
1206
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.svg
1207
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_57.png
1208
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_45.png
1209
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.png
1210
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.png
1211
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_38.svg
1212
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.svg
1213
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_21.png
1214
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_39.png
1215
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.pdf
1216
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.svg
1217
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.png
1218
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.pdf
1219
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.svg
1220
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_14.png
1221
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.png
1222
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.svg
1223
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.pdf
1224
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.svg
1225
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.png
1226
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_13.png
1227
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.png
1228
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.svg
1229
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.png
1230
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.pdf
1231
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.pdf
1232
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_35.png
1233
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_19.png
1234
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.pdf
1235
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_35.png
1236
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_54.pdf
1237
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.svg
1238
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.png
1239
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.pdf
1240
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.png
1241
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.svg
1242
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.pdf
1243
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.svg
1244
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_05.png
1245
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_17.png
1246
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.png
1247
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.svg
1248
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.pdf
1249
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.png
1250
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.pdf
1251
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_54.png
1252
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.svg
1253
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_35.pdf
1254
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.png
1255
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_35.pdf
1256
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.png
1257
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.png
1258
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.svg
1259
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.pdf
1260
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.pdf
1261
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.svg
1262
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_02.png
1263
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_10.png
1264
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_png/pngsuite.png
390
%%PYTHON_SITELIBDIR%%/matplotlib/patches.py
1265
%%PYTHON_SITELIBDIR%%/matplotlib/patches.py
391
%%PYTHON_SITELIBDIR%%/matplotlib/patches.pyc
1266
%%PYTHON_SITELIBDIR%%/matplotlib/patches.pyc
392
%%PYTHON_SITELIBDIR%%/matplotlib/patches.pyo
1267
%%PYTHON_SITELIBDIR%%/matplotlib/patches.pyo
Lines 429-437 Link Here
429
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/ipython_console_highlighting.py
1304
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/ipython_console_highlighting.py
430
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/ipython_console_highlighting.pyc
1305
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/ipython_console_highlighting.pyc
431
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/ipython_console_highlighting.pyo
1306
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/ipython_console_highlighting.pyo
432
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/ipython_directive.py
433
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/ipython_directive.pyc
434
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/ipython_directive.pyo
435
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/mathmpl.py
1307
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/mathmpl.py
436
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/mathmpl.pyc
1308
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/mathmpl.pyc
437
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/mathmpl.pyo
1309
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/mathmpl.pyo
Lines 492-497 Link Here
492
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_axes.py
1364
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_axes.py
493
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_axes.pyc
1365
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_axes.pyc
494
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_axes.pyo
1366
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_axes.pyo
1367
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_pdf.py
1368
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_pdf.pyc
1369
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_pdf.pyo
495
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_svg.py
1370
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_svg.py
496
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_svg.pyc
1371
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_svg.pyc
497
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_svg.pyo
1372
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_svg.pyo
Lines 504-518 Link Here
504
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dates.py
1379
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dates.py
505
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dates.pyc
1380
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dates.pyc
506
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dates.pyo
1381
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dates.pyo
1382
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_delaunay.py
1383
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_delaunay.pyc
1384
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_delaunay.pyo
1385
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dviread.py
1386
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dviread.pyc
1387
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dviread.pyo
1388
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_figure.py
1389
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_figure.pyc
1390
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_figure.pyo
507
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_image.py
1391
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_image.py
508
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_image.pyc
1392
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_image.pyc
509
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_image.pyo
1393
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_image.pyo
1394
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_legend.py
1395
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_legend.pyc
1396
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_legend.pyo
510
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mathtext.py
1397
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mathtext.py
511
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mathtext.pyc
1398
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mathtext.pyc
512
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mathtext.pyo
1399
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mathtext.pyo
513
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mlab.py
1400
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mlab.py
514
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mlab.pyc
1401
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mlab.pyc
515
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mlab.pyo
1402
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mlab.pyo
1403
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_png.py
1404
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_png.pyc
1405
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_png.pyo
516
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_simplification.py
1406
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_simplification.py
517
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_simplification.pyc
1407
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_simplification.pyc
518
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_simplification.pyo
1408
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_simplification.pyo
Lines 522-536 Link Here
522
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_text.py
1412
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_text.py
523
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_text.pyc
1413
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_text.pyc
524
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_text.pyo
1414
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_text.pyo
1415
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_tightlayout.py
1416
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_tightlayout.pyc
1417
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_tightlayout.pyo
525
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_transforms.py
1418
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_transforms.py
526
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_transforms.pyc
1419
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_transforms.pyc
527
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_transforms.pyo
1420
%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_transforms.pyo
1421
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/arc_ellipse.pdf
1422
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/arc_ellipse.png
1423
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/arc_ellipse.svg
528
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.pdf
1424
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.pdf
529
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.png
1425
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.png
530
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.svg
1426
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.svg
531
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.pdf
1427
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.pdf
532
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.png
1428
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.png
533
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.svg
1429
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.svg
1430
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/canonical.pdf
1431
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/canonical.png
1432
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/canonical.svg
534
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/const_xy.pdf
1433
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/const_xy.pdf
535
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/const_xy.png
1434
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/const_xy.png
536
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/const_xy.svg
1435
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/const_xy.svg
Lines 564-575 Link Here
564
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/imshow_clip.pdf
1463
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/imshow_clip.pdf
565
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/imshow_clip.png
1464
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/imshow_clip.png
566
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/imshow_clip.svg
1465
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/imshow_clip.svg
1466
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/markevery.pdf
1467
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/markevery.png
1468
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/markevery.svg
1469
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/markevery_line.pdf
1470
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/markevery_line.png
1471
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/markevery_line.svg
567
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.pdf
1472
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.pdf
568
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.png
1473
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.png
569
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.svg
1474
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.svg
570
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/offset_points.pdf
1475
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/offset_points.pdf
571
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/offset_points.png
1476
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/offset_points.png
572
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/offset_points.svg
1477
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/offset_points.svg
1478
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/pcolormesh.pdf
1479
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/pcolormesh.png
1480
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/pcolormesh.svg
573
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_axes.pdf
1481
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_axes.pdf
574
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_axes.png
1482
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_axes.png
575
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_axes.svg
1483
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_axes.svg
Lines 579-587 Link Here
579
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_rmin.pdf
1487
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_rmin.pdf
580
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_rmin.png
1488
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_rmin.png
581
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_rmin.svg
1489
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_rmin.svg
1490
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_theta_position.pdf
1491
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_theta_position.png
1492
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_theta_position.svg
582
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_units.pdf
1493
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_units.pdf
583
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_units.png
1494
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_units.png
584
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_units.svg
1495
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_units.svg
1496
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_units_2.pdf
1497
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_units_2.png
1498
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_units_2.svg
585
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.pdf
1499
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.pdf
586
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.png
1500
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.png
587
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.svg
1501
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.svg
Lines 603-608 Link Here
603
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/symlog.pdf
1517
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/symlog.pdf
604
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/symlog.png
1518
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/symlog.png
605
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/symlog.svg
1519
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/symlog.svg
1520
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/symlog2.pdf
1521
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/symlog2.png
1522
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/symlog2.svg
1523
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/units_strings.pdf
1524
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/units_strings.png
1525
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/units_strings.svg
606
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.pdf
1526
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.pdf
607
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.png
1527
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.png
608
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.svg
1528
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.svg
Lines 635-649 Link Here
635
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/image_interps.pdf
1555
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/image_interps.pdf
636
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/image_interps.png
1556
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/image_interps.png
637
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/image_interps.svg
1557
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/image_interps.svg
638
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext.pdf
639
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext.png
640
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext.svg
641
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix.pdf
642
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix.png
643
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix.svg
644
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans.pdf
645
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans.png
646
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans.svg
647
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_simplification/clipper_edge.pdf
1558
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_simplification/clipper_edge.pdf
648
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_simplification/clipper_edge.png
1559
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_simplification/clipper_edge.png
649
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_simplification/clipper_edge.svg
1560
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_simplification/clipper_edge.svg
Lines 692-697 Link Here
692
%%PYTHON_SITELIBDIR%%/matplotlib/tight_bbox.py
1603
%%PYTHON_SITELIBDIR%%/matplotlib/tight_bbox.py
693
%%PYTHON_SITELIBDIR%%/matplotlib/tight_bbox.pyc
1604
%%PYTHON_SITELIBDIR%%/matplotlib/tight_bbox.pyc
694
%%PYTHON_SITELIBDIR%%/matplotlib/tight_bbox.pyo
1605
%%PYTHON_SITELIBDIR%%/matplotlib/tight_bbox.pyo
1606
%%PYTHON_SITELIBDIR%%/matplotlib/tight_layout.py
1607
%%PYTHON_SITELIBDIR%%/matplotlib/tight_layout.pyc
1608
%%PYTHON_SITELIBDIR%%/matplotlib/tight_layout.pyo
695
%%PYTHON_SITELIBDIR%%/matplotlib/transforms.py
1609
%%PYTHON_SITELIBDIR%%/matplotlib/transforms.py
696
%%PYTHON_SITELIBDIR%%/matplotlib/transforms.pyc
1610
%%PYTHON_SITELIBDIR%%/matplotlib/transforms.pyc
697
%%PYTHON_SITELIBDIR%%/matplotlib/transforms.pyo
1611
%%PYTHON_SITELIBDIR%%/matplotlib/transforms.pyo
Lines 730-752 Link Here
730
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data/fonts
1644
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data/fonts
731
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data/images
1645
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data/images
732
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data
1646
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data
733
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/numerix/fft
734
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/numerix/linear_algebra
735
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/numerix/ma
736
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/numerix/mlab
737
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/numerix/random_array
738
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/numerix
739
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/projections
1647
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/projections
740
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/sphinxext
1648
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/sphinxext
741
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/testing/jpl_units
1649
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/testing/jpl_units
742
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/testing
1650
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/testing
1651
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/dviread
1652
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite
743
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes
1653
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes
1654
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_backend_pdf
744
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates
1655
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates
1656
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay
1657
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_figure
1658
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_legend
745
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image
1659
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image
746
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext
1660
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext
1661
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_png
747
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_simplification
1662
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_simplification
748
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_spines
1663
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_spines
749
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_text
1664
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_text
1665
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout
750
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images
1666
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images
751
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests
1667
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests
752
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tri
1668
@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tri
Lines 892-918 Link Here
892
%%PYTHON_SITELIBDIR%%/pylab.pyc
1808
%%PYTHON_SITELIBDIR%%/pylab.pyc
893
%%PYTHON_SITELIBDIR%%/pylab.pyo
1809
%%PYTHON_SITELIBDIR%%/pylab.pyo
894
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README.txt
1810
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README.txt
895
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/README.txt
1811
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animate_decay.py
896
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animation_blit_fltk.py
1812
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/basic_example.py
897
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animation_blit_gtk.py
1813
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/double_pendulum_animated.py
898
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animation_blit_gtk2.py
1814
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/dynamic_image.py
899
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animation_blit_qt.py
1815
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/dynamic_image2.py
900
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animation_blit_qt4.py
1816
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/histogram.py
901
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animation_blit_tk.py
1817
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/README.txt
902
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animation_blit_wx.py
1818
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animate_decay_tk_blit.py
903
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animate_decay_tk_blit.py
1819
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animation_blit_fltk.py
904
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/draggable_legend.py
1820
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animation_blit_gtk.py
905
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/dynamic_collection.py
1821
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animation_blit_gtk2.py
906
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/dynamic_image_gtkagg.py
1822
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animation_blit_qt.py
907
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/dynamic_image_wxagg2.py
1823
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animation_blit_qt4.py
908
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/gtk_timeout.py
1824
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animation_blit_tk.py
909
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/histogram_tkagg.py
1825
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animation_blit_wx.py
910
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/movie_demo.py
1826
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/draggable_legend.py
911
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/simple_anim_gtk.py
1827
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/dynamic_collection.py
912
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/simple_anim_tkagg.py
1828
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/dynamic_image_gtkagg.py
913
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/simple_idle_wx.py
1829
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/dynamic_image_wxagg2.py
914
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/simple_timer_wx.py
1830
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/gtk_timeout.py
1831
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/histogram_tkagg.py
1832
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/movie_demo.py
1833
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/simple_anim_gtk.py
1834
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/simple_anim_tkagg.py
1835
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/simple_idle_wx.py
1836
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/simple_timer_wx.py
1837
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/strip_chart_demo.py
1838
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/random_data.py
1839
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/simple_3danim.py
1840
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/simple_anim.py
915
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/strip_chart_demo.py
1841
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/strip_chart_demo.py
1842
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/subplots.py
916
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/README.txt
1843
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/README.txt
917
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/agg_oo.py
1844
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/agg_oo.py
918
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/artist_demo.py
1845
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/artist_demo.py
Lines 946-953 Link Here
946
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/path_patch_demo.py
1873
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/path_patch_demo.py
947
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/quad_bezier.py
1874
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/quad_bezier.py
948
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/radar_chart.py
1875
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/radar_chart.py
949
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/sankey_demo.py
950
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/scatter_piecharts.py
1876
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/scatter_piecharts.py
1877
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/sankey_demo_basics.py
1878
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/sankey_demo_links.py
1879
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/sankey_demo_old.py
1880
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/sankey_demo_rankine.py
951
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/span_regions.py
1881
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/span_regions.py
952
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/two_scales.py
1882
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/two_scales.py
953
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/unicode_minus.py
1883
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/unicode_minus.py
Lines 955-960 Link Here
955
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/watermark_text.py
1885
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/watermark_text.py
956
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axes_grid.py
1886
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axes_grid.py
957
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axes_grid2.py
1887
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axes_grid2.py
1888
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axes_hbox_divider.py
958
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axes_rgb.py
1889
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axes_rgb.py
959
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axisline_style.py
1890
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axisline_style.py
960
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_colorbar_with_inset_locator.py
1891
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_colorbar_with_inset_locator.py
Lines 965-970 Link Here
965
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_parasite_axes2.py
1896
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_parasite_axes2.py
966
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/inset_locator_demo.py
1897
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/inset_locator_demo.py
967
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/inset_locator_demo2.py
1898
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/inset_locator_demo2.py
1899
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/make_room_for_ylabel_using_axesgrid.py
968
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/parasite_simple2.py
1900
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/parasite_simple2.py
969
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/scatter_hist.py
1901
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/scatter_hist.py
970
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/simple_anchored_artists.py
1902
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/simple_anchored_artists.py
Lines 993-998 Link Here
993
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/event_handling/viewlims.py
1925
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/event_handling/viewlims.py
994
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/event_handling/zoom_window.py
1926
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/event_handling/zoom_window.py
995
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/contour_manual.py
1927
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/contour_manual.py
1928
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/developer_commit_history.py
996
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/rasterization_demo.py
1929
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/rasterization_demo.py
997
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/font_indexing.py
1930
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/font_indexing.py
998
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/ftface_props.py
1931
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/ftface_props.py
Lines 1013-1021 Link Here
1013
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/contour3d_demo2.py
1946
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/contour3d_demo2.py
1014
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/contour3d_demo3.py
1947
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/contour3d_demo3.py
1015
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/contourf3d_demo.py
1948
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/contourf3d_demo.py
1949
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/contourf3d_demo2.py
1016
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/hist3d_demo.py
1950
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/hist3d_demo.py
1017
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/lines3d_demo.py
1951
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/lines3d_demo.py
1952
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/lorenz_attractor.py
1018
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/mixed_subplots_demo.py
1953
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/mixed_subplots_demo.py
1954
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/offset_demo.py
1019
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/pathpatch3d_demo.py
1955
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/pathpatch3d_demo.py
1020
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/polys3d_demo.py
1956
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/polys3d_demo.py
1021
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/rotate_axes3d_demo.py
1957
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/rotate_axes3d_demo.py
Lines 1029-1039 Link Here
1029
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/wire3d_animation_demo.py
1965
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/wire3d_animation_demo.py
1030
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/2dcollections3d_demo.py
1966
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/2dcollections3d_demo.py
1031
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/README
1967
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/README
1032
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/__init__.py
1033
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/accented_text.py
1968
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/accented_text.py
1034
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/agg_buffer_to_array.py
1969
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/agg_buffer_to_array.py
1035
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/alignment_test.py
1970
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/alignment_test.py
1036
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/anchored_artists.py
1971
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/anchored_artists.py
1972
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/animation_demo.py
1037
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/annotation_demo.py
1973
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/annotation_demo.py
1038
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/annotation_demo2.py
1974
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/annotation_demo2.py
1039
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/annotation_demo3.py
1975
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/annotation_demo3.py
Lines 1056-1061 Link Here
1056
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/boxplot_demo2.py
1992
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/boxplot_demo2.py
1057
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/boxplot_demo3.py
1993
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/boxplot_demo3.py
1058
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/break.py
1994
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/break.py
1995
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/broken_axis.py
1059
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/broken_barh.py
1996
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/broken_barh.py
1060
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/centered_ticklabels.py
1997
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/centered_ticklabels.py
1061
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/clippedline.py
1998
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/clippedline.py
Lines 1092-1097 Link Here
1092
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/demo_ribbon_box.py
2029
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/demo_ribbon_box.py
1093
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/demo_text_path.py
2030
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/demo_text_path.py
1094
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/demo_text_rotation_mode.py
2031
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/demo_text_rotation_mode.py
2032
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/demo_tight_layout.py
1095
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/dolphin.py
2033
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/dolphin.py
1096
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/ellipse_collection.py
2034
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/ellipse_collection.py
1097
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/ellipse_demo.py
2035
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/ellipse_demo.py
Lines 1149-1154 Link Here
1149
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_demo.py
2087
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_demo.py
1150
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_demo2.py
2088
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_demo2.py
1151
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_demo3.py
2089
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_demo3.py
2090
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_demo4.py
2091
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_demo_custom_handler.py
1152
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_scatter.py
2092
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_scatter.py
1153
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_translucent.py
2093
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_translucent.py
1154
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/line_collection.py
2094
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/line_collection.py
Lines 1207-1212 Link Here
1207
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/scatter_masked.py
2147
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/scatter_masked.py
1208
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/scatter_profile.py
2148
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/scatter_profile.py
1209
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/scatter_star_poly.py
2149
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/scatter_star_poly.py
2150
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/scatter_symbol.py
1210
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/set_and_get.py
2151
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/set_and_get.py
1211
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/shading_example.py
2152
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/shading_example.py
1212
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/shared_axis_across_figures.py
2153
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/shared_axis_across_figures.py
Lines 1251-1274 Link Here
1251
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/xcorr_demo.py
2192
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/xcorr_demo.py
1252
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/zorder_demo.py
2193
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/zorder_demo.py
1253
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/backend_driver.py
2194
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/backend_driver.py
1254
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn0g01.png
1255
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn0g02.png
1256
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn0g04.png
1257
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn0g08.png
1258
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn0g16.png
1259
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn2c08.png
1260
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn2c16.png
1261
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn3p01.png
1262
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn3p02.png
1263
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn3p04.png
1264
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn3p08.png
1265
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn4a08.png
1266
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn4a16.png
1267
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn6a08.png
1268
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn6a16.png
1269
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/pngsuite.py
1270
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/truth.png
1271
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/units/__init__.py
1272
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/units/annotate_with_units.py
2195
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/units/annotate_with_units.py
1273
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/units/artist_tests.py
2196
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/units/artist_tests.py
1274
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/units/bar_demo2.py
2197
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/units/bar_demo2.py
Lines 1287-1293 Link Here
1287
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_qt.py
2210
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_qt.py
1288
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_qt4.py
2211
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_qt4.py
1289
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_tk.py
2212
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_tk.py
1290
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_tk2.py
1291
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_wx2.py
2213
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_wx2.py
1292
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_wx3.py
2214
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_wx3.py
1293
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_wx4.py
2215
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_wx4.py
Lines 1305-1310 Link Here
1305
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/pylab_with_gtk.py
2227
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/pylab_with_gtk.py
1306
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/rec_edit_gtk_custom.py
2228
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/rec_edit_gtk_custom.py
1307
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/rec_edit_gtk_simple.py
2229
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/rec_edit_gtk_simple.py
2230
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/svg_histogram.py
1308
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/wxcursor_demo.py
2231
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/wxcursor_demo.py
1309
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/README.txt
2232
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/README.txt
1310
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/buttons.py
2233
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/buttons.py
Lines 1316-1321 Link Here
1316
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/rectangle_selector.py
2239
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/rectangle_selector.py
1317
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/slider_demo.py
2240
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/slider_demo.py
1318
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/span_selector.py
2241
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/span_selector.py
2242
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/animation/old_animation
1319
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/animation
2243
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/animation
1320
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/api
2244
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/api
1321
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/axes_grid
2245
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/axes_grid
Lines 1323-1329 Link Here
1323
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/misc
2247
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/misc
1324
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/mplot3d
2248
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/mplot3d
1325
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pylab_examples
2249
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pylab_examples
1326
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/pngsuite
1327
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests
2250
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests
1328
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/units
2251
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/units
1329
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/user_interfaces
2252
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/user_interfaces

Return to bug 166329