summaryrefslogtreecommitdiff
path: root/graphics/py-matplotlib/PLIST
blob: 91a955a1e31d3fece31fa2372cdd9311dfaf5a6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
@comment $NetBSD: PLIST,v 1.29 2022/10/13 16:04:39 adam Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/namespace_packages.txt
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/${EGG_NAME}-nspkg.pth
${PYSITELIB}/matplotlib/__init__.py
${PYSITELIB}/matplotlib/__init__.pyc
${PYSITELIB}/matplotlib/__init__.pyo
${PYSITELIB}/matplotlib/_afm.py
${PYSITELIB}/matplotlib/_afm.pyc
${PYSITELIB}/matplotlib/_afm.pyo
${PYSITELIB}/matplotlib/_animation_data.py
${PYSITELIB}/matplotlib/_animation_data.pyc
${PYSITELIB}/matplotlib/_animation_data.pyo
${PYSITELIB}/matplotlib/_api/__init__.py
${PYSITELIB}/matplotlib/_api/__init__.pyc
${PYSITELIB}/matplotlib/_api/__init__.pyo
${PYSITELIB}/matplotlib/_api/deprecation.py
${PYSITELIB}/matplotlib/_api/deprecation.pyc
${PYSITELIB}/matplotlib/_api/deprecation.pyo
${PYSITELIB}/matplotlib/_blocking_input.py
${PYSITELIB}/matplotlib/_blocking_input.pyc
${PYSITELIB}/matplotlib/_blocking_input.pyo
${PYSITELIB}/matplotlib/_c_internal_utils.so
${PYSITELIB}/matplotlib/_cm.py
${PYSITELIB}/matplotlib/_cm.pyc
${PYSITELIB}/matplotlib/_cm.pyo
${PYSITELIB}/matplotlib/_cm_listed.py
${PYSITELIB}/matplotlib/_cm_listed.pyc
${PYSITELIB}/matplotlib/_cm_listed.pyo
${PYSITELIB}/matplotlib/_color_data.py
${PYSITELIB}/matplotlib/_color_data.pyc
${PYSITELIB}/matplotlib/_color_data.pyo
${PYSITELIB}/matplotlib/_constrained_layout.py
${PYSITELIB}/matplotlib/_constrained_layout.pyc
${PYSITELIB}/matplotlib/_constrained_layout.pyo
${PYSITELIB}/matplotlib/_docstring.py
${PYSITELIB}/matplotlib/_docstring.pyc
${PYSITELIB}/matplotlib/_docstring.pyo
${PYSITELIB}/matplotlib/_enums.py
${PYSITELIB}/matplotlib/_enums.pyc
${PYSITELIB}/matplotlib/_enums.pyo
${PYSITELIB}/matplotlib/_fontconfig_pattern.py
${PYSITELIB}/matplotlib/_fontconfig_pattern.pyc
${PYSITELIB}/matplotlib/_fontconfig_pattern.pyo
${PYSITELIB}/matplotlib/_image.so
${PYSITELIB}/matplotlib/_internal_utils.py
${PYSITELIB}/matplotlib/_internal_utils.pyc
${PYSITELIB}/matplotlib/_internal_utils.pyo
${PYSITELIB}/matplotlib/_layoutgrid.py
${PYSITELIB}/matplotlib/_layoutgrid.pyc
${PYSITELIB}/matplotlib/_layoutgrid.pyo
${PYSITELIB}/matplotlib/_mathtext.py
${PYSITELIB}/matplotlib/_mathtext.pyc
${PYSITELIB}/matplotlib/_mathtext.pyo
${PYSITELIB}/matplotlib/_mathtext_data.py
${PYSITELIB}/matplotlib/_mathtext_data.pyc
${PYSITELIB}/matplotlib/_mathtext_data.pyo
${PYSITELIB}/matplotlib/_path.so
${PYSITELIB}/matplotlib/_pylab_helpers.py
${PYSITELIB}/matplotlib/_pylab_helpers.pyc
${PYSITELIB}/matplotlib/_pylab_helpers.pyo
${PYSITELIB}/matplotlib/_qhull.so
${PYSITELIB}/matplotlib/_text_helpers.py
${PYSITELIB}/matplotlib/_text_helpers.pyc
${PYSITELIB}/matplotlib/_text_helpers.pyo
${PYSITELIB}/matplotlib/_tight_bbox.py
${PYSITELIB}/matplotlib/_tight_bbox.pyc
${PYSITELIB}/matplotlib/_tight_bbox.pyo
${PYSITELIB}/matplotlib/_tight_layout.py
${PYSITELIB}/matplotlib/_tight_layout.pyc
${PYSITELIB}/matplotlib/_tight_layout.pyo
${PYSITELIB}/matplotlib/_tri.so
${PYSITELIB}/matplotlib/_ttconv.so
${PYSITELIB}/matplotlib/_type1font.py
${PYSITELIB}/matplotlib/_type1font.pyc
${PYSITELIB}/matplotlib/_type1font.pyo
${PYSITELIB}/matplotlib/_version.py
${PYSITELIB}/matplotlib/_version.pyc
${PYSITELIB}/matplotlib/_version.pyo
${PYSITELIB}/matplotlib/afm.py
${PYSITELIB}/matplotlib/afm.pyc
${PYSITELIB}/matplotlib/afm.pyo
${PYSITELIB}/matplotlib/animation.py
${PYSITELIB}/matplotlib/animation.pyc
${PYSITELIB}/matplotlib/animation.pyo
${PYSITELIB}/matplotlib/artist.py
${PYSITELIB}/matplotlib/artist.pyc
${PYSITELIB}/matplotlib/artist.pyo
${PYSITELIB}/matplotlib/axes/__init__.py
${PYSITELIB}/matplotlib/axes/__init__.pyc
${PYSITELIB}/matplotlib/axes/__init__.pyo
${PYSITELIB}/matplotlib/axes/_axes.py
${PYSITELIB}/matplotlib/axes/_axes.pyc
${PYSITELIB}/matplotlib/axes/_axes.pyo
${PYSITELIB}/matplotlib/axes/_base.py
${PYSITELIB}/matplotlib/axes/_base.pyc
${PYSITELIB}/matplotlib/axes/_base.pyo
${PYSITELIB}/matplotlib/axes/_secondary_axes.py
${PYSITELIB}/matplotlib/axes/_secondary_axes.pyc
${PYSITELIB}/matplotlib/axes/_secondary_axes.pyo
${PYSITELIB}/matplotlib/axes/_subplots.py
${PYSITELIB}/matplotlib/axes/_subplots.pyc
${PYSITELIB}/matplotlib/axes/_subplots.pyo
${PYSITELIB}/matplotlib/axis.py
${PYSITELIB}/matplotlib/axis.pyc
${PYSITELIB}/matplotlib/axis.pyo
${PYSITELIB}/matplotlib/backend_bases.py
${PYSITELIB}/matplotlib/backend_bases.pyc
${PYSITELIB}/matplotlib/backend_bases.pyo
${PYSITELIB}/matplotlib/backend_managers.py
${PYSITELIB}/matplotlib/backend_managers.pyc
${PYSITELIB}/matplotlib/backend_managers.pyo
${PYSITELIB}/matplotlib/backend_tools.py
${PYSITELIB}/matplotlib/backend_tools.pyc
${PYSITELIB}/matplotlib/backend_tools.pyo
${PYSITELIB}/matplotlib/backends/__init__.py
${PYSITELIB}/matplotlib/backends/__init__.pyc
${PYSITELIB}/matplotlib/backends/__init__.pyo
${PYSITELIB}/matplotlib/backends/_backend_agg.so
${PYSITELIB}/matplotlib/backends/_backend_gtk.py
${PYSITELIB}/matplotlib/backends/_backend_gtk.pyc
${PYSITELIB}/matplotlib/backends/_backend_gtk.pyo
${PYSITELIB}/matplotlib/backends/_backend_pdf_ps.py
${PYSITELIB}/matplotlib/backends/_backend_pdf_ps.pyc
${PYSITELIB}/matplotlib/backends/_backend_pdf_ps.pyo
${PYSITELIB}/matplotlib/backends/_backend_tk.py
${PYSITELIB}/matplotlib/backends/_backend_tk.pyc
${PYSITELIB}/matplotlib/backends/_backend_tk.pyo
${PYSITELIB}/matplotlib/backends/_tkagg.so
${PYSITELIB}/matplotlib/backends/backend_agg.py
${PYSITELIB}/matplotlib/backends/backend_agg.pyc
${PYSITELIB}/matplotlib/backends/backend_agg.pyo
${PYSITELIB}/matplotlib/backends/backend_cairo.py
${PYSITELIB}/matplotlib/backends/backend_cairo.pyc
${PYSITELIB}/matplotlib/backends/backend_cairo.pyo
${PYSITELIB}/matplotlib/backends/backend_gtk3.py
${PYSITELIB}/matplotlib/backends/backend_gtk3.pyc
${PYSITELIB}/matplotlib/backends/backend_gtk3.pyo
${PYSITELIB}/matplotlib/backends/backend_gtk3agg.py
${PYSITELIB}/matplotlib/backends/backend_gtk3agg.pyc
${PYSITELIB}/matplotlib/backends/backend_gtk3agg.pyo
${PYSITELIB}/matplotlib/backends/backend_gtk3cairo.py
${PYSITELIB}/matplotlib/backends/backend_gtk3cairo.pyc
${PYSITELIB}/matplotlib/backends/backend_gtk3cairo.pyo
${PYSITELIB}/matplotlib/backends/backend_gtk4.py
${PYSITELIB}/matplotlib/backends/backend_gtk4.pyc
${PYSITELIB}/matplotlib/backends/backend_gtk4.pyo
${PYSITELIB}/matplotlib/backends/backend_gtk4agg.py
${PYSITELIB}/matplotlib/backends/backend_gtk4agg.pyc
${PYSITELIB}/matplotlib/backends/backend_gtk4agg.pyo
${PYSITELIB}/matplotlib/backends/backend_gtk4cairo.py
${PYSITELIB}/matplotlib/backends/backend_gtk4cairo.pyc
${PYSITELIB}/matplotlib/backends/backend_gtk4cairo.pyo
${PYSITELIB}/matplotlib/backends/backend_macosx.py
${PYSITELIB}/matplotlib/backends/backend_macosx.pyc
${PYSITELIB}/matplotlib/backends/backend_macosx.pyo
${PYSITELIB}/matplotlib/backends/backend_mixed.py
${PYSITELIB}/matplotlib/backends/backend_mixed.pyc
${PYSITELIB}/matplotlib/backends/backend_mixed.pyo
${PYSITELIB}/matplotlib/backends/backend_nbagg.py
${PYSITELIB}/matplotlib/backends/backend_nbagg.pyc
${PYSITELIB}/matplotlib/backends/backend_nbagg.pyo
${PYSITELIB}/matplotlib/backends/backend_pdf.py
${PYSITELIB}/matplotlib/backends/backend_pdf.pyc
${PYSITELIB}/matplotlib/backends/backend_pdf.pyo
${PYSITELIB}/matplotlib/backends/backend_pgf.py
${PYSITELIB}/matplotlib/backends/backend_pgf.pyc
${PYSITELIB}/matplotlib/backends/backend_pgf.pyo
${PYSITELIB}/matplotlib/backends/backend_ps.py
${PYSITELIB}/matplotlib/backends/backend_ps.pyc
${PYSITELIB}/matplotlib/backends/backend_ps.pyo
${PYSITELIB}/matplotlib/backends/backend_qt.py
${PYSITELIB}/matplotlib/backends/backend_qt.pyc
${PYSITELIB}/matplotlib/backends/backend_qt.pyo
${PYSITELIB}/matplotlib/backends/backend_qt5.py
${PYSITELIB}/matplotlib/backends/backend_qt5.pyc
${PYSITELIB}/matplotlib/backends/backend_qt5.pyo
${PYSITELIB}/matplotlib/backends/backend_qt5agg.py
${PYSITELIB}/matplotlib/backends/backend_qt5agg.pyc
${PYSITELIB}/matplotlib/backends/backend_qt5agg.pyo
${PYSITELIB}/matplotlib/backends/backend_qt5cairo.py
${PYSITELIB}/matplotlib/backends/backend_qt5cairo.pyc
${PYSITELIB}/matplotlib/backends/backend_qt5cairo.pyo
${PYSITELIB}/matplotlib/backends/backend_qtagg.py
${PYSITELIB}/matplotlib/backends/backend_qtagg.pyc
${PYSITELIB}/matplotlib/backends/backend_qtagg.pyo
${PYSITELIB}/matplotlib/backends/backend_qtcairo.py
${PYSITELIB}/matplotlib/backends/backend_qtcairo.pyc
${PYSITELIB}/matplotlib/backends/backend_qtcairo.pyo
${PYSITELIB}/matplotlib/backends/backend_svg.py
${PYSITELIB}/matplotlib/backends/backend_svg.pyc
${PYSITELIB}/matplotlib/backends/backend_svg.pyo
${PYSITELIB}/matplotlib/backends/backend_template.py
${PYSITELIB}/matplotlib/backends/backend_template.pyc
${PYSITELIB}/matplotlib/backends/backend_template.pyo
${PYSITELIB}/matplotlib/backends/backend_tkagg.py
${PYSITELIB}/matplotlib/backends/backend_tkagg.pyc
${PYSITELIB}/matplotlib/backends/backend_tkagg.pyo
${PYSITELIB}/matplotlib/backends/backend_tkcairo.py
${PYSITELIB}/matplotlib/backends/backend_tkcairo.pyc
${PYSITELIB}/matplotlib/backends/backend_tkcairo.pyo
${PYSITELIB}/matplotlib/backends/backend_webagg.py
${PYSITELIB}/matplotlib/backends/backend_webagg.pyc
${PYSITELIB}/matplotlib/backends/backend_webagg.pyo
${PYSITELIB}/matplotlib/backends/backend_webagg_core.py
${PYSITELIB}/matplotlib/backends/backend_webagg_core.pyc
${PYSITELIB}/matplotlib/backends/backend_webagg_core.pyo
${PYSITELIB}/matplotlib/backends/backend_wx.py
${PYSITELIB}/matplotlib/backends/backend_wx.pyc
${PYSITELIB}/matplotlib/backends/backend_wx.pyo
${PYSITELIB}/matplotlib/backends/backend_wxagg.py
${PYSITELIB}/matplotlib/backends/backend_wxagg.pyc
${PYSITELIB}/matplotlib/backends/backend_wxagg.pyo
${PYSITELIB}/matplotlib/backends/backend_wxcairo.py
${PYSITELIB}/matplotlib/backends/backend_wxcairo.pyc
${PYSITELIB}/matplotlib/backends/backend_wxcairo.pyo
${PYSITELIB}/matplotlib/backends/qt_compat.py
${PYSITELIB}/matplotlib/backends/qt_compat.pyc
${PYSITELIB}/matplotlib/backends/qt_compat.pyo
${PYSITELIB}/matplotlib/backends/qt_editor/__init__.py
${PYSITELIB}/matplotlib/backends/qt_editor/__init__.pyc
${PYSITELIB}/matplotlib/backends/qt_editor/__init__.pyo
${PYSITELIB}/matplotlib/backends/qt_editor/_formlayout.py
${PYSITELIB}/matplotlib/backends/qt_editor/_formlayout.pyc
${PYSITELIB}/matplotlib/backends/qt_editor/_formlayout.pyo
${PYSITELIB}/matplotlib/backends/qt_editor/figureoptions.py
${PYSITELIB}/matplotlib/backends/qt_editor/figureoptions.pyc
${PYSITELIB}/matplotlib/backends/qt_editor/figureoptions.pyo
${PYSITELIB}/matplotlib/backends/web_backend/.eslintrc.js
${PYSITELIB}/matplotlib/backends/web_backend/.prettierignore
${PYSITELIB}/matplotlib/backends/web_backend/.prettierrc
${PYSITELIB}/matplotlib/backends/web_backend/all_figures.html
${PYSITELIB}/matplotlib/backends/web_backend/css/boilerplate.css
${PYSITELIB}/matplotlib/backends/web_backend/css/fbm.css
${PYSITELIB}/matplotlib/backends/web_backend/css/mpl.css
${PYSITELIB}/matplotlib/backends/web_backend/css/page.css
${PYSITELIB}/matplotlib/backends/web_backend/ipython_inline_figure.html
${PYSITELIB}/matplotlib/backends/web_backend/js/mpl.js
${PYSITELIB}/matplotlib/backends/web_backend/js/mpl_tornado.js
${PYSITELIB}/matplotlib/backends/web_backend/js/nbagg_mpl.js
${PYSITELIB}/matplotlib/backends/web_backend/nbagg_uat.ipynb
${PYSITELIB}/matplotlib/backends/web_backend/package.json
${PYSITELIB}/matplotlib/backends/web_backend/single_figure.html
${PYSITELIB}/matplotlib/bezier.py
${PYSITELIB}/matplotlib/bezier.pyc
${PYSITELIB}/matplotlib/bezier.pyo
${PYSITELIB}/matplotlib/blocking_input.py
${PYSITELIB}/matplotlib/blocking_input.pyc
${PYSITELIB}/matplotlib/blocking_input.pyo
${PYSITELIB}/matplotlib/category.py
${PYSITELIB}/matplotlib/category.pyc
${PYSITELIB}/matplotlib/category.pyo
${PYSITELIB}/matplotlib/cbook/__init__.py
${PYSITELIB}/matplotlib/cbook/__init__.pyc
${PYSITELIB}/matplotlib/cbook/__init__.pyo
${PYSITELIB}/matplotlib/cm.py
${PYSITELIB}/matplotlib/cm.pyc
${PYSITELIB}/matplotlib/cm.pyo
${PYSITELIB}/matplotlib/collections.py
${PYSITELIB}/matplotlib/collections.pyc
${PYSITELIB}/matplotlib/collections.pyo
${PYSITELIB}/matplotlib/colorbar.py
${PYSITELIB}/matplotlib/colorbar.pyc
${PYSITELIB}/matplotlib/colorbar.pyo
${PYSITELIB}/matplotlib/colors.py
${PYSITELIB}/matplotlib/colors.pyc
${PYSITELIB}/matplotlib/colors.pyo
${PYSITELIB}/matplotlib/container.py
${PYSITELIB}/matplotlib/container.pyc
${PYSITELIB}/matplotlib/container.pyo
${PYSITELIB}/matplotlib/contour.py
${PYSITELIB}/matplotlib/contour.pyc
${PYSITELIB}/matplotlib/contour.pyo
${PYSITELIB}/matplotlib/dates.py
${PYSITELIB}/matplotlib/dates.pyc
${PYSITELIB}/matplotlib/dates.pyo
${PYSITELIB}/matplotlib/docstring.py
${PYSITELIB}/matplotlib/docstring.pyc
${PYSITELIB}/matplotlib/docstring.pyo
${PYSITELIB}/matplotlib/dviread.py
${PYSITELIB}/matplotlib/dviread.pyc
${PYSITELIB}/matplotlib/dviread.pyo
${PYSITELIB}/matplotlib/figure.py
${PYSITELIB}/matplotlib/figure.pyc
${PYSITELIB}/matplotlib/figure.pyo
${PYSITELIB}/matplotlib/font_manager.py
${PYSITELIB}/matplotlib/font_manager.pyc
${PYSITELIB}/matplotlib/font_manager.pyo
${PYSITELIB}/matplotlib/fontconfig_pattern.py
${PYSITELIB}/matplotlib/fontconfig_pattern.pyc
${PYSITELIB}/matplotlib/fontconfig_pattern.pyo
${PYSITELIB}/matplotlib/ft2font.so
${PYSITELIB}/matplotlib/gridspec.py
${PYSITELIB}/matplotlib/gridspec.pyc
${PYSITELIB}/matplotlib/gridspec.pyo
${PYSITELIB}/matplotlib/hatch.py
${PYSITELIB}/matplotlib/hatch.pyc
${PYSITELIB}/matplotlib/hatch.pyo
${PYSITELIB}/matplotlib/image.py
${PYSITELIB}/matplotlib/image.pyc
${PYSITELIB}/matplotlib/image.pyo
${PYSITELIB}/matplotlib/layout_engine.py
${PYSITELIB}/matplotlib/layout_engine.pyc
${PYSITELIB}/matplotlib/layout_engine.pyo
${PYSITELIB}/matplotlib/legend.py
${PYSITELIB}/matplotlib/legend.pyc
${PYSITELIB}/matplotlib/legend.pyo
${PYSITELIB}/matplotlib/legend_handler.py
${PYSITELIB}/matplotlib/legend_handler.pyc
${PYSITELIB}/matplotlib/legend_handler.pyo
${PYSITELIB}/matplotlib/lines.py
${PYSITELIB}/matplotlib/lines.pyc
${PYSITELIB}/matplotlib/lines.pyo
${PYSITELIB}/matplotlib/markers.py
${PYSITELIB}/matplotlib/markers.pyc
${PYSITELIB}/matplotlib/markers.pyo
${PYSITELIB}/matplotlib/mathtext.py
${PYSITELIB}/matplotlib/mathtext.pyc
${PYSITELIB}/matplotlib/mathtext.pyo
${PYSITELIB}/matplotlib/mlab.py
${PYSITELIB}/matplotlib/mlab.pyc
${PYSITELIB}/matplotlib/mlab.pyo
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/cmex10.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/cmmi10.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/cmr10.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/cmsy10.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/cmtt10.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pagd8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pagdo8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pagk8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pagko8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pbkd8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pbkdi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pbkl8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pbkli8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pcrb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pcrbo8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pcrr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pcrro8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvb8an.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvbo8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvbo8an.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvl8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvlo8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvr8an.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvro8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvro8an.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pncb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pncbi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pncr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pncri8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pplb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pplbi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pplr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pplri8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/psyr.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/ptmb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/ptmbi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/ptmr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/ptmri8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/putb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/putbi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/putr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/putri8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pzcmi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pzdr.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Bold.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-BoldOblique.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Oblique.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Courier.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Bold.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-BoldOblique.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Oblique.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Symbol.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Bold.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Times-BoldItalic.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Italic.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Roman.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/ZapfDingbats.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/readme.txt
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/DejaVuSans-Bold.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/DejaVuSans-BoldOblique.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/DejaVuSans-Oblique.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/DejaVuSansDisplay.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-Bold.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-BoldOblique.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-Oblique.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-Bold.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-BoldItalic.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-Italic.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/DejaVuSerif.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/DejaVuSerifDisplay.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/LICENSE_DEJAVU
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/LICENSE_STIX
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizFiveSymReg.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymReg.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymReg.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymReg.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymReg.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmb10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmex10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmmi10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmr10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmss10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmsy10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmtt10.ttf
${PYSITELIB}/matplotlib/mpl-data/images/back-symbolic.svg
${PYSITELIB}/matplotlib/mpl-data/images/back.pdf
${PYSITELIB}/matplotlib/mpl-data/images/back.png
${PYSITELIB}/matplotlib/mpl-data/images/back.svg
${PYSITELIB}/matplotlib/mpl-data/images/back_large.png
${PYSITELIB}/matplotlib/mpl-data/images/filesave-symbolic.svg
${PYSITELIB}/matplotlib/mpl-data/images/filesave.pdf
${PYSITELIB}/matplotlib/mpl-data/images/filesave.png
${PYSITELIB}/matplotlib/mpl-data/images/filesave.svg
${PYSITELIB}/matplotlib/mpl-data/images/filesave_large.png
${PYSITELIB}/matplotlib/mpl-data/images/forward-symbolic.svg
${PYSITELIB}/matplotlib/mpl-data/images/forward.pdf
${PYSITELIB}/matplotlib/mpl-data/images/forward.png
${PYSITELIB}/matplotlib/mpl-data/images/forward.svg
${PYSITELIB}/matplotlib/mpl-data/images/forward_large.png
${PYSITELIB}/matplotlib/mpl-data/images/hand.pdf
${PYSITELIB}/matplotlib/mpl-data/images/hand.png
${PYSITELIB}/matplotlib/mpl-data/images/hand.svg
${PYSITELIB}/matplotlib/mpl-data/images/help-symbolic.svg
${PYSITELIB}/matplotlib/mpl-data/images/help.pdf
${PYSITELIB}/matplotlib/mpl-data/images/help.png
${PYSITELIB}/matplotlib/mpl-data/images/help.svg
${PYSITELIB}/matplotlib/mpl-data/images/help_large.png
${PYSITELIB}/matplotlib/mpl-data/images/home-symbolic.svg
${PYSITELIB}/matplotlib/mpl-data/images/home.pdf
${PYSITELIB}/matplotlib/mpl-data/images/home.png
${PYSITELIB}/matplotlib/mpl-data/images/home.svg
${PYSITELIB}/matplotlib/mpl-data/images/home_large.png
${PYSITELIB}/matplotlib/mpl-data/images/matplotlib.pdf
${PYSITELIB}/matplotlib/mpl-data/images/matplotlib.png
${PYSITELIB}/matplotlib/mpl-data/images/matplotlib.svg
${PYSITELIB}/matplotlib/mpl-data/images/matplotlib_large.png
${PYSITELIB}/matplotlib/mpl-data/images/move-symbolic.svg
${PYSITELIB}/matplotlib/mpl-data/images/move.pdf
${PYSITELIB}/matplotlib/mpl-data/images/move.png
${PYSITELIB}/matplotlib/mpl-data/images/move.svg
${PYSITELIB}/matplotlib/mpl-data/images/move_large.png
${PYSITELIB}/matplotlib/mpl-data/images/qt4_editor_options.pdf
${PYSITELIB}/matplotlib/mpl-data/images/qt4_editor_options.png
${PYSITELIB}/matplotlib/mpl-data/images/qt4_editor_options.svg
${PYSITELIB}/matplotlib/mpl-data/images/qt4_editor_options_large.png
${PYSITELIB}/matplotlib/mpl-data/images/subplots-symbolic.svg
${PYSITELIB}/matplotlib/mpl-data/images/subplots.pdf
${PYSITELIB}/matplotlib/mpl-data/images/subplots.png
${PYSITELIB}/matplotlib/mpl-data/images/subplots.svg
${PYSITELIB}/matplotlib/mpl-data/images/subplots_large.png
${PYSITELIB}/matplotlib/mpl-data/images/zoom_to_rect-symbolic.svg
${PYSITELIB}/matplotlib/mpl-data/images/zoom_to_rect.pdf
${PYSITELIB}/matplotlib/mpl-data/images/zoom_to_rect.png
${PYSITELIB}/matplotlib/mpl-data/images/zoom_to_rect.svg
${PYSITELIB}/matplotlib/mpl-data/images/zoom_to_rect_large.png
${PYSITELIB}/matplotlib/mpl-data/kpsewhich.lua
${PYSITELIB}/matplotlib/mpl-data/matplotlibrc
${PYSITELIB}/matplotlib/mpl-data/plot_directive/plot_directive.css
${PYSITELIB}/matplotlib/mpl-data/sample_data/Minduka_Present_Blue_Pack.png
${PYSITELIB}/matplotlib/mpl-data/sample_data/README.txt
${PYSITELIB}/matplotlib/mpl-data/sample_data/Stocks.csv
${PYSITELIB}/matplotlib/mpl-data/sample_data/axes_grid/bivariate_normal.npy
${PYSITELIB}/matplotlib/mpl-data/sample_data/data_x_x2_x3.csv
${PYSITELIB}/matplotlib/mpl-data/sample_data/eeg.dat
${PYSITELIB}/matplotlib/mpl-data/sample_data/embedding_in_wx3.xrc
${PYSITELIB}/matplotlib/mpl-data/sample_data/goog.npz
${PYSITELIB}/matplotlib/mpl-data/sample_data/grace_hopper.jpg
${PYSITELIB}/matplotlib/mpl-data/sample_data/jacksboro_fault_dem.npz
${PYSITELIB}/matplotlib/mpl-data/sample_data/logo2.png
${PYSITELIB}/matplotlib/mpl-data/sample_data/membrane.dat
${PYSITELIB}/matplotlib/mpl-data/sample_data/msft.csv
${PYSITELIB}/matplotlib/mpl-data/sample_data/percent_bachelors_degrees_women_usa.csv
${PYSITELIB}/matplotlib/mpl-data/sample_data/s1045.ima.gz
${PYSITELIB}/matplotlib/mpl-data/sample_data/topobathy.npz
${PYSITELIB}/matplotlib/mpl-data/stylelib/Solarize_Light2.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/_classic_test_patch.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/_mpl-gallery-nogrid.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/_mpl-gallery.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/bmh.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/classic.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/dark_background.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/fast.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/fivethirtyeight.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/ggplot.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/grayscale.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-bright.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-colorblind.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-dark-palette.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-dark.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-darkgrid.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-deep.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-muted.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-notebook.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-paper.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-pastel.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-poster.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-talk.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-ticks.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-white.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-whitegrid.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8.mplstyle
${PYSITELIB}/matplotlib/mpl-data/stylelib/tableau-colorblind10.mplstyle
${PYSITELIB}/matplotlib/offsetbox.py
${PYSITELIB}/matplotlib/offsetbox.pyc
${PYSITELIB}/matplotlib/offsetbox.pyo
${PYSITELIB}/matplotlib/patches.py
${PYSITELIB}/matplotlib/patches.pyc
${PYSITELIB}/matplotlib/patches.pyo
${PYSITELIB}/matplotlib/path.py
${PYSITELIB}/matplotlib/path.pyc
${PYSITELIB}/matplotlib/path.pyo
${PYSITELIB}/matplotlib/patheffects.py
${PYSITELIB}/matplotlib/patheffects.pyc
${PYSITELIB}/matplotlib/patheffects.pyo
${PYSITELIB}/matplotlib/projections/__init__.py
${PYSITELIB}/matplotlib/projections/__init__.pyc
${PYSITELIB}/matplotlib/projections/__init__.pyo
${PYSITELIB}/matplotlib/projections/geo.py
${PYSITELIB}/matplotlib/projections/geo.pyc
${PYSITELIB}/matplotlib/projections/geo.pyo
${PYSITELIB}/matplotlib/projections/polar.py
${PYSITELIB}/matplotlib/projections/polar.pyc
${PYSITELIB}/matplotlib/projections/polar.pyo
${PYSITELIB}/matplotlib/pylab.py
${PYSITELIB}/matplotlib/pylab.pyc
${PYSITELIB}/matplotlib/pylab.pyo
${PYSITELIB}/matplotlib/pyplot.py
${PYSITELIB}/matplotlib/pyplot.pyc
${PYSITELIB}/matplotlib/pyplot.pyo
${PYSITELIB}/matplotlib/quiver.py
${PYSITELIB}/matplotlib/quiver.pyc
${PYSITELIB}/matplotlib/quiver.pyo
${PYSITELIB}/matplotlib/rcsetup.py
${PYSITELIB}/matplotlib/rcsetup.pyc
${PYSITELIB}/matplotlib/rcsetup.pyo
${PYSITELIB}/matplotlib/sankey.py
${PYSITELIB}/matplotlib/sankey.pyc
${PYSITELIB}/matplotlib/sankey.pyo
${PYSITELIB}/matplotlib/scale.py
${PYSITELIB}/matplotlib/scale.pyc
${PYSITELIB}/matplotlib/scale.pyo
${PYSITELIB}/matplotlib/sphinxext/__init__.py
${PYSITELIB}/matplotlib/sphinxext/__init__.pyc
${PYSITELIB}/matplotlib/sphinxext/__init__.pyo
${PYSITELIB}/matplotlib/sphinxext/mathmpl.py
${PYSITELIB}/matplotlib/sphinxext/mathmpl.pyc
${PYSITELIB}/matplotlib/sphinxext/mathmpl.pyo
${PYSITELIB}/matplotlib/sphinxext/plot_directive.py
${PYSITELIB}/matplotlib/sphinxext/plot_directive.pyc
${PYSITELIB}/matplotlib/sphinxext/plot_directive.pyo
${PYSITELIB}/matplotlib/spines.py
${PYSITELIB}/matplotlib/spines.pyc
${PYSITELIB}/matplotlib/spines.pyo
${PYSITELIB}/matplotlib/stackplot.py
${PYSITELIB}/matplotlib/stackplot.pyc
${PYSITELIB}/matplotlib/stackplot.pyo
${PYSITELIB}/matplotlib/streamplot.py
${PYSITELIB}/matplotlib/streamplot.pyc
${PYSITELIB}/matplotlib/streamplot.pyo
${PYSITELIB}/matplotlib/style/__init__.py
${PYSITELIB}/matplotlib/style/__init__.pyc
${PYSITELIB}/matplotlib/style/__init__.pyo
${PYSITELIB}/matplotlib/style/core.py
${PYSITELIB}/matplotlib/style/core.pyc
${PYSITELIB}/matplotlib/style/core.pyo
${PYSITELIB}/matplotlib/table.py
${PYSITELIB}/matplotlib/table.pyc
${PYSITELIB}/matplotlib/table.pyo
${PYSITELIB}/matplotlib/testing/__init__.py
${PYSITELIB}/matplotlib/testing/__init__.pyc
${PYSITELIB}/matplotlib/testing/__init__.pyo
${PYSITELIB}/matplotlib/testing/_markers.py
${PYSITELIB}/matplotlib/testing/_markers.pyc
${PYSITELIB}/matplotlib/testing/_markers.pyo
${PYSITELIB}/matplotlib/testing/compare.py
${PYSITELIB}/matplotlib/testing/compare.pyc
${PYSITELIB}/matplotlib/testing/compare.pyo
${PYSITELIB}/matplotlib/testing/conftest.py
${PYSITELIB}/matplotlib/testing/conftest.pyc
${PYSITELIB}/matplotlib/testing/conftest.pyo
${PYSITELIB}/matplotlib/testing/decorators.py
${PYSITELIB}/matplotlib/testing/decorators.pyc
${PYSITELIB}/matplotlib/testing/decorators.pyo
${PYSITELIB}/matplotlib/testing/exceptions.py
${PYSITELIB}/matplotlib/testing/exceptions.pyc
${PYSITELIB}/matplotlib/testing/exceptions.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/Duration.py
${PYSITELIB}/matplotlib/testing/jpl_units/Duration.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/Duration.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/Epoch.py
${PYSITELIB}/matplotlib/testing/jpl_units/Epoch.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/Epoch.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/EpochConverter.py
${PYSITELIB}/matplotlib/testing/jpl_units/EpochConverter.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/EpochConverter.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/StrConverter.py
${PYSITELIB}/matplotlib/testing/jpl_units/StrConverter.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/StrConverter.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDbl.py
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDbl.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDbl.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblConverter.py
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblConverter.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblConverter.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblFormatter.py
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblFormatter.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblFormatter.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/__init__.py
${PYSITELIB}/matplotlib/testing/jpl_units/__init__.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/__init__.pyo
${PYSITELIB}/matplotlib/testing/widgets.py
${PYSITELIB}/matplotlib/testing/widgets.pyc
${PYSITELIB}/matplotlib/testing/widgets.pyo
${PYSITELIB}/matplotlib/tests/__init__.py
${PYSITELIB}/matplotlib/tests/__init__.pyc
${PYSITELIB}/matplotlib/tests/__init__.pyo
${PYSITELIB}/matplotlib/tests/conftest.py
${PYSITELIB}/matplotlib/tests/conftest.pyc
${PYSITELIB}/matplotlib/tests/conftest.pyo
${PYSITELIB}/matplotlib/tests/test_afm.py
${PYSITELIB}/matplotlib/tests/test_afm.pyc
${PYSITELIB}/matplotlib/tests/test_afm.pyo
${PYSITELIB}/matplotlib/tests/test_agg.py
${PYSITELIB}/matplotlib/tests/test_agg.pyc
${PYSITELIB}/matplotlib/tests/test_agg.pyo
${PYSITELIB}/matplotlib/tests/test_agg_filter.py
${PYSITELIB}/matplotlib/tests/test_agg_filter.pyc
${PYSITELIB}/matplotlib/tests/test_agg_filter.pyo
${PYSITELIB}/matplotlib/tests/test_animation.py
${PYSITELIB}/matplotlib/tests/test_animation.pyc
${PYSITELIB}/matplotlib/tests/test_animation.pyo
${PYSITELIB}/matplotlib/tests/test_api.py
${PYSITELIB}/matplotlib/tests/test_api.pyc
${PYSITELIB}/matplotlib/tests/test_api.pyo
${PYSITELIB}/matplotlib/tests/test_arrow_patches.py
${PYSITELIB}/matplotlib/tests/test_arrow_patches.pyc
${PYSITELIB}/matplotlib/tests/test_arrow_patches.pyo
${PYSITELIB}/matplotlib/tests/test_artist.py
${PYSITELIB}/matplotlib/tests/test_artist.pyc
${PYSITELIB}/matplotlib/tests/test_artist.pyo
${PYSITELIB}/matplotlib/tests/test_axes.py
${PYSITELIB}/matplotlib/tests/test_axes.pyc
${PYSITELIB}/matplotlib/tests/test_axes.pyo
${PYSITELIB}/matplotlib/tests/test_backend_bases.py
${PYSITELIB}/matplotlib/tests/test_backend_bases.pyc
${PYSITELIB}/matplotlib/tests/test_backend_bases.pyo
${PYSITELIB}/matplotlib/tests/test_backend_cairo.py
${PYSITELIB}/matplotlib/tests/test_backend_cairo.pyc
${PYSITELIB}/matplotlib/tests/test_backend_cairo.pyo
${PYSITELIB}/matplotlib/tests/test_backend_gtk3.py
${PYSITELIB}/matplotlib/tests/test_backend_gtk3.pyc
${PYSITELIB}/matplotlib/tests/test_backend_gtk3.pyo
${PYSITELIB}/matplotlib/tests/test_backend_macosx.py
${PYSITELIB}/matplotlib/tests/test_backend_macosx.pyc
${PYSITELIB}/matplotlib/tests/test_backend_macosx.pyo
${PYSITELIB}/matplotlib/tests/test_backend_nbagg.py
${PYSITELIB}/matplotlib/tests/test_backend_nbagg.pyc
${PYSITELIB}/matplotlib/tests/test_backend_nbagg.pyo
${PYSITELIB}/matplotlib/tests/test_backend_pdf.py
${PYSITELIB}/matplotlib/tests/test_backend_pdf.pyc
${PYSITELIB}/matplotlib/tests/test_backend_pdf.pyo
${PYSITELIB}/matplotlib/tests/test_backend_pgf.py
${PYSITELIB}/matplotlib/tests/test_backend_pgf.pyc
${PYSITELIB}/matplotlib/tests/test_backend_pgf.pyo
${PYSITELIB}/matplotlib/tests/test_backend_ps.py
${PYSITELIB}/matplotlib/tests/test_backend_ps.pyc
${PYSITELIB}/matplotlib/tests/test_backend_ps.pyo
${PYSITELIB}/matplotlib/tests/test_backend_qt.py
${PYSITELIB}/matplotlib/tests/test_backend_qt.pyc
${PYSITELIB}/matplotlib/tests/test_backend_qt.pyo
${PYSITELIB}/matplotlib/tests/test_backend_svg.py
${PYSITELIB}/matplotlib/tests/test_backend_svg.pyc
${PYSITELIB}/matplotlib/tests/test_backend_svg.pyo
${PYSITELIB}/matplotlib/tests/test_backend_template.py
${PYSITELIB}/matplotlib/tests/test_backend_template.pyc
${PYSITELIB}/matplotlib/tests/test_backend_template.pyo
${PYSITELIB}/matplotlib/tests/test_backend_tk.py
${PYSITELIB}/matplotlib/tests/test_backend_tk.pyc
${PYSITELIB}/matplotlib/tests/test_backend_tk.pyo
${PYSITELIB}/matplotlib/tests/test_backend_tools.py
${PYSITELIB}/matplotlib/tests/test_backend_tools.pyc
${PYSITELIB}/matplotlib/tests/test_backend_tools.pyo
${PYSITELIB}/matplotlib/tests/test_backend_webagg.py
${PYSITELIB}/matplotlib/tests/test_backend_webagg.pyc
${PYSITELIB}/matplotlib/tests/test_backend_webagg.pyo
${PYSITELIB}/matplotlib/tests/test_backends_interactive.py
${PYSITELIB}/matplotlib/tests/test_backends_interactive.pyc
${PYSITELIB}/matplotlib/tests/test_backends_interactive.pyo
${PYSITELIB}/matplotlib/tests/test_basic.py
${PYSITELIB}/matplotlib/tests/test_basic.pyc
${PYSITELIB}/matplotlib/tests/test_basic.pyo
${PYSITELIB}/matplotlib/tests/test_bbox_tight.py
${PYSITELIB}/matplotlib/tests/test_bbox_tight.pyc
${PYSITELIB}/matplotlib/tests/test_bbox_tight.pyo
${PYSITELIB}/matplotlib/tests/test_category.py
${PYSITELIB}/matplotlib/tests/test_category.pyc
${PYSITELIB}/matplotlib/tests/test_category.pyo
${PYSITELIB}/matplotlib/tests/test_cbook.py
${PYSITELIB}/matplotlib/tests/test_cbook.pyc
${PYSITELIB}/matplotlib/tests/test_cbook.pyo
${PYSITELIB}/matplotlib/tests/test_collections.py
${PYSITELIB}/matplotlib/tests/test_collections.pyc
${PYSITELIB}/matplotlib/tests/test_collections.pyo
${PYSITELIB}/matplotlib/tests/test_colorbar.py
${PYSITELIB}/matplotlib/tests/test_colorbar.pyc
${PYSITELIB}/matplotlib/tests/test_colorbar.pyo
${PYSITELIB}/matplotlib/tests/test_colors.py
${PYSITELIB}/matplotlib/tests/test_colors.pyc
${PYSITELIB}/matplotlib/tests/test_colors.pyo
${PYSITELIB}/matplotlib/tests/test_compare_images.py
${PYSITELIB}/matplotlib/tests/test_compare_images.pyc
${PYSITELIB}/matplotlib/tests/test_compare_images.pyo
${PYSITELIB}/matplotlib/tests/test_constrainedlayout.py
${PYSITELIB}/matplotlib/tests/test_constrainedlayout.pyc
${PYSITELIB}/matplotlib/tests/test_constrainedlayout.pyo
${PYSITELIB}/matplotlib/tests/test_container.py
${PYSITELIB}/matplotlib/tests/test_container.pyc
${PYSITELIB}/matplotlib/tests/test_container.pyo
${PYSITELIB}/matplotlib/tests/test_contour.py
${PYSITELIB}/matplotlib/tests/test_contour.pyc
${PYSITELIB}/matplotlib/tests/test_contour.pyo
${PYSITELIB}/matplotlib/tests/test_cycles.py
${PYSITELIB}/matplotlib/tests/test_cycles.pyc
${PYSITELIB}/matplotlib/tests/test_cycles.pyo
${PYSITELIB}/matplotlib/tests/test_dates.py
${PYSITELIB}/matplotlib/tests/test_dates.pyc
${PYSITELIB}/matplotlib/tests/test_dates.pyo
${PYSITELIB}/matplotlib/tests/test_determinism.py
${PYSITELIB}/matplotlib/tests/test_determinism.pyc
${PYSITELIB}/matplotlib/tests/test_determinism.pyo
${PYSITELIB}/matplotlib/tests/test_doc.py
${PYSITELIB}/matplotlib/tests/test_doc.pyc
${PYSITELIB}/matplotlib/tests/test_doc.pyo
${PYSITELIB}/matplotlib/tests/test_dviread.py
${PYSITELIB}/matplotlib/tests/test_dviread.pyc
${PYSITELIB}/matplotlib/tests/test_dviread.pyo
${PYSITELIB}/matplotlib/tests/test_figure.py
${PYSITELIB}/matplotlib/tests/test_figure.pyc
${PYSITELIB}/matplotlib/tests/test_figure.pyo
${PYSITELIB}/matplotlib/tests/test_font_manager.py
${PYSITELIB}/matplotlib/tests/test_font_manager.pyc
${PYSITELIB}/matplotlib/tests/test_font_manager.pyo
${PYSITELIB}/matplotlib/tests/test_fontconfig_pattern.py
${PYSITELIB}/matplotlib/tests/test_fontconfig_pattern.pyc
${PYSITELIB}/matplotlib/tests/test_fontconfig_pattern.pyo
${PYSITELIB}/matplotlib/tests/test_ft2font.py
${PYSITELIB}/matplotlib/tests/test_ft2font.pyc
${PYSITELIB}/matplotlib/tests/test_ft2font.pyo
${PYSITELIB}/matplotlib/tests/test_getattr.py
${PYSITELIB}/matplotlib/tests/test_getattr.pyc
${PYSITELIB}/matplotlib/tests/test_getattr.pyo
${PYSITELIB}/matplotlib/tests/test_gridspec.py
${PYSITELIB}/matplotlib/tests/test_gridspec.pyc
${PYSITELIB}/matplotlib/tests/test_gridspec.pyo
${PYSITELIB}/matplotlib/tests/test_image.py
${PYSITELIB}/matplotlib/tests/test_image.pyc
${PYSITELIB}/matplotlib/tests/test_image.pyo
${PYSITELIB}/matplotlib/tests/test_legend.py
${PYSITELIB}/matplotlib/tests/test_legend.pyc
${PYSITELIB}/matplotlib/tests/test_legend.pyo
${PYSITELIB}/matplotlib/tests/test_lines.py
${PYSITELIB}/matplotlib/tests/test_lines.pyc
${PYSITELIB}/matplotlib/tests/test_lines.pyo
${PYSITELIB}/matplotlib/tests/test_marker.py
${PYSITELIB}/matplotlib/tests/test_marker.pyc
${PYSITELIB}/matplotlib/tests/test_marker.pyo
${PYSITELIB}/matplotlib/tests/test_mathtext.py
${PYSITELIB}/matplotlib/tests/test_mathtext.pyc
${PYSITELIB}/matplotlib/tests/test_mathtext.pyo
${PYSITELIB}/matplotlib/tests/test_matplotlib.py
${PYSITELIB}/matplotlib/tests/test_matplotlib.pyc
${PYSITELIB}/matplotlib/tests/test_matplotlib.pyo
${PYSITELIB}/matplotlib/tests/test_mlab.py
${PYSITELIB}/matplotlib/tests/test_mlab.pyc
${PYSITELIB}/matplotlib/tests/test_mlab.pyo
${PYSITELIB}/matplotlib/tests/test_offsetbox.py
${PYSITELIB}/matplotlib/tests/test_offsetbox.pyc
${PYSITELIB}/matplotlib/tests/test_offsetbox.pyo
${PYSITELIB}/matplotlib/tests/test_patches.py
${PYSITELIB}/matplotlib/tests/test_patches.pyc
${PYSITELIB}/matplotlib/tests/test_patches.pyo
${PYSITELIB}/matplotlib/tests/test_path.py
${PYSITELIB}/matplotlib/tests/test_path.pyc
${PYSITELIB}/matplotlib/tests/test_path.pyo
${PYSITELIB}/matplotlib/tests/test_patheffects.py
${PYSITELIB}/matplotlib/tests/test_patheffects.pyc
${PYSITELIB}/matplotlib/tests/test_patheffects.pyo
${PYSITELIB}/matplotlib/tests/test_pickle.py
${PYSITELIB}/matplotlib/tests/test_pickle.pyc
${PYSITELIB}/matplotlib/tests/test_pickle.pyo
${PYSITELIB}/matplotlib/tests/test_png.py
${PYSITELIB}/matplotlib/tests/test_png.pyc
${PYSITELIB}/matplotlib/tests/test_png.pyo
${PYSITELIB}/matplotlib/tests/test_polar.py
${PYSITELIB}/matplotlib/tests/test_polar.pyc
${PYSITELIB}/matplotlib/tests/test_polar.pyo
${PYSITELIB}/matplotlib/tests/test_preprocess_data.py
${PYSITELIB}/matplotlib/tests/test_preprocess_data.pyc
${PYSITELIB}/matplotlib/tests/test_preprocess_data.pyo
${PYSITELIB}/matplotlib/tests/test_pyplot.py
${PYSITELIB}/matplotlib/tests/test_pyplot.pyc
${PYSITELIB}/matplotlib/tests/test_pyplot.pyo
${PYSITELIB}/matplotlib/tests/test_quiver.py
${PYSITELIB}/matplotlib/tests/test_quiver.pyc
${PYSITELIB}/matplotlib/tests/test_quiver.pyo
${PYSITELIB}/matplotlib/tests/test_rcparams.py
${PYSITELIB}/matplotlib/tests/test_rcparams.pyc
${PYSITELIB}/matplotlib/tests/test_rcparams.pyo
${PYSITELIB}/matplotlib/tests/test_sankey.py
${PYSITELIB}/matplotlib/tests/test_sankey.pyc
${PYSITELIB}/matplotlib/tests/test_sankey.pyo
${PYSITELIB}/matplotlib/tests/test_scale.py
${PYSITELIB}/matplotlib/tests/test_scale.pyc
${PYSITELIB}/matplotlib/tests/test_scale.pyo
${PYSITELIB}/matplotlib/tests/test_simplification.py
${PYSITELIB}/matplotlib/tests/test_simplification.pyc
${PYSITELIB}/matplotlib/tests/test_simplification.pyo
${PYSITELIB}/matplotlib/tests/test_skew.py
${PYSITELIB}/matplotlib/tests/test_skew.pyc
${PYSITELIB}/matplotlib/tests/test_skew.pyo
${PYSITELIB}/matplotlib/tests/test_sphinxext.py
${PYSITELIB}/matplotlib/tests/test_sphinxext.pyc
${PYSITELIB}/matplotlib/tests/test_sphinxext.pyo
${PYSITELIB}/matplotlib/tests/test_spines.py
${PYSITELIB}/matplotlib/tests/test_spines.pyc
${PYSITELIB}/matplotlib/tests/test_spines.pyo
${PYSITELIB}/matplotlib/tests/test_streamplot.py
${PYSITELIB}/matplotlib/tests/test_streamplot.pyc
${PYSITELIB}/matplotlib/tests/test_streamplot.pyo
${PYSITELIB}/matplotlib/tests/test_style.py
${PYSITELIB}/matplotlib/tests/test_style.pyc
${PYSITELIB}/matplotlib/tests/test_style.pyo
${PYSITELIB}/matplotlib/tests/test_subplots.py
${PYSITELIB}/matplotlib/tests/test_subplots.pyc
${PYSITELIB}/matplotlib/tests/test_subplots.pyo
${PYSITELIB}/matplotlib/tests/test_table.py
${PYSITELIB}/matplotlib/tests/test_table.pyc
${PYSITELIB}/matplotlib/tests/test_table.pyo
${PYSITELIB}/matplotlib/tests/test_testing.py
${PYSITELIB}/matplotlib/tests/test_testing.pyc
${PYSITELIB}/matplotlib/tests/test_testing.pyo
${PYSITELIB}/matplotlib/tests/test_texmanager.py
${PYSITELIB}/matplotlib/tests/test_texmanager.pyc
${PYSITELIB}/matplotlib/tests/test_texmanager.pyo
${PYSITELIB}/matplotlib/tests/test_text.py
${PYSITELIB}/matplotlib/tests/test_text.pyc
${PYSITELIB}/matplotlib/tests/test_text.pyo
${PYSITELIB}/matplotlib/tests/test_textpath.py
${PYSITELIB}/matplotlib/tests/test_textpath.pyc
${PYSITELIB}/matplotlib/tests/test_textpath.pyo
${PYSITELIB}/matplotlib/tests/test_ticker.py
${PYSITELIB}/matplotlib/tests/test_ticker.pyc
${PYSITELIB}/matplotlib/tests/test_ticker.pyo
${PYSITELIB}/matplotlib/tests/test_tightlayout.py
${PYSITELIB}/matplotlib/tests/test_tightlayout.pyc
${PYSITELIB}/matplotlib/tests/test_tightlayout.pyo
${PYSITELIB}/matplotlib/tests/test_transforms.py
${PYSITELIB}/matplotlib/tests/test_transforms.pyc
${PYSITELIB}/matplotlib/tests/test_transforms.pyo
${PYSITELIB}/matplotlib/tests/test_triangulation.py
${PYSITELIB}/matplotlib/tests/test_triangulation.pyc
${PYSITELIB}/matplotlib/tests/test_triangulation.pyo
${PYSITELIB}/matplotlib/tests/test_ttconv.py
${PYSITELIB}/matplotlib/tests/test_ttconv.pyc
${PYSITELIB}/matplotlib/tests/test_ttconv.pyo
${PYSITELIB}/matplotlib/tests/test_type1font.py
${PYSITELIB}/matplotlib/tests/test_type1font.pyc
${PYSITELIB}/matplotlib/tests/test_type1font.pyo
${PYSITELIB}/matplotlib/tests/test_units.py
${PYSITELIB}/matplotlib/tests/test_units.pyc
${PYSITELIB}/matplotlib/tests/test_units.pyo
${PYSITELIB}/matplotlib/tests/test_usetex.py
${PYSITELIB}/matplotlib/tests/test_usetex.pyc
${PYSITELIB}/matplotlib/tests/test_usetex.pyo
${PYSITELIB}/matplotlib/tests/test_widgets.py
${PYSITELIB}/matplotlib/tests/test_widgets.pyc
${PYSITELIB}/matplotlib/tests/test_widgets.pyo
${PYSITELIB}/matplotlib/texmanager.py
${PYSITELIB}/matplotlib/texmanager.pyc
${PYSITELIB}/matplotlib/texmanager.pyo
${PYSITELIB}/matplotlib/text.py
${PYSITELIB}/matplotlib/text.pyc
${PYSITELIB}/matplotlib/text.pyo
${PYSITELIB}/matplotlib/textpath.py
${PYSITELIB}/matplotlib/textpath.pyc
${PYSITELIB}/matplotlib/textpath.pyo
${PYSITELIB}/matplotlib/ticker.py
${PYSITELIB}/matplotlib/ticker.pyc
${PYSITELIB}/matplotlib/ticker.pyo
${PYSITELIB}/matplotlib/tight_bbox.py
${PYSITELIB}/matplotlib/tight_bbox.pyc
${PYSITELIB}/matplotlib/tight_bbox.pyo
${PYSITELIB}/matplotlib/tight_layout.py
${PYSITELIB}/matplotlib/tight_layout.pyc
${PYSITELIB}/matplotlib/tight_layout.pyo
${PYSITELIB}/matplotlib/transforms.py
${PYSITELIB}/matplotlib/transforms.pyc
${PYSITELIB}/matplotlib/transforms.pyo
${PYSITELIB}/matplotlib/tri/__init__.py
${PYSITELIB}/matplotlib/tri/__init__.pyc
${PYSITELIB}/matplotlib/tri/__init__.pyo
${PYSITELIB}/matplotlib/tri/triangulation.py
${PYSITELIB}/matplotlib/tri/triangulation.pyc
${PYSITELIB}/matplotlib/tri/triangulation.pyo
${PYSITELIB}/matplotlib/tri/tricontour.py
${PYSITELIB}/matplotlib/tri/tricontour.pyc
${PYSITELIB}/matplotlib/tri/tricontour.pyo
${PYSITELIB}/matplotlib/tri/trifinder.py
${PYSITELIB}/matplotlib/tri/trifinder.pyc
${PYSITELIB}/matplotlib/tri/trifinder.pyo
${PYSITELIB}/matplotlib/tri/triinterpolate.py
${PYSITELIB}/matplotlib/tri/triinterpolate.pyc
${PYSITELIB}/matplotlib/tri/triinterpolate.pyo
${PYSITELIB}/matplotlib/tri/tripcolor.py
${PYSITELIB}/matplotlib/tri/tripcolor.pyc
${PYSITELIB}/matplotlib/tri/tripcolor.pyo
${PYSITELIB}/matplotlib/tri/triplot.py
${PYSITELIB}/matplotlib/tri/triplot.pyc
${PYSITELIB}/matplotlib/tri/triplot.pyo
${PYSITELIB}/matplotlib/tri/trirefine.py
${PYSITELIB}/matplotlib/tri/trirefine.pyc
${PYSITELIB}/matplotlib/tri/trirefine.pyo
${PYSITELIB}/matplotlib/tri/tritools.py
${PYSITELIB}/matplotlib/tri/tritools.pyc
${PYSITELIB}/matplotlib/tri/tritools.pyo
${PYSITELIB}/matplotlib/type1font.py
${PYSITELIB}/matplotlib/type1font.pyc
${PYSITELIB}/matplotlib/type1font.pyo
${PYSITELIB}/matplotlib/units.py
${PYSITELIB}/matplotlib/units.pyc
${PYSITELIB}/matplotlib/units.pyo
${PYSITELIB}/matplotlib/widgets.py
${PYSITELIB}/matplotlib/widgets.pyc
${PYSITELIB}/matplotlib/widgets.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/__init__.py
${PYSITELIB}/mpl_toolkits/axes_grid1/__init__.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/__init__.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/anchored_artists.py
${PYSITELIB}/mpl_toolkits/axes_grid1/anchored_artists.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/anchored_artists.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_divider.py
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_divider.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_divider.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_grid.py
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_grid.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_grid.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_rgb.py
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_rgb.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_rgb.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_size.py
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_size.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_size.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/inset_locator.py
${PYSITELIB}/mpl_toolkits/axes_grid1/inset_locator.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/inset_locator.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/mpl_axes.py
${PYSITELIB}/mpl_toolkits/axes_grid1/mpl_axes.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/mpl_axes.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/parasite_axes.py
${PYSITELIB}/mpl_toolkits/axes_grid1/parasite_axes.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/parasite_axes.pyo
${PYSITELIB}/mpl_toolkits/axisartist/__init__.py
${PYSITELIB}/mpl_toolkits/axisartist/__init__.pyc
${PYSITELIB}/mpl_toolkits/axisartist/__init__.pyo
${PYSITELIB}/mpl_toolkits/axisartist/angle_helper.py
${PYSITELIB}/mpl_toolkits/axisartist/angle_helper.pyc
${PYSITELIB}/mpl_toolkits/axisartist/angle_helper.pyo
${PYSITELIB}/mpl_toolkits/axisartist/axes_divider.py
${PYSITELIB}/mpl_toolkits/axisartist/axes_divider.pyc
${PYSITELIB}/mpl_toolkits/axisartist/axes_divider.pyo
${PYSITELIB}/mpl_toolkits/axisartist/axes_grid.py
${PYSITELIB}/mpl_toolkits/axisartist/axes_grid.pyc
${PYSITELIB}/mpl_toolkits/axisartist/axes_grid.pyo
${PYSITELIB}/mpl_toolkits/axisartist/axes_rgb.py
${PYSITELIB}/mpl_toolkits/axisartist/axes_rgb.pyc
${PYSITELIB}/mpl_toolkits/axisartist/axes_rgb.pyo
${PYSITELIB}/mpl_toolkits/axisartist/axis_artist.py
${PYSITELIB}/mpl_toolkits/axisartist/axis_artist.pyc
${PYSITELIB}/mpl_toolkits/axisartist/axis_artist.pyo
${PYSITELIB}/mpl_toolkits/axisartist/axisline_style.py
${PYSITELIB}/mpl_toolkits/axisartist/axisline_style.pyc
${PYSITELIB}/mpl_toolkits/axisartist/axisline_style.pyo
${PYSITELIB}/mpl_toolkits/axisartist/axislines.py
${PYSITELIB}/mpl_toolkits/axisartist/axislines.pyc
${PYSITELIB}/mpl_toolkits/axisartist/axislines.pyo
${PYSITELIB}/mpl_toolkits/axisartist/clip_path.py
${PYSITELIB}/mpl_toolkits/axisartist/clip_path.pyc
${PYSITELIB}/mpl_toolkits/axisartist/clip_path.pyo
${PYSITELIB}/mpl_toolkits/axisartist/floating_axes.py
${PYSITELIB}/mpl_toolkits/axisartist/floating_axes.pyc
${PYSITELIB}/mpl_toolkits/axisartist/floating_axes.pyo
${PYSITELIB}/mpl_toolkits/axisartist/grid_finder.py
${PYSITELIB}/mpl_toolkits/axisartist/grid_finder.pyc
${PYSITELIB}/mpl_toolkits/axisartist/grid_finder.pyo
${PYSITELIB}/mpl_toolkits/axisartist/grid_helper_curvelinear.py
${PYSITELIB}/mpl_toolkits/axisartist/grid_helper_curvelinear.pyc
${PYSITELIB}/mpl_toolkits/axisartist/grid_helper_curvelinear.pyo
${PYSITELIB}/mpl_toolkits/axisartist/parasite_axes.py
${PYSITELIB}/mpl_toolkits/axisartist/parasite_axes.pyc
${PYSITELIB}/mpl_toolkits/axisartist/parasite_axes.pyo
${PYSITELIB}/mpl_toolkits/mplot3d/__init__.py
${PYSITELIB}/mpl_toolkits/mplot3d/__init__.pyc
${PYSITELIB}/mpl_toolkits/mplot3d/__init__.pyo
${PYSITELIB}/mpl_toolkits/mplot3d/art3d.py
${PYSITELIB}/mpl_toolkits/mplot3d/art3d.pyc
${PYSITELIB}/mpl_toolkits/mplot3d/art3d.pyo
${PYSITELIB}/mpl_toolkits/mplot3d/axes3d.py
${PYSITELIB}/mpl_toolkits/mplot3d/axes3d.pyc
${PYSITELIB}/mpl_toolkits/mplot3d/axes3d.pyo
${PYSITELIB}/mpl_toolkits/mplot3d/axis3d.py
${PYSITELIB}/mpl_toolkits/mplot3d/axis3d.pyc
${PYSITELIB}/mpl_toolkits/mplot3d/axis3d.pyo
${PYSITELIB}/mpl_toolkits/mplot3d/proj3d.py
${PYSITELIB}/mpl_toolkits/mplot3d/proj3d.pyc
${PYSITELIB}/mpl_toolkits/mplot3d/proj3d.pyo
${PYSITELIB}/mpl_toolkits/tests/__init__.py
${PYSITELIB}/mpl_toolkits/tests/__init__.pyc
${PYSITELIB}/mpl_toolkits/tests/__init__.pyo
${PYSITELIB}/mpl_toolkits/tests/conftest.py
${PYSITELIB}/mpl_toolkits/tests/conftest.pyc
${PYSITELIB}/mpl_toolkits/tests/conftest.pyo
${PYSITELIB}/mpl_toolkits/tests/test_axes_grid.py
${PYSITELIB}/mpl_toolkits/tests/test_axes_grid.pyc
${PYSITELIB}/mpl_toolkits/tests/test_axes_grid.pyo
${PYSITELIB}/mpl_toolkits/tests/test_axes_grid1.py
${PYSITELIB}/mpl_toolkits/tests/test_axes_grid1.pyc
${PYSITELIB}/mpl_toolkits/tests/test_axes_grid1.pyo
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_angle_helper.py
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_angle_helper.pyc
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_angle_helper.pyo
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_axis_artist.py
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_axis_artist.pyc
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_axis_artist.pyo
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_axislines.py
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_axislines.pyc
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_axislines.pyo
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_clip_path.py
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_clip_path.pyc
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_clip_path.pyo
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_floating_axes.py
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_floating_axes.pyc
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_floating_axes.pyo
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_grid_finder.py
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_grid_finder.pyc
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_grid_finder.pyo
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_grid_helper_curvelinear.py
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_grid_helper_curvelinear.pyc
${PYSITELIB}/mpl_toolkits/tests/test_axisartist_grid_helper_curvelinear.pyo
${PYSITELIB}/mpl_toolkits/tests/test_mplot3d.py
${PYSITELIB}/mpl_toolkits/tests/test_mplot3d.pyc
${PYSITELIB}/mpl_toolkits/tests/test_mplot3d.pyo
${PYSITELIB}/pylab.py
${PYSITELIB}/pylab.pyc
${PYSITELIB}/pylab.pyo