summaryrefslogtreecommitdiff
path: root/math/py-sympy/PLIST
blob: 25f8d561817b34f5f8d368085611f51b5cd6f60f (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
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
@comment $NetBSD: PLIST,v 1.5 2010/01/27 14:21:19 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/assumptions/__init__.py
${PYSITELIB}/sympy/assumptions/__init__.pyc
${PYSITELIB}/sympy/assumptions/__init__.pyo
${PYSITELIB}/sympy/assumptions/ask.py
${PYSITELIB}/sympy/assumptions/ask.pyc
${PYSITELIB}/sympy/assumptions/ask.pyo
${PYSITELIB}/sympy/assumptions/assume.py
${PYSITELIB}/sympy/assumptions/assume.pyc
${PYSITELIB}/sympy/assumptions/assume.pyo
${PYSITELIB}/sympy/assumptions/handlers/__init__.py
${PYSITELIB}/sympy/assumptions/handlers/__init__.pyc
${PYSITELIB}/sympy/assumptions/handlers/__init__.pyo
${PYSITELIB}/sympy/assumptions/handlers/calculus.py
${PYSITELIB}/sympy/assumptions/handlers/calculus.pyc
${PYSITELIB}/sympy/assumptions/handlers/calculus.pyo
${PYSITELIB}/sympy/assumptions/handlers/ntheory.py
${PYSITELIB}/sympy/assumptions/handlers/ntheory.pyc
${PYSITELIB}/sympy/assumptions/handlers/ntheory.pyo
${PYSITELIB}/sympy/assumptions/handlers/order.py
${PYSITELIB}/sympy/assumptions/handlers/order.pyc
${PYSITELIB}/sympy/assumptions/handlers/order.pyo
${PYSITELIB}/sympy/assumptions/handlers/sets.py
${PYSITELIB}/sympy/assumptions/handlers/sets.pyc
${PYSITELIB}/sympy/assumptions/handlers/sets.pyo
${PYSITELIB}/sympy/assumptions/refine.py
${PYSITELIB}/sympy/assumptions/refine.pyc
${PYSITELIB}/sympy/assumptions/refine.pyo
${PYSITELIB}/sympy/assumptions/tests/test_assumptions_2.py
${PYSITELIB}/sympy/assumptions/tests/test_assumptions_2.pyc
${PYSITELIB}/sympy/assumptions/tests/test_assumptions_2.pyo
${PYSITELIB}/sympy/assumptions/tests/test_query.py
${PYSITELIB}/sympy/assumptions/tests/test_query.pyc
${PYSITELIB}/sympy/assumptions/tests/test_query.pyo
${PYSITELIB}/sympy/assumptions/tests/test_refine.py
${PYSITELIB}/sympy/assumptions/tests/test_refine.pyc
${PYSITELIB}/sympy/assumptions/tests/test_refine.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/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/ast_parser_python24.py
${PYSITELIB}/sympy/core/ast_parser_python24.pyc
${PYSITELIB}/sympy/core/ast_parser_python24.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/decorators.py
${PYSITELIB}/sympy/core/decorators.pyc
${PYSITELIB}/sympy/core/decorators.pyo
${PYSITELIB}/sympy/core/evalf.py
${PYSITELIB}/sympy/core/evalf.pyc
${PYSITELIB}/sympy/core/evalf.pyo
${PYSITELIB}/sympy/core/facts.py
${PYSITELIB}/sympy/core/facts.pyc
${PYSITELIB}/sympy/core/facts.pyo
${PYSITELIB}/sympy/core/function.py
${PYSITELIB}/sympy/core/function.pyc
${PYSITELIB}/sympy/core/function.pyo
${PYSITELIB}/sympy/core/logic.py
${PYSITELIB}/sympy/core/logic.pyc
${PYSITELIB}/sympy/core/logic.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/sets.py
${PYSITELIB}/sympy/core/sets.pyc
${PYSITELIB}/sympy/core/sets.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_cache.py
${PYSITELIB}/sympy/core/tests/test_cache.pyc
${PYSITELIB}/sympy/core/tests/test_cache.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_evalf.py
${PYSITELIB}/sympy/core/tests/test_evalf.pyc
${PYSITELIB}/sympy/core/tests/test_evalf.pyo
${PYSITELIB}/sympy/core/tests/test_expand.py
${PYSITELIB}/sympy/core/tests/test_expand.pyc
${PYSITELIB}/sympy/core/tests/test_expand.pyo
${PYSITELIB}/sympy/core/tests/test_facts.py
${PYSITELIB}/sympy/core/tests/test_facts.pyc
${PYSITELIB}/sympy/core/tests/test_facts.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_logic.py
${PYSITELIB}/sympy/core/tests/test_logic.pyc
${PYSITELIB}/sympy/core/tests/test_logic.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_operations.py
${PYSITELIB}/sympy/core/tests/test_operations.pyc
${PYSITELIB}/sympy/core/tests/test_operations.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_sets.py
${PYSITELIB}/sympy/core/tests/test_sets.pyc
${PYSITELIB}/sympy/core/tests/test_sets.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/piecewise.py
${PYSITELIB}/sympy/functions/elementary/piecewise.pyc
${PYSITELIB}/sympy/functions/elementary/piecewise.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_piecewise.py
${PYSITELIB}/sympy/functions/elementary/tests/test_piecewise.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_piecewise.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/delta_functions.py
${PYSITELIB}/sympy/functions/special/delta_functions.pyc
${PYSITELIB}/sympy/functions/special/delta_functions.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_delta_functions.py
${PYSITELIB}/sympy/functions/special/tests/test_delta_functions.pyc
${PYSITELIB}/sympy/functions/special/tests/test_delta_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/galgebra/GA.py
${PYSITELIB}/sympy/galgebra/GA.pyc
${PYSITELIB}/sympy/galgebra/GA.pyo
${PYSITELIB}/sympy/galgebra/__init__.py
${PYSITELIB}/sympy/galgebra/__init__.pyc
${PYSITELIB}/sympy/galgebra/__init__.pyo
${PYSITELIB}/sympy/galgebra/latex_ex.py
${PYSITELIB}/sympy/galgebra/latex_ex.pyc
${PYSITELIB}/sympy/galgebra/latex_ex.pyo
${PYSITELIB}/sympy/galgebra/tests/test_GA.py
${PYSITELIB}/sympy/galgebra/tests/test_GA.pyc
${PYSITELIB}/sympy/galgebra/tests/test_GA.pyo
${PYSITELIB}/sympy/geometry/__init__.py
${PYSITELIB}/sympy/geometry/__init__.pyc
${PYSITELIB}/sympy/geometry/__init__.pyo
${PYSITELIB}/sympy/geometry/curve.py
${PYSITELIB}/sympy/geometry/curve.pyc
${PYSITELIB}/sympy/geometry/curve.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/deltafunctions.py
${PYSITELIB}/sympy/integrals/deltafunctions.pyc
${PYSITELIB}/sympy/integrals/deltafunctions.pyo
${PYSITELIB}/sympy/integrals/integrals.py
${PYSITELIB}/sympy/integrals/integrals.pyc
${PYSITELIB}/sympy/integrals/integrals.pyo
${PYSITELIB}/sympy/integrals/rationaltools.py
${PYSITELIB}/sympy/integrals/rationaltools.pyc
${PYSITELIB}/sympy/integrals/rationaltools.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_lineintegrals.py
${PYSITELIB}/sympy/integrals/tests/test_lineintegrals.pyc
${PYSITELIB}/sympy/integrals/tests/test_lineintegrals.pyo
${PYSITELIB}/sympy/integrals/tests/test_rationaltools.py
${PYSITELIB}/sympy/integrals/tests/test_rationaltools.pyc
${PYSITELIB}/sympy/integrals/tests/test_rationaltools.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/logic/__init__.py
${PYSITELIB}/sympy/logic/__init__.pyc
${PYSITELIB}/sympy/logic/__init__.pyo
${PYSITELIB}/sympy/logic/algorithms/__init__.py
${PYSITELIB}/sympy/logic/algorithms/__init__.pyc
${PYSITELIB}/sympy/logic/algorithms/__init__.pyo
${PYSITELIB}/sympy/logic/algorithms/dpll.py
${PYSITELIB}/sympy/logic/algorithms/dpll.pyc
${PYSITELIB}/sympy/logic/algorithms/dpll.pyo
${PYSITELIB}/sympy/logic/boolalg.py
${PYSITELIB}/sympy/logic/boolalg.pyc
${PYSITELIB}/sympy/logic/boolalg.pyo
${PYSITELIB}/sympy/logic/inference.py
${PYSITELIB}/sympy/logic/inference.pyc
${PYSITELIB}/sympy/logic/inference.pyo
${PYSITELIB}/sympy/logic/tests/test_boolalg.py
${PYSITELIB}/sympy/logic/tests/test_boolalg.pyc
${PYSITELIB}/sympy/logic/tests/test_boolalg.pyo
${PYSITELIB}/sympy/logic/tests/test_dimacs.py
${PYSITELIB}/sympy/logic/tests/test_dimacs.pyc
${PYSITELIB}/sympy/logic/tests/test_dimacs.pyo
${PYSITELIB}/sympy/logic/tests/test_inference.py
${PYSITELIB}/sympy/logic/tests/test_inference.pyc
${PYSITELIB}/sympy/logic/tests/test_inference.pyo
${PYSITELIB}/sympy/logic/utilities/__init__.py
${PYSITELIB}/sympy/logic/utilities/__init__.pyc
${PYSITELIB}/sympy/logic/utilities/__init__.pyo
${PYSITELIB}/sympy/logic/utilities/dimacs.py
${PYSITELIB}/sympy/logic/utilities/dimacs.pyc
${PYSITELIB}/sympy/logic/utilities/dimacs.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/mpmath/__init__.py
${PYSITELIB}/sympy/mpmath/__init__.pyc
${PYSITELIB}/sympy/mpmath/__init__.pyo
${PYSITELIB}/sympy/mpmath/calculus.py
${PYSITELIB}/sympy/mpmath/calculus.pyc
${PYSITELIB}/sympy/mpmath/calculus.pyo
${PYSITELIB}/sympy/mpmath/conftest.py
${PYSITELIB}/sympy/mpmath/conftest.pyc
${PYSITELIB}/sympy/mpmath/conftest.pyo
${PYSITELIB}/sympy/mpmath/elliptic.py
${PYSITELIB}/sympy/mpmath/elliptic.pyc
${PYSITELIB}/sympy/mpmath/elliptic.pyo
${PYSITELIB}/sympy/mpmath/function_docs.py
${PYSITELIB}/sympy/mpmath/function_docs.pyc
${PYSITELIB}/sympy/mpmath/function_docs.pyo
${PYSITELIB}/sympy/mpmath/functions.py
${PYSITELIB}/sympy/mpmath/functions.pyc
${PYSITELIB}/sympy/mpmath/functions.pyo
${PYSITELIB}/sympy/mpmath/gammazeta.py
${PYSITELIB}/sympy/mpmath/gammazeta.pyc
${PYSITELIB}/sympy/mpmath/gammazeta.pyo
${PYSITELIB}/sympy/mpmath/identification.py
${PYSITELIB}/sympy/mpmath/identification.pyc
${PYSITELIB}/sympy/mpmath/identification.pyo
${PYSITELIB}/sympy/mpmath/libelefun.py
${PYSITELIB}/sympy/mpmath/libelefun.pyc
${PYSITELIB}/sympy/mpmath/libelefun.pyo
${PYSITELIB}/sympy/mpmath/libhyper.py
${PYSITELIB}/sympy/mpmath/libhyper.pyc
${PYSITELIB}/sympy/mpmath/libhyper.pyo
${PYSITELIB}/sympy/mpmath/libintmath.py
${PYSITELIB}/sympy/mpmath/libintmath.pyc
${PYSITELIB}/sympy/mpmath/libintmath.pyo
${PYSITELIB}/sympy/mpmath/libmpc.py
${PYSITELIB}/sympy/mpmath/libmpc.pyc
${PYSITELIB}/sympy/mpmath/libmpc.pyo
${PYSITELIB}/sympy/mpmath/libmpf.py
${PYSITELIB}/sympy/mpmath/libmpf.pyc
${PYSITELIB}/sympy/mpmath/libmpf.pyo
${PYSITELIB}/sympy/mpmath/libmpi.py
${PYSITELIB}/sympy/mpmath/libmpi.pyc
${PYSITELIB}/sympy/mpmath/libmpi.pyo
${PYSITELIB}/sympy/mpmath/linalg.py
${PYSITELIB}/sympy/mpmath/linalg.pyc
${PYSITELIB}/sympy/mpmath/linalg.pyo
${PYSITELIB}/sympy/mpmath/matrices.py
${PYSITELIB}/sympy/mpmath/matrices.pyc
${PYSITELIB}/sympy/mpmath/matrices.pyo
${PYSITELIB}/sympy/mpmath/mptypes.py
${PYSITELIB}/sympy/mpmath/mptypes.pyc
${PYSITELIB}/sympy/mpmath/mptypes.pyo
${PYSITELIB}/sympy/mpmath/odes.py
${PYSITELIB}/sympy/mpmath/odes.pyc
${PYSITELIB}/sympy/mpmath/odes.pyo
${PYSITELIB}/sympy/mpmath/optimization.py
${PYSITELIB}/sympy/mpmath/optimization.pyc
${PYSITELIB}/sympy/mpmath/optimization.pyo
${PYSITELIB}/sympy/mpmath/quadrature.py
${PYSITELIB}/sympy/mpmath/quadrature.pyc
${PYSITELIB}/sympy/mpmath/quadrature.pyo
${PYSITELIB}/sympy/mpmath/settings.py
${PYSITELIB}/sympy/mpmath/settings.pyc
${PYSITELIB}/sympy/mpmath/settings.pyo
${PYSITELIB}/sympy/mpmath/tests/__init__.py
${PYSITELIB}/sympy/mpmath/tests/__init__.pyc
${PYSITELIB}/sympy/mpmath/tests/__init__.pyo
${PYSITELIB}/sympy/mpmath/tests/runtests.py
${PYSITELIB}/sympy/mpmath/tests/runtests.pyc
${PYSITELIB}/sympy/mpmath/tests/runtests.pyo
${PYSITELIB}/sympy/mpmath/tests/test_basic_ops.py
${PYSITELIB}/sympy/mpmath/tests/test_basic_ops.pyc
${PYSITELIB}/sympy/mpmath/tests/test_basic_ops.pyo
${PYSITELIB}/sympy/mpmath/tests/test_bitwise.py
${PYSITELIB}/sympy/mpmath/tests/test_bitwise.pyc
${PYSITELIB}/sympy/mpmath/tests/test_bitwise.pyo
${PYSITELIB}/sympy/mpmath/tests/test_calculus.py
${PYSITELIB}/sympy/mpmath/tests/test_calculus.pyc
${PYSITELIB}/sympy/mpmath/tests/test_calculus.pyo
${PYSITELIB}/sympy/mpmath/tests/test_compatibility.py
${PYSITELIB}/sympy/mpmath/tests/test_compatibility.pyc
${PYSITELIB}/sympy/mpmath/tests/test_compatibility.pyo
${PYSITELIB}/sympy/mpmath/tests/test_convert.py
${PYSITELIB}/sympy/mpmath/tests/test_convert.pyc
${PYSITELIB}/sympy/mpmath/tests/test_convert.pyo
${PYSITELIB}/sympy/mpmath/tests/test_diff_mpmath.py
${PYSITELIB}/sympy/mpmath/tests/test_diff_mpmath.pyc
${PYSITELIB}/sympy/mpmath/tests/test_diff_mpmath.pyo
${PYSITELIB}/sympy/mpmath/tests/test_division.py
${PYSITELIB}/sympy/mpmath/tests/test_division.pyc
${PYSITELIB}/sympy/mpmath/tests/test_division.pyo
${PYSITELIB}/sympy/mpmath/tests/test_elliptic.py
${PYSITELIB}/sympy/mpmath/tests/test_elliptic.pyc
${PYSITELIB}/sympy/mpmath/tests/test_elliptic.pyo
${PYSITELIB}/sympy/mpmath/tests/test_functions2.py
${PYSITELIB}/sympy/mpmath/tests/test_functions2.pyc
${PYSITELIB}/sympy/mpmath/tests/test_functions2.pyo
${PYSITELIB}/sympy/mpmath/tests/test_functions_mpmath.py
${PYSITELIB}/sympy/mpmath/tests/test_functions_mpmath.pyc
${PYSITELIB}/sympy/mpmath/tests/test_functions_mpmath.pyo
${PYSITELIB}/sympy/mpmath/tests/test_gammazeta.py
${PYSITELIB}/sympy/mpmath/tests/test_gammazeta.pyc
${PYSITELIB}/sympy/mpmath/tests/test_gammazeta.pyo
${PYSITELIB}/sympy/mpmath/tests/test_hp.py
${PYSITELIB}/sympy/mpmath/tests/test_hp.pyc
${PYSITELIB}/sympy/mpmath/tests/test_hp.pyo
${PYSITELIB}/sympy/mpmath/tests/test_identify.py
${PYSITELIB}/sympy/mpmath/tests/test_identify.pyc
${PYSITELIB}/sympy/mpmath/tests/test_identify.pyo
${PYSITELIB}/sympy/mpmath/tests/test_interval.py
${PYSITELIB}/sympy/mpmath/tests/test_interval.pyc
${PYSITELIB}/sympy/mpmath/tests/test_interval.pyo
${PYSITELIB}/sympy/mpmath/tests/test_linalg.py
${PYSITELIB}/sympy/mpmath/tests/test_linalg.pyc
${PYSITELIB}/sympy/mpmath/tests/test_linalg.pyo
${PYSITELIB}/sympy/mpmath/tests/test_matrices_mpmath.py
${PYSITELIB}/sympy/mpmath/tests/test_matrices_mpmath.pyc
${PYSITELIB}/sympy/mpmath/tests/test_matrices_mpmath.pyo
${PYSITELIB}/sympy/mpmath/tests/test_mpmath.py
${PYSITELIB}/sympy/mpmath/tests/test_mpmath.pyc
${PYSITELIB}/sympy/mpmath/tests/test_mpmath.pyo
${PYSITELIB}/sympy/mpmath/tests/test_ode_mpmath.py
${PYSITELIB}/sympy/mpmath/tests/test_ode_mpmath.pyc
${PYSITELIB}/sympy/mpmath/tests/test_ode_mpmath.pyo
${PYSITELIB}/sympy/mpmath/tests/test_pickle.py
${PYSITELIB}/sympy/mpmath/tests/test_pickle.pyc
${PYSITELIB}/sympy/mpmath/tests/test_pickle.pyo
${PYSITELIB}/sympy/mpmath/tests/test_power.py
${PYSITELIB}/sympy/mpmath/tests/test_power.pyc
${PYSITELIB}/sympy/mpmath/tests/test_power.pyo
${PYSITELIB}/sympy/mpmath/tests/test_quad.py
${PYSITELIB}/sympy/mpmath/tests/test_quad.pyc
${PYSITELIB}/sympy/mpmath/tests/test_quad.pyo
${PYSITELIB}/sympy/mpmath/tests/test_rootfinding.py
${PYSITELIB}/sympy/mpmath/tests/test_rootfinding.pyc
${PYSITELIB}/sympy/mpmath/tests/test_rootfinding.pyo
${PYSITELIB}/sympy/mpmath/tests/test_special.py
${PYSITELIB}/sympy/mpmath/tests/test_special.pyc
${PYSITELIB}/sympy/mpmath/tests/test_special.pyo
${PYSITELIB}/sympy/mpmath/tests/test_summation.py
${PYSITELIB}/sympy/mpmath/tests/test_summation.pyc
${PYSITELIB}/sympy/mpmath/tests/test_summation.pyo
${PYSITELIB}/sympy/mpmath/tests/test_trig.py
${PYSITELIB}/sympy/mpmath/tests/test_trig.pyc
${PYSITELIB}/sympy/mpmath/tests/test_trig.pyo
${PYSITELIB}/sympy/mpmath/tests/torture.py
${PYSITELIB}/sympy/mpmath/tests/torture.pyc
${PYSITELIB}/sympy/mpmath/tests/torture.pyo
${PYSITELIB}/sympy/mpmath/usertools.py
${PYSITELIB}/sympy/mpmath/usertools.pyc
${PYSITELIB}/sympy/mpmath/usertools.pyo
${PYSITELIB}/sympy/mpmath/visualization.py
${PYSITELIB}/sympy/mpmath/visualization.pyc
${PYSITELIB}/sympy/mpmath/visualization.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/modular.py
${PYSITELIB}/sympy/ntheory/modular.pyc
${PYSITELIB}/sympy/ntheory/modular.pyo
${PYSITELIB}/sympy/ntheory/multinomial.py
${PYSITELIB}/sympy/ntheory/multinomial.pyc
${PYSITELIB}/sympy/ntheory/multinomial.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/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/secondquant.py
${PYSITELIB}/sympy/physics/secondquant.pyc
${PYSITELIB}/sympy/physics/secondquant.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_secondquant.py
${PYSITELIB}/sympy/physics/tests/test_secondquant.pyc
${PYSITELIB}/sympy/physics/tests/test_secondquant.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/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/factortools.py
${PYSITELIB}/sympy/polys/factortools.pyc
${PYSITELIB}/sympy/polys/factortools.pyo
${PYSITELIB}/sympy/polys/galoispolys.py
${PYSITELIB}/sympy/polys/galoispolys.pyc
${PYSITELIB}/sympy/polys/galoispolys.pyo
${PYSITELIB}/sympy/polys/integerpolys.py
${PYSITELIB}/sympy/polys/integerpolys.pyc
${PYSITELIB}/sympy/polys/integerpolys.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/rootfinding.py
${PYSITELIB}/sympy/polys/rootfinding.pyc
${PYSITELIB}/sympy/polys/rootfinding.pyo
${PYSITELIB}/sympy/polys/specialpolys.py
${PYSITELIB}/sympy/polys/specialpolys.pyc
${PYSITELIB}/sympy/polys/specialpolys.pyo
${PYSITELIB}/sympy/polys/tests/test_galoispolys.py
${PYSITELIB}/sympy/polys/tests/test_galoispolys.pyc
${PYSITELIB}/sympy/polys/tests/test_galoispolys.pyo
${PYSITELIB}/sympy/polys/tests/test_integerpolys.py
${PYSITELIB}/sympy/polys/tests/test_integerpolys.pyc
${PYSITELIB}/sympy/polys/tests/test_integerpolys.pyo
${PYSITELIB}/sympy/polys/tests/test_polynomial.py
${PYSITELIB}/sympy/polys/tests/test_polynomial.pyc
${PYSITELIB}/sympy/polys/tests/test_polynomial.pyo
${PYSITELIB}/sympy/polys/tests/test_specialpolys.py
${PYSITELIB}/sympy/polys/tests/test_specialpolys.pyc
${PYSITELIB}/sympy/polys/tests/test_specialpolys.pyo
${PYSITELIB}/sympy/polys/wrappers.py
${PYSITELIB}/sympy/polys/wrappers.pyc
${PYSITELIB}/sympy/polys/wrappers.pyo
${PYSITELIB}/sympy/printing/__init__.py
${PYSITELIB}/sympy/printing/__init__.pyc
${PYSITELIB}/sympy/printing/__init__.pyo
${PYSITELIB}/sympy/printing/ccode.py
${PYSITELIB}/sympy/printing/ccode.pyc
${PYSITELIB}/sympy/printing/ccode.pyo
${PYSITELIB}/sympy/printing/conventions.py
${PYSITELIB}/sympy/printing/conventions.pyc
${PYSITELIB}/sympy/printing/conventions.pyo
${PYSITELIB}/sympy/printing/gtk.py
${PYSITELIB}/sympy/printing/gtk.pyc
${PYSITELIB}/sympy/printing/gtk.pyo
${PYSITELIB}/sympy/printing/lambdarepr.py
${PYSITELIB}/sympy/printing/lambdarepr.pyc
${PYSITELIB}/sympy/printing/lambdarepr.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/precedence.py
${PYSITELIB}/sympy/printing/precedence.pyc
${PYSITELIB}/sympy/printing/precedence.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/repr.py
${PYSITELIB}/sympy/printing/repr.pyc
${PYSITELIB}/sympy/printing/repr.pyo
${PYSITELIB}/sympy/printing/str.py
${PYSITELIB}/sympy/printing/str.pyc
${PYSITELIB}/sympy/printing/str.pyo
${PYSITELIB}/sympy/printing/tests/test_ccode.py
${PYSITELIB}/sympy/printing/tests/test_ccode.pyc
${PYSITELIB}/sympy/printing/tests/test_ccode.pyo
${PYSITELIB}/sympy/printing/tests/test_conventions.py
${PYSITELIB}/sympy/printing/tests/test_conventions.pyc
${PYSITELIB}/sympy/printing/tests/test_conventions.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_lambdarepr.py
${PYSITELIB}/sympy/printing/tests/test_lambdarepr.pyc
${PYSITELIB}/sympy/printing/tests/test_lambdarepr.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_precedence.py
${PYSITELIB}/sympy/printing/tests/test_precedence.pyc
${PYSITELIB}/sympy/printing/tests/test_precedence.pyo
${PYSITELIB}/sympy/printing/tests/test_python.py
${PYSITELIB}/sympy/printing/tests/test_python.pyc
${PYSITELIB}/sympy/printing/tests/test_python.pyo
${PYSITELIB}/sympy/printing/tests/test_repr.py
${PYSITELIB}/sympy/printing/tests/test_repr.pyc
${PYSITELIB}/sympy/printing/tests/test_repr.pyo
${PYSITELIB}/sympy/printing/tests/test_str.py
${PYSITELIB}/sympy/printing/tests/test_str.pyc
${PYSITELIB}/sympy/printing/tests/test_str.pyo
${PYSITELIB}/sympy/printing/tree.py
${PYSITELIB}/sympy/printing/tree.pyc
${PYSITELIB}/sympy/printing/tree.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/series.py
${PYSITELIB}/sympy/series/series.pyc
${PYSITELIB}/sympy/series/series.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_lseries.py
${PYSITELIB}/sympy/series/tests/test_lseries.pyc
${PYSITELIB}/sympy/series/tests/test_lseries.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_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/cse_main.py
${PYSITELIB}/sympy/simplify/cse_main.pyc
${PYSITELIB}/sympy/simplify/cse_main.pyo
${PYSITELIB}/sympy/simplify/cse_opts.py
${PYSITELIB}/sympy/simplify/cse_opts.pyc
${PYSITELIB}/sympy/simplify/cse_opts.pyo
${PYSITELIB}/sympy/simplify/rewrite.py
${PYSITELIB}/sympy/simplify/rewrite.pyc
${PYSITELIB}/sympy/simplify/rewrite.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_cse.py
${PYSITELIB}/sympy/simplify/tests/test_cse.pyc
${PYSITELIB}/sympy/simplify/tests/test_cse.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_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/slow_tests/test_core.py
${PYSITELIB}/sympy/slow_tests/test_core.pyc
${PYSITELIB}/sympy/slow_tests/test_core.pyo
${PYSITELIB}/sympy/solvers/__init__.py
${PYSITELIB}/sympy/solvers/__init__.pyc
${PYSITELIB}/sympy/solvers/__init__.pyo
${PYSITELIB}/sympy/solvers/ode.py
${PYSITELIB}/sympy/solvers/ode.pyc
${PYSITELIB}/sympy/solvers/ode.pyo
${PYSITELIB}/sympy/solvers/pde.py
${PYSITELIB}/sympy/solvers/pde.pyc
${PYSITELIB}/sympy/solvers/pde.pyo
${PYSITELIB}/sympy/solvers/polysys.py
${PYSITELIB}/sympy/solvers/polysys.pyc
${PYSITELIB}/sympy/solvers/polysys.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_constantsimp.py
${PYSITELIB}/sympy/solvers/tests/test_constantsimp.pyc
${PYSITELIB}/sympy/solvers/tests/test_constantsimp.pyo
${PYSITELIB}/sympy/solvers/tests/test_numeric.py
${PYSITELIB}/sympy/solvers/tests/test_numeric.pyc
${PYSITELIB}/sympy/solvers/tests/test_numeric.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_pde.py
${PYSITELIB}/sympy/solvers/tests/test_pde.pyc
${PYSITELIB}/sympy/solvers/tests/test_pde.pyo
${PYSITELIB}/sympy/solvers/tests/test_polysys.py
${PYSITELIB}/sympy/solvers/tests/test_polysys.pyc
${PYSITELIB}/sympy/solvers/tests/test_polysys.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/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_codegen_c_cc.py
${PYSITELIB}/sympy/test_external/test_codegen_c_cc.pyc
${PYSITELIB}/sympy/test_external/test_codegen_c_cc.pyo
${PYSITELIB}/sympy/test_external/test_numpy.py
${PYSITELIB}/sympy/test_external/test_numpy.pyc
${PYSITELIB}/sympy/test_external/test_numpy.pyo
${PYSITELIB}/sympy/test_external/test_sage.py
${PYSITELIB}/sympy/test_external/test_sage.pyc
${PYSITELIB}/sympy/test_external/test_sage.pyo
${PYSITELIB}/sympy/thirdparty/__init__.py
${PYSITELIB}/sympy/thirdparty/__init__.pyc
${PYSITELIB}/sympy/thirdparty/__init__.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/app/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/app/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/app/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/app/carbon.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/app/carbon.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/app/carbon.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/app/win32.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/app/win32.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/app/win32.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/app/xlib.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/app/xlib.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/app/xlib.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/graphics/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/graphics/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/graphics/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/graphics/allocation.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/graphics/allocation.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/graphics/allocation.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/graphics/vertexattribute.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/graphics/vertexattribute.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/graphics/vertexattribute.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/graphics/vertexbuffer.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/graphics/vertexbuffer.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/graphics/vertexbuffer.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/graphics/vertexdomain.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/graphics/vertexdomain.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/graphics/vertexdomain.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/atlas.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/atlas.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/atlas.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/bmp.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/bmp.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/bmp.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/gif.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/gif.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/image/codecs/gif.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/info.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/info.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/info.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/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/resource.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/resource.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/resource.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/sprite.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/sprite.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/sprite.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/caret.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/caret.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/caret.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/document.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/document.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/document.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/formats/__init__.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/formats/__init__.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/formats/__init__.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/formats/attributed.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/formats/attributed.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/formats/attributed.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/formats/html.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/formats/html.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/formats/html.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/formats/plaintext.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/formats/plaintext.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/formats/plaintext.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/formats/structured.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/formats/structured.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/formats/structured.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/layout.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/layout.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/layout.pyo
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/runlist.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/runlist.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/text/runlist.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/thirdparty/pyglet/pyglet/window/xlib/xsync.py
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/xlib/xsync.pyc
${PYSITELIB}/sympy/thirdparty/pyglet/pyglet/window/xlib/xsync.pyo
${PYSITELIB}/sympy/utilities/__init__.py
${PYSITELIB}/sympy/utilities/__init__.pyc
${PYSITELIB}/sympy/utilities/__init__.pyo
${PYSITELIB}/sympy/utilities/benchmarking.py
${PYSITELIB}/sympy/utilities/benchmarking.pyc
${PYSITELIB}/sympy/utilities/benchmarking.pyo
${PYSITELIB}/sympy/utilities/codegen.py
${PYSITELIB}/sympy/utilities/codegen.pyc
${PYSITELIB}/sympy/utilities/codegen.pyo
${PYSITELIB}/sympy/utilities/compilef.py
${PYSITELIB}/sympy/utilities/compilef.pyc
${PYSITELIB}/sympy/utilities/compilef.pyo
${PYSITELIB}/sympy/utilities/decorator.py
${PYSITELIB}/sympy/utilities/decorator.pyc
${PYSITELIB}/sympy/utilities/decorator.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/runtests.py
${PYSITELIB}/sympy/utilities/runtests.pyc
${PYSITELIB}/sympy/utilities/runtests.pyo
${PYSITELIB}/sympy/utilities/source.py
${PYSITELIB}/sympy/utilities/source.pyc
${PYSITELIB}/sympy/utilities/source.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_codegen.py
${PYSITELIB}/sympy/utilities/tests/test_codegen.pyc
${PYSITELIB}/sympy/utilities/tests/test_codegen.pyo
${PYSITELIB}/sympy/utilities/tests/test_decorator.py
${PYSITELIB}/sympy/utilities/tests/test_decorator.pyc
${PYSITELIB}/sympy/utilities/tests/test_decorator.pyo
${PYSITELIB}/sympy/utilities/tests/test_iterables.py
${PYSITELIB}/sympy/utilities/tests/test_iterables.pyc
${PYSITELIB}/sympy/utilities/tests/test_iterables.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_pickling.py
${PYSITELIB}/sympy/utilities/tests/test_pickling.pyc
${PYSITELIB}/sympy/utilities/tests/test_pickling.pyo
${PYSITELIB}/sympy/utilities/tests/test_pytest.py
${PYSITELIB}/sympy/utilities/tests/test_pytest.pyc
${PYSITELIB}/sympy/utilities/tests/test_pytest.pyo
${PYSITELIB}/sympy/utilities/tests/test_source.py
${PYSITELIB}/sympy/utilities/tests/test_source.pyc
${PYSITELIB}/sympy/utilities/tests/test_source.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