summaryrefslogtreecommitdiff
path: root/math/py-sympy/PLIST
blob: f2de351e6ef790b4ebe578761331fd6712784705 (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
@comment $NetBSD: PLIST,v 1.2 2008/05/29 17:59:25 drochner Exp $
bin/isympy${PYVERSSUFFIX}
${PYSITELIB}/sympy/__init__.py
${PYSITELIB}/sympy/__init__.pyc
${PYSITELIB}/sympy/__init__.pyo
${PYSITELIB}/sympy/abc.py
${PYSITELIB}/sympy/abc.pyc
${PYSITELIB}/sympy/abc.pyo
${PYSITELIB}/sympy/concrete/__init__.py
${PYSITELIB}/sympy/concrete/__init__.pyc
${PYSITELIB}/sympy/concrete/__init__.pyo
${PYSITELIB}/sympy/concrete/gosper.py
${PYSITELIB}/sympy/concrete/gosper.pyc
${PYSITELIB}/sympy/concrete/gosper.pyo
${PYSITELIB}/sympy/concrete/products.py
${PYSITELIB}/sympy/concrete/products.pyc
${PYSITELIB}/sympy/concrete/products.pyo
${PYSITELIB}/sympy/concrete/summations.py
${PYSITELIB}/sympy/concrete/summations.pyc
${PYSITELIB}/sympy/concrete/summations.pyo
${PYSITELIB}/sympy/concrete/sums_products.py
${PYSITELIB}/sympy/concrete/sums_products.pyc
${PYSITELIB}/sympy/concrete/sums_products.pyo
${PYSITELIB}/sympy/concrete/tests/test_gosper.py
${PYSITELIB}/sympy/concrete/tests/test_gosper.pyc
${PYSITELIB}/sympy/concrete/tests/test_gosper.pyo
${PYSITELIB}/sympy/concrete/tests/test_products.py
${PYSITELIB}/sympy/concrete/tests/test_products.pyc
${PYSITELIB}/sympy/concrete/tests/test_products.pyo
${PYSITELIB}/sympy/concrete/tests/test_sums_products.py
${PYSITELIB}/sympy/concrete/tests/test_sums_products.pyc
${PYSITELIB}/sympy/concrete/tests/test_sums_products.pyo
${PYSITELIB}/sympy/concrete/utilities.py
${PYSITELIB}/sympy/concrete/utilities.pyc
${PYSITELIB}/sympy/concrete/utilities.pyo
${PYSITELIB}/sympy/conftest.py
${PYSITELIB}/sympy/conftest.pyc
${PYSITELIB}/sympy/conftest.pyo
${PYSITELIB}/sympy/core/__init__.py
${PYSITELIB}/sympy/core/__init__.pyc
${PYSITELIB}/sympy/core/__init__.pyo
${PYSITELIB}/sympy/core/add.py
${PYSITELIB}/sympy/core/add.pyc
${PYSITELIB}/sympy/core/add.pyo
${PYSITELIB}/sympy/core/assumptions.py
${PYSITELIB}/sympy/core/assumptions.pyc
${PYSITELIB}/sympy/core/assumptions.pyo
${PYSITELIB}/sympy/core/ast_parser.py
${PYSITELIB}/sympy/core/ast_parser.pyc
${PYSITELIB}/sympy/core/ast_parser.pyo
${PYSITELIB}/sympy/core/basic.py
${PYSITELIB}/sympy/core/basic.pyc
${PYSITELIB}/sympy/core/basic.pyo
${PYSITELIB}/sympy/core/cache.py
${PYSITELIB}/sympy/core/cache.pyc
${PYSITELIB}/sympy/core/cache.pyo
${PYSITELIB}/sympy/core/decimal_math.py
${PYSITELIB}/sympy/core/decimal_math.pyc
${PYSITELIB}/sympy/core/decimal_math.pyo
${PYSITELIB}/sympy/core/function.py
${PYSITELIB}/sympy/core/function.pyc
${PYSITELIB}/sympy/core/function.pyo
${PYSITELIB}/sympy/core/interval.py
${PYSITELIB}/sympy/core/interval.pyc
${PYSITELIB}/sympy/core/interval.pyo
${PYSITELIB}/sympy/core/methods.py
${PYSITELIB}/sympy/core/methods.pyc
${PYSITELIB}/sympy/core/methods.pyo
${PYSITELIB}/sympy/core/mul.py
${PYSITELIB}/sympy/core/mul.pyc
${PYSITELIB}/sympy/core/mul.pyo
${PYSITELIB}/sympy/core/multidimensional.py
${PYSITELIB}/sympy/core/multidimensional.pyc
${PYSITELIB}/sympy/core/multidimensional.pyo
${PYSITELIB}/sympy/core/numbers.py
${PYSITELIB}/sympy/core/numbers.pyc
${PYSITELIB}/sympy/core/numbers.pyo
${PYSITELIB}/sympy/core/operations.py
${PYSITELIB}/sympy/core/operations.pyc
${PYSITELIB}/sympy/core/operations.pyo
${PYSITELIB}/sympy/core/power.py
${PYSITELIB}/sympy/core/power.pyc
${PYSITELIB}/sympy/core/power.pyo
${PYSITELIB}/sympy/core/relational.py
${PYSITELIB}/sympy/core/relational.pyc
${PYSITELIB}/sympy/core/relational.pyo
${PYSITELIB}/sympy/core/symbol.py
${PYSITELIB}/sympy/core/symbol.pyc
${PYSITELIB}/sympy/core/symbol.pyo
${PYSITELIB}/sympy/core/sympify.py
${PYSITELIB}/sympy/core/sympify.pyc
${PYSITELIB}/sympy/core/sympify.pyo
${PYSITELIB}/sympy/core/tests/test_arit.py
${PYSITELIB}/sympy/core/tests/test_arit.pyc
${PYSITELIB}/sympy/core/tests/test_arit.pyo
${PYSITELIB}/sympy/core/tests/test_assumptions.py
${PYSITELIB}/sympy/core/tests/test_assumptions.pyc
${PYSITELIB}/sympy/core/tests/test_assumptions.pyo
${PYSITELIB}/sympy/core/tests/test_basic.py
${PYSITELIB}/sympy/core/tests/test_basic.pyc
${PYSITELIB}/sympy/core/tests/test_basic.pyo
${PYSITELIB}/sympy/core/tests/test_complex.py
${PYSITELIB}/sympy/core/tests/test_complex.pyc
${PYSITELIB}/sympy/core/tests/test_complex.pyo
${PYSITELIB}/sympy/core/tests/test_count_ops.py
${PYSITELIB}/sympy/core/tests/test_count_ops.pyc
${PYSITELIB}/sympy/core/tests/test_count_ops.pyo
${PYSITELIB}/sympy/core/tests/test_diff.py
${PYSITELIB}/sympy/core/tests/test_diff.pyc
${PYSITELIB}/sympy/core/tests/test_diff.pyo
${PYSITELIB}/sympy/core/tests/test_equal.py
${PYSITELIB}/sympy/core/tests/test_equal.pyc
${PYSITELIB}/sympy/core/tests/test_equal.pyo
${PYSITELIB}/sympy/core/tests/test_eval.py
${PYSITELIB}/sympy/core/tests/test_eval.pyc
${PYSITELIB}/sympy/core/tests/test_eval.pyo
${PYSITELIB}/sympy/core/tests/test_eval_power.py
${PYSITELIB}/sympy/core/tests/test_eval_power.pyc
${PYSITELIB}/sympy/core/tests/test_eval_power.pyo
${PYSITELIB}/sympy/core/tests/test_functions.py
${PYSITELIB}/sympy/core/tests/test_functions.pyc
${PYSITELIB}/sympy/core/tests/test_functions.pyo
${PYSITELIB}/sympy/core/tests/test_match.py
${PYSITELIB}/sympy/core/tests/test_match.pyc
${PYSITELIB}/sympy/core/tests/test_match.pyo
${PYSITELIB}/sympy/core/tests/test_multidimensional.py
${PYSITELIB}/sympy/core/tests/test_multidimensional.pyc
${PYSITELIB}/sympy/core/tests/test_multidimensional.pyo
${PYSITELIB}/sympy/core/tests/test_numbers.py
${PYSITELIB}/sympy/core/tests/test_numbers.pyc
${PYSITELIB}/sympy/core/tests/test_numbers.pyo
${PYSITELIB}/sympy/core/tests/test_pickling.py
${PYSITELIB}/sympy/core/tests/test_pickling.pyc
${PYSITELIB}/sympy/core/tests/test_pickling.pyo
${PYSITELIB}/sympy/core/tests/test_relational.py
${PYSITELIB}/sympy/core/tests/test_relational.pyc
${PYSITELIB}/sympy/core/tests/test_relational.pyo
${PYSITELIB}/sympy/core/tests/test_str.py
${PYSITELIB}/sympy/core/tests/test_str.pyc
${PYSITELIB}/sympy/core/tests/test_str.pyo
${PYSITELIB}/sympy/core/tests/test_subs.py
${PYSITELIB}/sympy/core/tests/test_subs.pyc
${PYSITELIB}/sympy/core/tests/test_subs.pyo
${PYSITELIB}/sympy/core/tests/test_symbol.py
${PYSITELIB}/sympy/core/tests/test_symbol.pyc
${PYSITELIB}/sympy/core/tests/test_symbol.pyo
${PYSITELIB}/sympy/core/tests/test_sympify.py
${PYSITELIB}/sympy/core/tests/test_sympify.pyc
${PYSITELIB}/sympy/core/tests/test_sympify.pyo
${PYSITELIB}/sympy/core/tests/test_truediv.py
${PYSITELIB}/sympy/core/tests/test_truediv.pyc
${PYSITELIB}/sympy/core/tests/test_truediv.pyo
${PYSITELIB}/sympy/core/tests/test_var.py
${PYSITELIB}/sympy/core/tests/test_var.pyc
${PYSITELIB}/sympy/core/tests/test_var.pyo
${PYSITELIB}/sympy/functions/__init__.py
${PYSITELIB}/sympy/functions/__init__.pyc
${PYSITELIB}/sympy/functions/__init__.pyo
${PYSITELIB}/sympy/functions/combinatorial/__init__.py
${PYSITELIB}/sympy/functions/combinatorial/__init__.pyc
${PYSITELIB}/sympy/functions/combinatorial/__init__.pyo
${PYSITELIB}/sympy/functions/combinatorial/factorials.py
${PYSITELIB}/sympy/functions/combinatorial/factorials.pyc
${PYSITELIB}/sympy/functions/combinatorial/factorials.pyo
${PYSITELIB}/sympy/functions/combinatorial/numbers.py
${PYSITELIB}/sympy/functions/combinatorial/numbers.pyc
${PYSITELIB}/sympy/functions/combinatorial/numbers.pyo
${PYSITELIB}/sympy/functions/combinatorial/tests/test_comb_factorials.py
${PYSITELIB}/sympy/functions/combinatorial/tests/test_comb_factorials.pyc
${PYSITELIB}/sympy/functions/combinatorial/tests/test_comb_factorials.pyo
${PYSITELIB}/sympy/functions/combinatorial/tests/test_comb_numbers.py
${PYSITELIB}/sympy/functions/combinatorial/tests/test_comb_numbers.pyc
${PYSITELIB}/sympy/functions/combinatorial/tests/test_comb_numbers.pyo
${PYSITELIB}/sympy/functions/elementary/__init__.py
${PYSITELIB}/sympy/functions/elementary/__init__.pyc
${PYSITELIB}/sympy/functions/elementary/__init__.pyo
${PYSITELIB}/sympy/functions/elementary/complexes.py
${PYSITELIB}/sympy/functions/elementary/complexes.pyc
${PYSITELIB}/sympy/functions/elementary/complexes.pyo
${PYSITELIB}/sympy/functions/elementary/exponential.py
${PYSITELIB}/sympy/functions/elementary/exponential.pyc
${PYSITELIB}/sympy/functions/elementary/exponential.pyo
${PYSITELIB}/sympy/functions/elementary/hyperbolic.py
${PYSITELIB}/sympy/functions/elementary/hyperbolic.pyc
${PYSITELIB}/sympy/functions/elementary/hyperbolic.pyo
${PYSITELIB}/sympy/functions/elementary/integers.py
${PYSITELIB}/sympy/functions/elementary/integers.pyc
${PYSITELIB}/sympy/functions/elementary/integers.pyo
${PYSITELIB}/sympy/functions/elementary/miscellaneous.py
${PYSITELIB}/sympy/functions/elementary/miscellaneous.pyc
${PYSITELIB}/sympy/functions/elementary/miscellaneous.pyo
${PYSITELIB}/sympy/functions/elementary/tests/test_complexes.py
${PYSITELIB}/sympy/functions/elementary/tests/test_complexes.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_complexes.pyo
${PYSITELIB}/sympy/functions/elementary/tests/test_exponential.py
${PYSITELIB}/sympy/functions/elementary/tests/test_exponential.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_exponential.pyo
${PYSITELIB}/sympy/functions/elementary/tests/test_hyperbolic.py
${PYSITELIB}/sympy/functions/elementary/tests/test_hyperbolic.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_hyperbolic.pyo
${PYSITELIB}/sympy/functions/elementary/tests/test_integers.py
${PYSITELIB}/sympy/functions/elementary/tests/test_integers.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_integers.pyo
${PYSITELIB}/sympy/functions/elementary/tests/test_interface.py
${PYSITELIB}/sympy/functions/elementary/tests/test_interface.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_interface.pyo
${PYSITELIB}/sympy/functions/elementary/tests/test_miscellaneous.py
${PYSITELIB}/sympy/functions/elementary/tests/test_miscellaneous.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_miscellaneous.pyo
${PYSITELIB}/sympy/functions/elementary/tests/test_trigonometric.py
${PYSITELIB}/sympy/functions/elementary/tests/test_trigonometric.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_trigonometric.pyo
${PYSITELIB}/sympy/functions/elementary/trigonometric.py
${PYSITELIB}/sympy/functions/elementary/trigonometric.pyc
${PYSITELIB}/sympy/functions/elementary/trigonometric.pyo
${PYSITELIB}/sympy/functions/special/__init__.py
${PYSITELIB}/sympy/functions/special/__init__.pyc
${PYSITELIB}/sympy/functions/special/__init__.pyo
${PYSITELIB}/sympy/functions/special/error_functions.py
${PYSITELIB}/sympy/functions/special/error_functions.pyc
${PYSITELIB}/sympy/functions/special/error_functions.pyo
${PYSITELIB}/sympy/functions/special/gamma_functions.py
${PYSITELIB}/sympy/functions/special/gamma_functions.pyc
${PYSITELIB}/sympy/functions/special/gamma_functions.pyo
${PYSITELIB}/sympy/functions/special/polynomials.py
${PYSITELIB}/sympy/functions/special/polynomials.pyc
${PYSITELIB}/sympy/functions/special/polynomials.pyo
${PYSITELIB}/sympy/functions/special/spherical_harmonics.py
${PYSITELIB}/sympy/functions/special/spherical_harmonics.pyc
${PYSITELIB}/sympy/functions/special/spherical_harmonics.pyo
${PYSITELIB}/sympy/functions/special/tensor_functions.py
${PYSITELIB}/sympy/functions/special/tensor_functions.pyc
${PYSITELIB}/sympy/functions/special/tensor_functions.pyo
${PYSITELIB}/sympy/functions/special/tests/test_error_functions.py
${PYSITELIB}/sympy/functions/special/tests/test_error_functions.pyc
${PYSITELIB}/sympy/functions/special/tests/test_error_functions.pyo
${PYSITELIB}/sympy/functions/special/tests/test_gamma_functions.py
${PYSITELIB}/sympy/functions/special/tests/test_gamma_functions.pyc
${PYSITELIB}/sympy/functions/special/tests/test_gamma_functions.pyo
${PYSITELIB}/sympy/functions/special/tests/test_spec_polynomials.py
${PYSITELIB}/sympy/functions/special/tests/test_spec_polynomials.pyc
${PYSITELIB}/sympy/functions/special/tests/test_spec_polynomials.pyo
${PYSITELIB}/sympy/functions/special/tests/test_spherical_harmonics.py
${PYSITELIB}/sympy/functions/special/tests/test_spherical_harmonics.pyc
${PYSITELIB}/sympy/functions/special/tests/test_spherical_harmonics.pyo
${PYSITELIB}/sympy/functions/special/tests/test_tensor_functions.py
${PYSITELIB}/sympy/functions/special/tests/test_tensor_functions.pyc
${PYSITELIB}/sympy/functions/special/tests/test_tensor_functions.pyo
${PYSITELIB}/sympy/functions/special/tests/test_zeta_functions.py
${PYSITELIB}/sympy/functions/special/tests/test_zeta_functions.pyc
${PYSITELIB}/sympy/functions/special/tests/test_zeta_functions.pyo
${PYSITELIB}/sympy/functions/special/zeta_functions.py
${PYSITELIB}/sympy/functions/special/zeta_functions.pyc
${PYSITELIB}/sympy/functions/special/zeta_functions.pyo
${PYSITELIB}/sympy/geometry/__init__.py
${PYSITELIB}/sympy/geometry/__init__.pyc
${PYSITELIB}/sympy/geometry/__init__.pyo
${PYSITELIB}/sympy/geometry/ellipse.py
${PYSITELIB}/sympy/geometry/ellipse.pyc
${PYSITELIB}/sympy/geometry/ellipse.pyo
${PYSITELIB}/sympy/geometry/entity.py
${PYSITELIB}/sympy/geometry/entity.pyc
${PYSITELIB}/sympy/geometry/entity.pyo
${PYSITELIB}/sympy/geometry/exceptions.py
${PYSITELIB}/sympy/geometry/exceptions.pyc
${PYSITELIB}/sympy/geometry/exceptions.pyo
${PYSITELIB}/sympy/geometry/line.py
${PYSITELIB}/sympy/geometry/line.pyc
${PYSITELIB}/sympy/geometry/line.pyo
${PYSITELIB}/sympy/geometry/point.py
${PYSITELIB}/sympy/geometry/point.pyc
${PYSITELIB}/sympy/geometry/point.pyo
${PYSITELIB}/sympy/geometry/polygon.py
${PYSITELIB}/sympy/geometry/polygon.pyc
${PYSITELIB}/sympy/geometry/polygon.pyo
${PYSITELIB}/sympy/geometry/tests/test_geometry.py
${PYSITELIB}/sympy/geometry/tests/test_geometry.pyc
${PYSITELIB}/sympy/geometry/tests/test_geometry.pyo
${PYSITELIB}/sympy/geometry/util.py
${PYSITELIB}/sympy/geometry/util.pyc
${PYSITELIB}/sympy/geometry/util.pyo
${PYSITELIB}/sympy/integrals/__init__.py
${PYSITELIB}/sympy/integrals/__init__.pyc
${PYSITELIB}/sympy/integrals/__init__.pyo
${PYSITELIB}/sympy/integrals/integrals.py
${PYSITELIB}/sympy/integrals/integrals.pyc
${PYSITELIB}/sympy/integrals/integrals.pyo
${PYSITELIB}/sympy/integrals/risch.py
${PYSITELIB}/sympy/integrals/risch.pyc
${PYSITELIB}/sympy/integrals/risch.pyo
${PYSITELIB}/sympy/integrals/tests/test_integrals.py
${PYSITELIB}/sympy/integrals/tests/test_integrals.pyc
${PYSITELIB}/sympy/integrals/tests/test_integrals.pyo
${PYSITELIB}/sympy/integrals/tests/test_risch.py
${PYSITELIB}/sympy/integrals/tests/test_risch.pyc
${PYSITELIB}/sympy/integrals/tests/test_risch.pyo
${PYSITELIB}/sympy/integrals/tests/test_trigonometry.py
${PYSITELIB}/sympy/integrals/tests/test_trigonometry.pyc
${PYSITELIB}/sympy/integrals/tests/test_trigonometry.pyo
${PYSITELIB}/sympy/integrals/trigonometry.py
${PYSITELIB}/sympy/integrals/trigonometry.pyc
${PYSITELIB}/sympy/integrals/trigonometry.pyo
${PYSITELIB}/sympy/interactive/__init__.py
${PYSITELIB}/sympy/interactive/__init__.pyc
${PYSITELIB}/sympy/interactive/__init__.pyo
${PYSITELIB}/sympy/matrices/__init__.py
${PYSITELIB}/sympy/matrices/__init__.pyc
${PYSITELIB}/sympy/matrices/__init__.pyo
${PYSITELIB}/sympy/matrices/matrices.py
${PYSITELIB}/sympy/matrices/matrices.pyc
${PYSITELIB}/sympy/matrices/matrices.pyo
${PYSITELIB}/sympy/matrices/tests/test_matrices.py
${PYSITELIB}/sympy/matrices/tests/test_matrices.pyc
${PYSITELIB}/sympy/matrices/tests/test_matrices.pyo
${PYSITELIB}/sympy/ntheory/__init__.py
${PYSITELIB}/sympy/ntheory/__init__.pyc
${PYSITELIB}/sympy/ntheory/__init__.pyo
${PYSITELIB}/sympy/ntheory/bbp_pi.py
${PYSITELIB}/sympy/ntheory/bbp_pi.pyc
${PYSITELIB}/sympy/ntheory/bbp_pi.pyo
${PYSITELIB}/sympy/ntheory/factor_.py
${PYSITELIB}/sympy/ntheory/factor_.pyc
${PYSITELIB}/sympy/ntheory/factor_.pyo
${PYSITELIB}/sympy/ntheory/generate.py
${PYSITELIB}/sympy/ntheory/generate.pyc
${PYSITELIB}/sympy/ntheory/generate.pyo
${PYSITELIB}/sympy/ntheory/partitions_.py
${PYSITELIB}/sympy/ntheory/partitions_.pyc
${PYSITELIB}/sympy/ntheory/partitions_.pyo
${PYSITELIB}/sympy/ntheory/primetest.py
${PYSITELIB}/sympy/ntheory/primetest.pyc
${PYSITELIB}/sympy/ntheory/primetest.pyo
${PYSITELIB}/sympy/ntheory/residue.py
${PYSITELIB}/sympy/ntheory/residue.pyc
${PYSITELIB}/sympy/ntheory/residue.pyo
${PYSITELIB}/sympy/ntheory/tests/test_ntheory.py
${PYSITELIB}/sympy/ntheory/tests/test_ntheory.pyc
${PYSITELIB}/sympy/ntheory/tests/test_ntheory.pyo
${PYSITELIB}/sympy/numerics/__init__.py
${PYSITELIB}/sympy/numerics/__init__.pyc
${PYSITELIB}/sympy/numerics/__init__.pyo
${PYSITELIB}/sympy/numerics/constants.py
${PYSITELIB}/sympy/numerics/constants.pyc
${PYSITELIB}/sympy/numerics/constants.pyo
${PYSITELIB}/sympy/numerics/evalf_.py
${PYSITELIB}/sympy/numerics/evalf_.pyc
${PYSITELIB}/sympy/numerics/evalf_.pyo
${PYSITELIB}/sympy/numerics/float_.py
${PYSITELIB}/sympy/numerics/float_.pyc
${PYSITELIB}/sympy/numerics/float_.pyo
${PYSITELIB}/sympy/numerics/functions.py
${PYSITELIB}/sympy/numerics/functions.pyc
${PYSITELIB}/sympy/numerics/functions.pyo
${PYSITELIB}/sympy/numerics/functions2.py
${PYSITELIB}/sympy/numerics/functions2.pyc
${PYSITELIB}/sympy/numerics/functions2.pyo
${PYSITELIB}/sympy/numerics/optimize.py
${PYSITELIB}/sympy/numerics/optimize.pyc
${PYSITELIB}/sympy/numerics/optimize.pyo
${PYSITELIB}/sympy/numerics/quad.py
${PYSITELIB}/sympy/numerics/quad.pyc
${PYSITELIB}/sympy/numerics/quad.pyo
${PYSITELIB}/sympy/numerics/tests/test_constants.py
${PYSITELIB}/sympy/numerics/tests/test_constants.pyc
${PYSITELIB}/sympy/numerics/tests/test_constants.pyo
${PYSITELIB}/sympy/numerics/tests/test_evalf_.py
${PYSITELIB}/sympy/numerics/tests/test_evalf_.pyc
${PYSITELIB}/sympy/numerics/tests/test_evalf_.pyo
${PYSITELIB}/sympy/numerics/tests/test_float_.py
${PYSITELIB}/sympy/numerics/tests/test_float_.pyc
${PYSITELIB}/sympy/numerics/tests/test_float_.pyo
${PYSITELIB}/sympy/numerics/tests/test_functions2.py
${PYSITELIB}/sympy/numerics/tests/test_functions2.pyc
${PYSITELIB}/sympy/numerics/tests/test_functions2.pyo
${PYSITELIB}/sympy/numerics/tests/test_numeric_functions.py
${PYSITELIB}/sympy/numerics/tests/test_numeric_functions.pyc
${PYSITELIB}/sympy/numerics/tests/test_numeric_functions.pyo
${PYSITELIB}/sympy/numerics/tests/test_numerics.py
${PYSITELIB}/sympy/numerics/tests/test_numerics.pyc
${PYSITELIB}/sympy/numerics/tests/test_numerics.pyo
${PYSITELIB}/sympy/numerics/tests/test_optimize.py
${PYSITELIB}/sympy/numerics/tests/test_optimize.pyc
${PYSITELIB}/sympy/numerics/tests/test_optimize.pyo
${PYSITELIB}/sympy/numerics/tests/test_quad.py
${PYSITELIB}/sympy/numerics/tests/test_quad.pyc
${PYSITELIB}/sympy/numerics/tests/test_quad.pyo
${PYSITELIB}/sympy/numerics/utils_.py
${PYSITELIB}/sympy/numerics/utils_.pyc
${PYSITELIB}/sympy/numerics/utils_.pyo
${PYSITELIB}/sympy/parsing/__init__.py
${PYSITELIB}/sympy/parsing/__init__.pyc
${PYSITELIB}/sympy/parsing/__init__.pyo
${PYSITELIB}/sympy/parsing/mathematica.py
${PYSITELIB}/sympy/parsing/mathematica.pyc
${PYSITELIB}/sympy/parsing/mathematica.pyo
${PYSITELIB}/sympy/parsing/maxima.py
${PYSITELIB}/sympy/parsing/maxima.pyc
${PYSITELIB}/sympy/parsing/maxima.pyo
${PYSITELIB}/sympy/parsing/tests/test_mathematica.py
${PYSITELIB}/sympy/parsing/tests/test_mathematica.pyc
${PYSITELIB}/sympy/parsing/tests/test_mathematica.pyo
${PYSITELIB}/sympy/parsing/tests/test_maxima.py
${PYSITELIB}/sympy/parsing/tests/test_maxima.pyc
${PYSITELIB}/sympy/parsing/tests/test_maxima.pyo
${PYSITELIB}/sympy/physics/__init__.py
${PYSITELIB}/sympy/physics/__init__.pyc
${PYSITELIB}/sympy/physics/__init__.pyo
${PYSITELIB}/sympy/physics/matrices.py
${PYSITELIB}/sympy/physics/matrices.pyc
${PYSITELIB}/sympy/physics/matrices.pyo
${PYSITELIB}/sympy/physics/paulialgebra.py
${PYSITELIB}/sympy/physics/paulialgebra.pyc
${PYSITELIB}/sympy/physics/paulialgebra.pyo
${PYSITELIB}/sympy/physics/tests/test_paulialgebra.py
${PYSITELIB}/sympy/physics/tests/test_paulialgebra.pyc
${PYSITELIB}/sympy/physics/tests/test_paulialgebra.pyo
${PYSITELIB}/sympy/physics/tests/test_physics_matrices.py
${PYSITELIB}/sympy/physics/tests/test_physics_matrices.pyc
${PYSITELIB}/sympy/physics/tests/test_physics_matrices.pyo
${PYSITELIB}/sympy/physics/tests/test_units.py
${PYSITELIB}/sympy/physics/tests/test_units.pyc
${PYSITELIB}/sympy/physics/tests/test_units.pyo
${PYSITELIB}/sympy/physics/units.py
${PYSITELIB}/sympy/physics/units.pyc
${PYSITELIB}/sympy/physics/units.pyo
${PYSITELIB}/sympy/plotting/__init__.py
${PYSITELIB}/sympy/plotting/__init__.pyc
${PYSITELIB}/sympy/plotting/__init__.pyo
${PYSITELIB}/sympy/plotting/color_scheme.py
${PYSITELIB}/sympy/plotting/color_scheme.pyc
${PYSITELIB}/sympy/plotting/color_scheme.pyo
${PYSITELIB}/sympy/plotting/managed_window.py
${PYSITELIB}/sympy/plotting/managed_window.pyc
${PYSITELIB}/sympy/plotting/managed_window.pyo
${PYSITELIB}/sympy/plotting/plot.py
${PYSITELIB}/sympy/plotting/plot.pyc
${PYSITELIB}/sympy/plotting/plot.pyo
${PYSITELIB}/sympy/plotting/plot_axes.py
${PYSITELIB}/sympy/plotting/plot_axes.pyc
${PYSITELIB}/sympy/plotting/plot_axes.pyo
${PYSITELIB}/sympy/plotting/plot_camera.py
${PYSITELIB}/sympy/plotting/plot_camera.pyc
${PYSITELIB}/sympy/plotting/plot_camera.pyo
${PYSITELIB}/sympy/plotting/plot_controller.py
${PYSITELIB}/sympy/plotting/plot_controller.pyc
${PYSITELIB}/sympy/plotting/plot_controller.pyo
${PYSITELIB}/sympy/plotting/plot_curve.py
${PYSITELIB}/sympy/plotting/plot_curve.pyc
${PYSITELIB}/sympy/plotting/plot_curve.pyo
${PYSITELIB}/sympy/plotting/plot_interval.py
${PYSITELIB}/sympy/plotting/plot_interval.pyc
${PYSITELIB}/sympy/plotting/plot_interval.pyo
${PYSITELIB}/sympy/plotting/plot_mode.py
${PYSITELIB}/sympy/plotting/plot_mode.pyc
${PYSITELIB}/sympy/plotting/plot_mode.pyo
${PYSITELIB}/sympy/plotting/plot_mode_base.py
${PYSITELIB}/sympy/plotting/plot_mode_base.pyc
${PYSITELIB}/sympy/plotting/plot_mode_base.pyo
${PYSITELIB}/sympy/plotting/plot_modes.py
${PYSITELIB}/sympy/plotting/plot_modes.pyc
${PYSITELIB}/sympy/plotting/plot_modes.pyo
${PYSITELIB}/sympy/plotting/plot_object.py
${PYSITELIB}/sympy/plotting/plot_object.pyc
${PYSITELIB}/sympy/plotting/plot_object.pyo
${PYSITELIB}/sympy/plotting/plot_rotation.py
${PYSITELIB}/sympy/plotting/plot_rotation.pyc
${PYSITELIB}/sympy/plotting/plot_rotation.pyo
${PYSITELIB}/sympy/plotting/plot_surface.py
${PYSITELIB}/sympy/plotting/plot_surface.pyc
${PYSITELIB}/sympy/plotting/plot_surface.pyo
${PYSITELIB}/sympy/plotting/plot_window.py
${PYSITELIB}/sympy/plotting/plot_window.pyc
${PYSITELIB}/sympy/plotting/plot_window.pyo
${PYSITELIB}/sympy/plotting/tests/test_plotting.py
${PYSITELIB}/sympy/plotting/tests/test_plotting.pyc
${PYSITELIB}/sympy/plotting/tests/test_plotting.pyo
${PYSITELIB}/sympy/plotting/textplot.py
${PYSITELIB}/sympy/plotting/textplot.pyc
${PYSITELIB}/sympy/plotting/textplot.pyo
${PYSITELIB}/sympy/plotting/util.py
${PYSITELIB}/sympy/plotting/util.pyc
${PYSITELIB}/sympy/plotting/util.pyo
${PYSITELIB}/sympy/polynomials/__init__.py
${PYSITELIB}/sympy/polynomials/__init__.pyc
${PYSITELIB}/sympy/polynomials/__init__.pyo
${PYSITELIB}/sympy/polynomials/base.py
${PYSITELIB}/sympy/polynomials/base.pyc
${PYSITELIB}/sympy/polynomials/base.pyo
${PYSITELIB}/sympy/polynomials/div_.py
${PYSITELIB}/sympy/polynomials/div_.pyc
${PYSITELIB}/sympy/polynomials/div_.pyo
${PYSITELIB}/sympy/polynomials/factor_.py
${PYSITELIB}/sympy/polynomials/factor_.pyc
${PYSITELIB}/sympy/polynomials/factor_.pyo
${PYSITELIB}/sympy/polynomials/fast/__init__.py
${PYSITELIB}/sympy/polynomials/fast/__init__.pyc
${PYSITELIB}/sympy/polynomials/fast/__init__.pyo
${PYSITELIB}/sympy/polynomials/fast/gfpoly.py
${PYSITELIB}/sympy/polynomials/fast/gfpoly.pyc
${PYSITELIB}/sympy/polynomials/fast/gfpoly.pyo
${PYSITELIB}/sympy/polynomials/fast/intpoly.py
${PYSITELIB}/sympy/polynomials/fast/intpoly.pyc
${PYSITELIB}/sympy/polynomials/fast/intpoly.pyo
${PYSITELIB}/sympy/polynomials/fast/modint.py
${PYSITELIB}/sympy/polynomials/fast/modint.pyc
${PYSITELIB}/sympy/polynomials/fast/modint.pyo
${PYSITELIB}/sympy/polynomials/fast/sparse_poly.py
${PYSITELIB}/sympy/polynomials/fast/sparse_poly.pyc
${PYSITELIB}/sympy/polynomials/fast/sparse_poly.pyo
${PYSITELIB}/sympy/polynomials/groebner_.py
${PYSITELIB}/sympy/polynomials/groebner_.pyc
${PYSITELIB}/sympy/polynomials/groebner_.pyo
${PYSITELIB}/sympy/polynomials/roots_.py
${PYSITELIB}/sympy/polynomials/roots_.pyc
${PYSITELIB}/sympy/polynomials/roots_.pyo
${PYSITELIB}/sympy/polynomials/tests/test_polynomials.py
${PYSITELIB}/sympy/polynomials/tests/test_polynomials.pyc
${PYSITELIB}/sympy/polynomials/tests/test_polynomials.pyo
${PYSITELIB}/sympy/polynomials/tests/test_polynomials_fast.py
${PYSITELIB}/sympy/polynomials/tests/test_polynomials_fast.pyc
${PYSITELIB}/sympy/polynomials/tests/test_polynomials_fast.pyo
${PYSITELIB}/sympy/polynomials/wrapper.py
${PYSITELIB}/sympy/polynomials/wrapper.pyc
${PYSITELIB}/sympy/polynomials/wrapper.pyo
${PYSITELIB}/sympy/polys/__init__.py
${PYSITELIB}/sympy/polys/__init__.pyc
${PYSITELIB}/sympy/polys/__init__.pyo
${PYSITELIB}/sympy/polys/algorithms.py
${PYSITELIB}/sympy/polys/algorithms.pyc
${PYSITELIB}/sympy/polys/algorithms.pyo
${PYSITELIB}/sympy/polys/monomial.py
${PYSITELIB}/sympy/polys/monomial.pyc
${PYSITELIB}/sympy/polys/monomial.pyo
${PYSITELIB}/sympy/polys/polynomial.py
${PYSITELIB}/sympy/polys/polynomial.pyc
${PYSITELIB}/sympy/polys/polynomial.pyo
${PYSITELIB}/sympy/polys/tests/test_polynomial.py
${PYSITELIB}/sympy/polys/tests/test_polynomial.pyc
${PYSITELIB}/sympy/polys/tests/test_polynomial.pyo
${PYSITELIB}/sympy/printing/__init__.py
${PYSITELIB}/sympy/printing/__init__.pyc
${PYSITELIB}/sympy/printing/__init__.pyo
${PYSITELIB}/sympy/printing/gtk.py
${PYSITELIB}/sympy/printing/gtk.pyc
${PYSITELIB}/sympy/printing/gtk.pyo
${PYSITELIB}/sympy/printing/latex.py
${PYSITELIB}/sympy/printing/latex.pyc
${PYSITELIB}/sympy/printing/latex.pyo
${PYSITELIB}/sympy/printing/mathml.py
${PYSITELIB}/sympy/printing/mathml.pyc
${PYSITELIB}/sympy/printing/mathml.pyo
${PYSITELIB}/sympy/printing/pretty/__init__.py
${PYSITELIB}/sympy/printing/pretty/__init__.pyc
${PYSITELIB}/sympy/printing/pretty/__init__.pyo
${PYSITELIB}/sympy/printing/pretty/pretty.py
${PYSITELIB}/sympy/printing/pretty/pretty.pyc
${PYSITELIB}/sympy/printing/pretty/pretty.pyo
${PYSITELIB}/sympy/printing/pretty/pretty_symbology.py
${PYSITELIB}/sympy/printing/pretty/pretty_symbology.pyc
${PYSITELIB}/sympy/printing/pretty/pretty_symbology.pyo
${PYSITELIB}/sympy/printing/pretty/stringpict.py
${PYSITELIB}/sympy/printing/pretty/stringpict.pyc
${PYSITELIB}/sympy/printing/pretty/stringpict.pyo
${PYSITELIB}/sympy/printing/pretty/tests/test_pretty.py
${PYSITELIB}/sympy/printing/pretty/tests/test_pretty.pyc
${PYSITELIB}/sympy/printing/pretty/tests/test_pretty.pyo
${PYSITELIB}/sympy/printing/pretty/tests/test_pretty_unicode.py
${PYSITELIB}/sympy/printing/pretty/tests/test_pretty_unicode.pyc
${PYSITELIB}/sympy/printing/pretty/tests/test_pretty_unicode.pyo
${PYSITELIB}/sympy/printing/preview.py
${PYSITELIB}/sympy/printing/preview.pyc
${PYSITELIB}/sympy/printing/preview.pyo
${PYSITELIB}/sympy/printing/printer.py
${PYSITELIB}/sympy/printing/printer.pyc
${PYSITELIB}/sympy/printing/printer.pyo
${PYSITELIB}/sympy/printing/python.py
${PYSITELIB}/sympy/printing/python.pyc
${PYSITELIB}/sympy/printing/python.pyo
${PYSITELIB}/sympy/printing/tests/test_gtk.py
${PYSITELIB}/sympy/printing/tests/test_gtk.pyc
${PYSITELIB}/sympy/printing/tests/test_gtk.pyo
${PYSITELIB}/sympy/printing/tests/test_latex.py
${PYSITELIB}/sympy/printing/tests/test_latex.pyc
${PYSITELIB}/sympy/printing/tests/test_latex.pyo
${PYSITELIB}/sympy/printing/tests/test_mathml.py
${PYSITELIB}/sympy/printing/tests/test_mathml.pyc
${PYSITELIB}/sympy/printing/tests/test_mathml.pyo
${PYSITELIB}/sympy/printing/tests/test_python.py
${PYSITELIB}/sympy/printing/tests/test_python.pyc
${PYSITELIB}/sympy/printing/tests/test_python.pyo
${PYSITELIB}/sympy/series/__init__.py
${PYSITELIB}/sympy/series/__init__.pyc
${PYSITELIB}/sympy/series/__init__.pyo
${PYSITELIB}/sympy/series/acceleration.py
${PYSITELIB}/sympy/series/acceleration.pyc
${PYSITELIB}/sympy/series/acceleration.pyo
${PYSITELIB}/sympy/series/gruntz.py
${PYSITELIB}/sympy/series/gruntz.pyc
${PYSITELIB}/sympy/series/gruntz.pyo
${PYSITELIB}/sympy/series/limits.py
${PYSITELIB}/sympy/series/limits.pyc
${PYSITELIB}/sympy/series/limits.pyo
${PYSITELIB}/sympy/series/order.py
${PYSITELIB}/sympy/series/order.pyc
${PYSITELIB}/sympy/series/order.pyo
${PYSITELIB}/sympy/series/tests/test_demidovich.py
${PYSITELIB}/sympy/series/tests/test_demidovich.pyc
${PYSITELIB}/sympy/series/tests/test_demidovich.pyo
${PYSITELIB}/sympy/series/tests/test_gruntz.py
${PYSITELIB}/sympy/series/tests/test_gruntz.pyc
${PYSITELIB}/sympy/series/tests/test_gruntz.pyo
${PYSITELIB}/sympy/series/tests/test_limits.py
${PYSITELIB}/sympy/series/tests/test_limits.pyc
${PYSITELIB}/sympy/series/tests/test_limits.pyo
${PYSITELIB}/sympy/series/tests/test_nseries.py
${PYSITELIB}/sympy/series/tests/test_nseries.pyc
${PYSITELIB}/sympy/series/tests/test_nseries.pyo
${PYSITELIB}/sympy/series/tests/test_order.py
${PYSITELIB}/sympy/series/tests/test_order.pyc
${PYSITELIB}/sympy/series/tests/test_order.pyo
${PYSITELIB}/sympy/series/tests/test_oseries.py
${PYSITELIB}/sympy/series/tests/test_oseries.pyc
${PYSITELIB}/sympy/series/tests/test_oseries.pyo
${PYSITELIB}/sympy/series/tests/test_series.py
${PYSITELIB}/sympy/series/tests/test_series.pyc
${PYSITELIB}/sympy/series/tests/test_series.pyo
${PYSITELIB}/sympy/simplify/__init__.py
${PYSITELIB}/sympy/simplify/__init__.pyc
${PYSITELIB}/sympy/simplify/__init__.pyo
${PYSITELIB}/sympy/simplify/rewrite.py
${PYSITELIB}/sympy/simplify/rewrite.pyc
${PYSITELIB}/sympy/simplify/rewrite.pyo
${PYSITELIB}/sympy/simplify/rootof.py
${PYSITELIB}/sympy/simplify/rootof.pyc
${PYSITELIB}/sympy/simplify/rootof.pyo
${PYSITELIB}/sympy/simplify/simplify.py
${PYSITELIB}/sympy/simplify/simplify.pyc
${PYSITELIB}/sympy/simplify/simplify.pyo
${PYSITELIB}/sympy/simplify/sqrtdenest.py
${PYSITELIB}/sympy/simplify/sqrtdenest.pyc
${PYSITELIB}/sympy/simplify/sqrtdenest.pyo
${PYSITELIB}/sympy/simplify/tests/test_rewrite.py
${PYSITELIB}/sympy/simplify/tests/test_rewrite.pyc
${PYSITELIB}/sympy/simplify/tests/test_rewrite.pyo
${PYSITELIB}/sympy/simplify/tests/test_rootof.py
${PYSITELIB}/sympy/simplify/tests/test_rootof.pyc
${PYSITELIB}/sympy/simplify/tests/test_rootof.pyo
${PYSITELIB}/sympy/simplify/tests/test_simplify.py
${PYSITELIB}/sympy/simplify/tests/test_simplify.pyc
${PYSITELIB}/sympy/simplify/tests/test_simplify.pyo
${PYSITELIB}/sympy/simplify/tests/test_sqrtdenest.py
${PYSITELIB}/sympy/simplify/tests/test_sqrtdenest.pyc
${PYSITELIB}/sympy/simplify/tests/test_sqrtdenest.pyo
${PYSITELIB}/sympy/solvers/__init__.py
${PYSITELIB}/sympy/solvers/__init__.pyc
${PYSITELIB}/sympy/solvers/__init__.pyo
${PYSITELIB}/sympy/solvers/recurr.py
${PYSITELIB}/sympy/solvers/recurr.pyc
${PYSITELIB}/sympy/solvers/recurr.pyo
${PYSITELIB}/sympy/solvers/solvers.py
${PYSITELIB}/sympy/solvers/solvers.pyc
${PYSITELIB}/sympy/solvers/solvers.pyo
${PYSITELIB}/sympy/solvers/tests/test_ode.py
${PYSITELIB}/sympy/solvers/tests/test_ode.pyc
${PYSITELIB}/sympy/solvers/tests/test_ode.pyo
${PYSITELIB}/sympy/solvers/tests/test_recurr.py
${PYSITELIB}/sympy/solvers/tests/test_recurr.pyc
${PYSITELIB}/sympy/solvers/tests/test_recurr.pyo
${PYSITELIB}/sympy/solvers/tests/test_solvers.py
${PYSITELIB}/sympy/solvers/tests/test_solvers.pyc
${PYSITELIB}/sympy/solvers/tests/test_solvers.pyo
${PYSITELIB}/sympy/specfun/__init__.py
${PYSITELIB}/sympy/specfun/__init__.pyc
${PYSITELIB}/sympy/specfun/__init__.pyo
${PYSITELIB}/sympy/specfun/factorials.py
${PYSITELIB}/sympy/specfun/factorials.pyc
${PYSITELIB}/sympy/specfun/factorials.pyo
${PYSITELIB}/sympy/specfun/tests/test_factorials.py
${PYSITELIB}/sympy/specfun/tests/test_factorials.pyc
${PYSITELIB}/sympy/specfun/tests/test_factorials.pyo
${PYSITELIB}/sympy/statistics/__init__.py
${PYSITELIB}/sympy/statistics/__init__.pyc
${PYSITELIB}/sympy/statistics/__init__.pyo
${PYSITELIB}/sympy/statistics/distributions.py
${PYSITELIB}/sympy/statistics/distributions.pyc
${PYSITELIB}/sympy/statistics/distributions.pyo
${PYSITELIB}/sympy/statistics/tests/test_statistics.py
${PYSITELIB}/sympy/statistics/tests/test_statistics.pyc
${PYSITELIB}/sympy/statistics/tests/test_statistics.pyo
${PYSITELIB}/sympy/test_external/test_numpy.py
${PYSITELIB}/sympy/test_external/test_numpy.pyc
${PYSITELIB}/sympy/test_external/test_numpy.pyo
${PYSITELIB}/sympy/thirdparty/__init__.py
${PYSITELIB}/sympy/thirdparty/__init__.pyc
${PYSITELIB}/sympy/thirdparty/__init__.pyo
${PYSITELIB}/sympy/thirdparty/mpmath/__init__.py
${PYSITELIB}/sympy/thirdparty/mpmath/__init__.pyc
${PYSITELIB}/sympy/thirdparty/mpmath/__init__.pyo
${PYSITELIB}/sympy/thirdparty/mpmath/calculus.py
${PYSITELIB}/sympy/thirdparty/mpmath/calculus.pyc
${PYSITELIB}/sympy/thirdparty/mpmath/calculus.pyo
${PYSITELIB}/sympy/thirdparty/mpmath/conftest.py
${PYSITELIB}/sympy/thirdparty/mpmath/conftest.pyc
${PYSITELIB}/sympy/thirdparty/mpmath/conftest.pyo
${PYSITELIB}/sympy/thirdparty/mpmath/intervals.py
${PYSITELIB}/sympy/thirdparty/mpmath/intervals.pyc
${PYSITELIB}/sympy/thirdparty/mpmath/intervals.pyo
${PYSITELIB}/sympy/thirdparty/mpmath/lib.py
${PYSITELIB}/sympy/thirdparty/mpmath/lib.pyc
${PYSITELIB}/sympy/thirdparty/mpmath/lib.pyo
${PYSITELIB}/sympy/thirdparty/mpmath/libmpc.py
${PYSITELIB}/sympy/thirdparty/mpmath/libmpc.pyc
${PYSITELIB}/sympy/thirdparty/mpmath/libmpc.pyo
${PYSITELIB}/sympy/thirdparty/mpmath/mptypes.py
${PYSITELIB}/sympy/thirdparty/mpmath/mptypes.pyc
${PYSITELIB}/sympy/thirdparty/mpmath/mptypes.pyo
${PYSITELIB}/sympy/thirdparty/mpmath/specfun.py
${PYSITELIB}/sympy/thirdparty/mpmath/specfun.pyc
${PYSITELIB}/sympy/thirdparty/mpmath/specfun.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/clock.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/clock.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/clock.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/com.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/com.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/com.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/event.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/event.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/event.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/base.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/base.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/base.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/carbon.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/carbon.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/carbon.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/freetype.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/freetype.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/freetype.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/freetype_lib.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/freetype_lib.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/freetype_lib.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/ttf.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/ttf.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/ttf.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/win32.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/win32.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font/win32.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/agl.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/agl.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/agl.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/gl.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/gl.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/gl.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/gl_info.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/gl_info.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/gl_info.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glext_arb.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glext_arb.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glext_arb.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glext_missing.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glext_missing.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glext_missing.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glext_nv.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glext_nv.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glext_nv.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glu.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glu.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glu.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glu_info.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glu_info.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glu_info.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glx.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glx.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glx.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glx_info.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glx_info.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glx_info.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glxext_arb.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glxext_arb.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glxext_arb.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glxext_mesa.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glxext_mesa.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glxext_mesa.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glxext_nv.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glxext_nv.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/glxext_nv.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/lib.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/lib.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/lib.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/lib_agl.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/lib_agl.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/lib_agl.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/lib_glx.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/lib_glx.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/lib_glx.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/lib_wgl.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/lib_wgl.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/lib_wgl.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/wgl.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/wgl.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/wgl.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/wgl_info.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/wgl_info.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/wgl_info.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/wglext_arb.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/wglext_arb.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/wglext_arb.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/wglext_nv.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/wglext_nv.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl/wglext_nv.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/dds.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/dds.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/dds.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/gdiplus.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/gdiplus.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/gdiplus.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/gdkpixbuf2.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/gdkpixbuf2.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/gdkpixbuf2.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/pil.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/pil.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/pil.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/png.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/png.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/png.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/pypng.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/pypng.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/pypng.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/quicktime.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/quicktime.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/quicktime.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/s3tc.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/s3tc.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/s3tc.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/lib.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/lib.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/lib.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/avbin.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/avbin.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/avbin.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/alsa/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/alsa/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/alsa/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/alsa/asound.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/alsa/asound.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/alsa/asound.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/directsound/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/directsound/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/directsound/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/directsound/lib_dsound.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/directsound/lib_dsound.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/directsound/lib_dsound.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/openal/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/openal/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/openal/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/openal/lib_alc.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/openal/lib_alc.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/openal/lib_alc.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/openal/lib_openal.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/openal/lib_openal.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/openal/lib_openal.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/silent.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/silent.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/silent.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/procedural.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/procedural.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/procedural.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/riff.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/riff.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/riff.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/carbon/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/carbon/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/carbon/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/carbon/constants.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/carbon/constants.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/carbon/constants.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/carbon/quartzkey.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/carbon/quartzkey.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/carbon/quartzkey.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/carbon/types.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/carbon/types.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/carbon/types.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/event.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/event.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/event.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/key.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/key.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/key.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/mouse.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/mouse.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/mouse.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/win32/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/win32/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/win32/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/win32/constants.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/win32/constants.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/win32/constants.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/win32/types.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/win32/types.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/win32/types.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/win32/winkey.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/win32/winkey.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/win32/winkey.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/xlib/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/xlib/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/xlib/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/xlib/cursorfont.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/xlib/cursorfont.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/xlib/cursorfont.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/xlib/xinerama.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/xlib/xinerama.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/xlib/xinerama.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/xlib/xlib.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/xlib/xlib.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/xlib/xlib.pyo
${PYSITELIB}/sympy/utilities/__init__.py
${PYSITELIB}/sympy/utilities/__init__.pyc
${PYSITELIB}/sympy/utilities/__init__.pyo
${PYSITELIB}/sympy/utilities/iterables.py
${PYSITELIB}/sympy/utilities/iterables.pyc
${PYSITELIB}/sympy/utilities/iterables.pyo
${PYSITELIB}/sympy/utilities/lambdify.py
${PYSITELIB}/sympy/utilities/lambdify.pyc
${PYSITELIB}/sympy/utilities/lambdify.pyo
${PYSITELIB}/sympy/utilities/mathml/__init__.py
${PYSITELIB}/sympy/utilities/mathml/__init__.pyc
${PYSITELIB}/sympy/utilities/mathml/__init__.pyo
${PYSITELIB}/sympy/utilities/mathml/data/mmlctop.xsl
${PYSITELIB}/sympy/utilities/mathml/data/mmltex.xsl
${PYSITELIB}/sympy/utilities/mathml/data/simple_mmlctop.xsl
${PYSITELIB}/sympy/utilities/memoization.py
${PYSITELIB}/sympy/utilities/memoization.pyc
${PYSITELIB}/sympy/utilities/memoization.pyo
${PYSITELIB}/sympy/utilities/pkgdata.py
${PYSITELIB}/sympy/utilities/pkgdata.pyc
${PYSITELIB}/sympy/utilities/pkgdata.pyo
${PYSITELIB}/sympy/utilities/pytest.py
${PYSITELIB}/sympy/utilities/pytest.pyc
${PYSITELIB}/sympy/utilities/pytest.pyo
${PYSITELIB}/sympy/utilities/test.py
${PYSITELIB}/sympy/utilities/test.pyc
${PYSITELIB}/sympy/utilities/test.pyo
${PYSITELIB}/sympy/utilities/tests/test_code_quality.py
${PYSITELIB}/sympy/utilities/tests/test_code_quality.pyc
${PYSITELIB}/sympy/utilities/tests/test_code_quality.pyo
${PYSITELIB}/sympy/utilities/tests/test_lambdify.py
${PYSITELIB}/sympy/utilities/tests/test_lambdify.pyc
${PYSITELIB}/sympy/utilities/tests/test_lambdify.pyo
${PYSITELIB}/sympy/utilities/tests/test_tests_names.py
${PYSITELIB}/sympy/utilities/tests/test_tests_names.pyc
${PYSITELIB}/sympy/utilities/tests/test_tests_names.pyo
man/man1/isympy${PYVERSSUFFIX}.1
@dirrm ${PYSITELIB}/sympy/utilities/tests
@dirrm ${PYSITELIB}/sympy/utilities/mathml/data
@dirrm ${PYSITELIB}/sympy/utilities/mathml
@dirrm ${PYSITELIB}/sympy/utilities
@dirrm ${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/xlib
@dirrm ${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/win32
@dirrm ${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/carbon
@dirrm ${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window
@dirrm ${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/openal
@dirrm ${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/directsound
@dirrm ${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers/alsa
@dirrm ${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media/drivers
@dirrm ${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/media
@dirrm ${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs
@dirrm ${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image
@dirrm ${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/gl
@dirrm ${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/font
@dirrm ${PYSITELIB}/sympy/thirdparty/pyglet/pyglet
@dirrm ${PYSITELIB}/sympy/thirdparty/pyglet
@dirrm ${PYSITELIB}/sympy/thirdparty/mpmath
@dirrm ${PYSITELIB}/sympy/thirdparty
@dirrm ${PYSITELIB}/sympy/test_external
@dirrm ${PYSITELIB}/sympy/statistics/tests
@dirrm ${PYSITELIB}/sympy/statistics
@dirrm ${PYSITELIB}/sympy/specfun/tests
@dirrm ${PYSITELIB}/sympy/specfun
@dirrm ${PYSITELIB}/sympy/solvers/tests
@dirrm ${PYSITELIB}/sympy/solvers
@dirrm ${PYSITELIB}/sympy/simplify/tests
@dirrm ${PYSITELIB}/sympy/simplify
@dirrm ${PYSITELIB}/sympy/series/tests
@dirrm ${PYSITELIB}/sympy/series
@dirrm ${PYSITELIB}/sympy/printing/tests
@dirrm ${PYSITELIB}/sympy/printing/pretty/tests
@dirrm ${PYSITELIB}/sympy/printing/pretty
@dirrm ${PYSITELIB}/sympy/printing
@dirrm ${PYSITELIB}/sympy/polys/tests
@dirrm ${PYSITELIB}/sympy/polys
@dirrm ${PYSITELIB}/sympy/polynomials/tests
@dirrm ${PYSITELIB}/sympy/polynomials/fast
@dirrm ${PYSITELIB}/sympy/polynomials
@dirrm ${PYSITELIB}/sympy/plotting/tests
@dirrm ${PYSITELIB}/sympy/plotting
@dirrm ${PYSITELIB}/sympy/physics/tests
@dirrm ${PYSITELIB}/sympy/physics
@dirrm ${PYSITELIB}/sympy/parsing/tests
@dirrm ${PYSITELIB}/sympy/parsing
@dirrm ${PYSITELIB}/sympy/numerics/tests
@dirrm ${PYSITELIB}/sympy/numerics
@dirrm ${PYSITELIB}/sympy/ntheory/tests
@dirrm ${PYSITELIB}/sympy/ntheory
@dirrm ${PYSITELIB}/sympy/matrices/tests
@dirrm ${PYSITELIB}/sympy/matrices
@dirrm ${PYSITELIB}/sympy/interactive
@dirrm ${PYSITELIB}/sympy/integrals/tests
@dirrm ${PYSITELIB}/sympy/integrals
@dirrm ${PYSITELIB}/sympy/geometry/tests
@dirrm ${PYSITELIB}/sympy/geometry
@dirrm ${PYSITELIB}/sympy/functions/special/tests
@dirrm ${PYSITELIB}/sympy/functions/special
@dirrm ${PYSITELIB}/sympy/functions/elementary/tests
@dirrm ${PYSITELIB}/sympy/functions/elementary
@dirrm ${PYSITELIB}/sympy/functions/combinatorial/tests
@dirrm ${PYSITELIB}/sympy/functions/combinatorial
@dirrm ${PYSITELIB}/sympy/functions
@dirrm ${PYSITELIB}/sympy/core/tests
@dirrm ${PYSITELIB}/sympy/core
@dirrm ${PYSITELIB}/sympy/concrete/tests
@dirrm ${PYSITELIB}/sympy/concrete
@dirrm ${PYSITELIB}/sympy