summaryrefslogtreecommitdiff
path: root/math/py-sympy/PLIST
blob: fb277081d8109d700b62cc9e1a49371561439a5a (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
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
@comment $NetBSD: PLIST,v 1.8 2012/12/02 12:33:23 wen 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/__init__.py
${PYSITELIB}/sympy/assumptions/tests/__init__.pyc
${PYSITELIB}/sympy/assumptions/tests/__init__.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/categories/__init__.py
${PYSITELIB}/sympy/categories/__init__.pyc
${PYSITELIB}/sympy/categories/__init__.pyo
${PYSITELIB}/sympy/categories/baseclasses.py
${PYSITELIB}/sympy/categories/baseclasses.pyc
${PYSITELIB}/sympy/categories/baseclasses.pyo
${PYSITELIB}/sympy/categories/diagram_drawing.py
${PYSITELIB}/sympy/categories/diagram_drawing.pyc
${PYSITELIB}/sympy/categories/diagram_drawing.pyo
${PYSITELIB}/sympy/categories/tests/test_baseclasses.py
${PYSITELIB}/sympy/categories/tests/test_baseclasses.pyc
${PYSITELIB}/sympy/categories/tests/test_baseclasses.pyo
${PYSITELIB}/sympy/categories/tests/test_drawing.py
${PYSITELIB}/sympy/categories/tests/test_drawing.pyc
${PYSITELIB}/sympy/categories/tests/test_drawing.pyo
${PYSITELIB}/sympy/combinatorics/__init__.py
${PYSITELIB}/sympy/combinatorics/__init__.pyc
${PYSITELIB}/sympy/combinatorics/__init__.pyo
${PYSITELIB}/sympy/combinatorics/generators.py
${PYSITELIB}/sympy/combinatorics/generators.pyc
${PYSITELIB}/sympy/combinatorics/generators.pyo
${PYSITELIB}/sympy/combinatorics/graycode.py
${PYSITELIB}/sympy/combinatorics/graycode.pyc
${PYSITELIB}/sympy/combinatorics/graycode.pyo
${PYSITELIB}/sympy/combinatorics/group_constructs.py
${PYSITELIB}/sympy/combinatorics/group_constructs.pyc
${PYSITELIB}/sympy/combinatorics/group_constructs.pyo
${PYSITELIB}/sympy/combinatorics/named_groups.py
${PYSITELIB}/sympy/combinatorics/named_groups.pyc
${PYSITELIB}/sympy/combinatorics/named_groups.pyo
${PYSITELIB}/sympy/combinatorics/partitions.py
${PYSITELIB}/sympy/combinatorics/partitions.pyc
${PYSITELIB}/sympy/combinatorics/partitions.pyo
${PYSITELIB}/sympy/combinatorics/perm_groups.py
${PYSITELIB}/sympy/combinatorics/perm_groups.pyc
${PYSITELIB}/sympy/combinatorics/perm_groups.pyo
${PYSITELIB}/sympy/combinatorics/permutations.py
${PYSITELIB}/sympy/combinatorics/permutations.pyc
${PYSITELIB}/sympy/combinatorics/permutations.pyo
${PYSITELIB}/sympy/combinatorics/polyhedron.py
${PYSITELIB}/sympy/combinatorics/polyhedron.pyc
${PYSITELIB}/sympy/combinatorics/polyhedron.pyo
${PYSITELIB}/sympy/combinatorics/prufer.py
${PYSITELIB}/sympy/combinatorics/prufer.pyc
${PYSITELIB}/sympy/combinatorics/prufer.pyo
${PYSITELIB}/sympy/combinatorics/subsets.py
${PYSITELIB}/sympy/combinatorics/subsets.pyc
${PYSITELIB}/sympy/combinatorics/subsets.pyo
${PYSITELIB}/sympy/combinatorics/tests/__init__.py
${PYSITELIB}/sympy/combinatorics/tests/__init__.pyc
${PYSITELIB}/sympy/combinatorics/tests/__init__.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_generators.py
${PYSITELIB}/sympy/combinatorics/tests/test_generators.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_generators.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_graycode.py
${PYSITELIB}/sympy/combinatorics/tests/test_graycode.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_graycode.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_group_constructs.py
${PYSITELIB}/sympy/combinatorics/tests/test_group_constructs.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_group_constructs.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_named_groups.py
${PYSITELIB}/sympy/combinatorics/tests/test_named_groups.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_named_groups.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_partitions.py
${PYSITELIB}/sympy/combinatorics/tests/test_partitions.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_partitions.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.py
${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_permutations.py
${PYSITELIB}/sympy/combinatorics/tests/test_permutations.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_permutations.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.py
${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_prufer.py
${PYSITELIB}/sympy/combinatorics/tests/test_prufer.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_prufer.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_subsets.py
${PYSITELIB}/sympy/combinatorics/tests/test_subsets.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_subsets.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_testutil.py
${PYSITELIB}/sympy/combinatorics/tests/test_testutil.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_testutil.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_util.py
${PYSITELIB}/sympy/combinatorics/tests/test_util.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_util.pyo
${PYSITELIB}/sympy/combinatorics/testutil.py
${PYSITELIB}/sympy/combinatorics/testutil.pyc
${PYSITELIB}/sympy/combinatorics/testutil.pyo
${PYSITELIB}/sympy/combinatorics/util.py
${PYSITELIB}/sympy/combinatorics/util.pyc
${PYSITELIB}/sympy/combinatorics/util.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/tests/__init__.py
${PYSITELIB}/sympy/concrete/tests/__init__.pyc
${PYSITELIB}/sympy/concrete/tests/__init__.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/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/compatibility.py
${PYSITELIB}/sympy/core/compatibility.pyc
${PYSITELIB}/sympy/core/compatibility.pyo
${PYSITELIB}/sympy/core/containers.py
${PYSITELIB}/sympy/core/containers.pyc
${PYSITELIB}/sympy/core/containers.pyo
${PYSITELIB}/sympy/core/core.py
${PYSITELIB}/sympy/core/core.pyc
${PYSITELIB}/sympy/core/core.pyo
${PYSITELIB}/sympy/core/coreerrors.py
${PYSITELIB}/sympy/core/coreerrors.pyc
${PYSITELIB}/sympy/core/coreerrors.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/expr.py
${PYSITELIB}/sympy/core/expr.pyc
${PYSITELIB}/sympy/core/expr.pyo
${PYSITELIB}/sympy/core/exprtools.py
${PYSITELIB}/sympy/core/exprtools.pyc
${PYSITELIB}/sympy/core/exprtools.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/mod.py
${PYSITELIB}/sympy/core/mod.pyc
${PYSITELIB}/sympy/core/mod.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/rules.py
${PYSITELIB}/sympy/core/rules.pyc
${PYSITELIB}/sympy/core/rules.pyo
${PYSITELIB}/sympy/core/sets.py
${PYSITELIB}/sympy/core/sets.pyc
${PYSITELIB}/sympy/core/sets.pyo
${PYSITELIB}/sympy/core/singleton.py
${PYSITELIB}/sympy/core/singleton.pyc
${PYSITELIB}/sympy/core/singleton.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/__init__.py
${PYSITELIB}/sympy/core/tests/__init__.pyc
${PYSITELIB}/sympy/core/tests/__init__.pyo
${PYSITELIB}/sympy/core/tests/test_args.py
${PYSITELIB}/sympy/core/tests/test_args.pyc
${PYSITELIB}/sympy/core/tests/test_args.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_containers.py
${PYSITELIB}/sympy/core/tests/test_containers.pyc
${PYSITELIB}/sympy/core/tests/test_containers.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_expr.py
${PYSITELIB}/sympy/core/tests/test_expr.pyc
${PYSITELIB}/sympy/core/tests/test_expr.pyo
${PYSITELIB}/sympy/core/tests/test_exprtools.py
${PYSITELIB}/sympy/core/tests/test_exprtools.pyc
${PYSITELIB}/sympy/core/tests/test_exprtools.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_function.py
${PYSITELIB}/sympy/core/tests/test_function.pyc
${PYSITELIB}/sympy/core/tests/test_function.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_noncommutative.py
${PYSITELIB}/sympy/core/tests/test_noncommutative.pyc
${PYSITELIB}/sympy/core/tests/test_noncommutative.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_priority.py
${PYSITELIB}/sympy/core/tests/test_priority.pyc
${PYSITELIB}/sympy/core/tests/test_priority.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_rules.py
${PYSITELIB}/sympy/core/tests/test_rules.pyc
${PYSITELIB}/sympy/core/tests/test_rules.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_trace.py
${PYSITELIB}/sympy/core/tests/test_trace.pyc
${PYSITELIB}/sympy/core/tests/test_trace.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/core/trace.py
${PYSITELIB}/sympy/core/trace.pyc
${PYSITELIB}/sympy/core/trace.pyo
${PYSITELIB}/sympy/diffgeom/__init__.py
${PYSITELIB}/sympy/diffgeom/__init__.pyc
${PYSITELIB}/sympy/diffgeom/__init__.pyo
${PYSITELIB}/sympy/diffgeom/diffgeom.py
${PYSITELIB}/sympy/diffgeom/diffgeom.pyc
${PYSITELIB}/sympy/diffgeom/diffgeom.pyo
${PYSITELIB}/sympy/diffgeom/rn.py
${PYSITELIB}/sympy/diffgeom/rn.pyc
${PYSITELIB}/sympy/diffgeom/rn.pyo
${PYSITELIB}/sympy/diffgeom/tests/__init__.py
${PYSITELIB}/sympy/diffgeom/tests/__init__.pyc
${PYSITELIB}/sympy/diffgeom/tests/__init__.pyo
${PYSITELIB}/sympy/diffgeom/tests/test_class_structure.py
${PYSITELIB}/sympy/diffgeom/tests/test_class_structure.pyc
${PYSITELIB}/sympy/diffgeom/tests/test_class_structure.pyo
${PYSITELIB}/sympy/diffgeom/tests/test_diffgeom.py
${PYSITELIB}/sympy/diffgeom/tests/test_diffgeom.pyc
${PYSITELIB}/sympy/diffgeom/tests/test_diffgeom.pyo
${PYSITELIB}/sympy/diffgeom/tests/test_function_diffgeom_book.py
${PYSITELIB}/sympy/diffgeom/tests/test_function_diffgeom_book.pyc
${PYSITELIB}/sympy/diffgeom/tests/test_function_diffgeom_book.pyo
${PYSITELIB}/sympy/external/__init__.py
${PYSITELIB}/sympy/external/__init__.pyc
${PYSITELIB}/sympy/external/__init__.pyo
${PYSITELIB}/sympy/external/importtools.py
${PYSITELIB}/sympy/external/importtools.pyc
${PYSITELIB}/sympy/external/importtools.pyo
${PYSITELIB}/sympy/external/tests/__init__.py
${PYSITELIB}/sympy/external/tests/__init__.pyc
${PYSITELIB}/sympy/external/tests/__init__.pyo
${PYSITELIB}/sympy/external/tests/test_autowrap.py
${PYSITELIB}/sympy/external/tests/test_autowrap.pyc
${PYSITELIB}/sympy/external/tests/test_autowrap.pyo
${PYSITELIB}/sympy/external/tests/test_codegen.py
${PYSITELIB}/sympy/external/tests/test_codegen.pyc
${PYSITELIB}/sympy/external/tests/test_codegen.pyo
${PYSITELIB}/sympy/external/tests/test_numpy.py
${PYSITELIB}/sympy/external/tests/test_numpy.pyc
${PYSITELIB}/sympy/external/tests/test_numpy.pyo
${PYSITELIB}/sympy/external/tests/test_sage.py
${PYSITELIB}/sympy/external/tests/test_sage.pyc
${PYSITELIB}/sympy/external/tests/test_sage.pyo
${PYSITELIB}/sympy/external/tests/test_scipy.py
${PYSITELIB}/sympy/external/tests/test_scipy.pyc
${PYSITELIB}/sympy/external/tests/test_scipy.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/__init__.py
${PYSITELIB}/sympy/functions/combinatorial/tests/__init__.pyc
${PYSITELIB}/sympy/functions/combinatorial/tests/__init__.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/__init__.py
${PYSITELIB}/sympy/functions/elementary/tests/__init__.pyc
${PYSITELIB}/sympy/functions/elementary/tests/__init__.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/bessel.py
${PYSITELIB}/sympy/functions/special/bessel.pyc
${PYSITELIB}/sympy/functions/special/bessel.pyo
${PYSITELIB}/sympy/functions/special/bsplines.py
${PYSITELIB}/sympy/functions/special/bsplines.pyc
${PYSITELIB}/sympy/functions/special/bsplines.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/hyper.py
${PYSITELIB}/sympy/functions/special/hyper.pyc
${PYSITELIB}/sympy/functions/special/hyper.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/__init__.py
${PYSITELIB}/sympy/functions/special/tests/__init__.pyc
${PYSITELIB}/sympy/functions/special/tests/__init__.pyo
${PYSITELIB}/sympy/functions/special/tests/test_bessel.py
${PYSITELIB}/sympy/functions/special/tests/test_bessel.pyc
${PYSITELIB}/sympy/functions/special/tests/test_bessel.pyo
${PYSITELIB}/sympy/functions/special/tests/test_bsplines.py
${PYSITELIB}/sympy/functions/special/tests/test_bsplines.pyc
${PYSITELIB}/sympy/functions/special/tests/test_bsplines.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_hyper.py
${PYSITELIB}/sympy/functions/special/tests/test_hyper.pyc
${PYSITELIB}/sympy/functions/special/tests/test_hyper.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/__init__.py
${PYSITELIB}/sympy/galgebra/tests/__init__.pyc
${PYSITELIB}/sympy/galgebra/tests/__init__.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/__init__.py
${PYSITELIB}/sympy/geometry/tests/__init__.pyc
${PYSITELIB}/sympy/geometry/tests/__init__.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/master_risch.py
${PYSITELIB}/sympy/integrals/master_risch.pyc
${PYSITELIB}/sympy/integrals/master_risch.pyo
${PYSITELIB}/sympy/integrals/master_test_risch.py
${PYSITELIB}/sympy/integrals/master_test_risch.pyc
${PYSITELIB}/sympy/integrals/master_test_risch.pyo
${PYSITELIB}/sympy/integrals/meijerint.py
${PYSITELIB}/sympy/integrals/meijerint.pyc
${PYSITELIB}/sympy/integrals/meijerint.pyo
${PYSITELIB}/sympy/integrals/meijerint_doc.py
${PYSITELIB}/sympy/integrals/meijerint_doc.pyc
${PYSITELIB}/sympy/integrals/meijerint_doc.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/__init__.py
${PYSITELIB}/sympy/integrals/tests/__init__.pyc
${PYSITELIB}/sympy/integrals/tests/__init__.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_meijerint.py
${PYSITELIB}/sympy/integrals/tests/test_meijerint.pyc
${PYSITELIB}/sympy/integrals/tests/test_meijerint.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_transforms.py
${PYSITELIB}/sympy/integrals/tests/test_transforms.pyc
${PYSITELIB}/sympy/integrals/tests/test_transforms.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/transforms.py
${PYSITELIB}/sympy/integrals/transforms.pyc
${PYSITELIB}/sympy/integrals/transforms.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/interactive/ipythonprinting.py
${PYSITELIB}/sympy/interactive/ipythonprinting.pyc
${PYSITELIB}/sympy/interactive/ipythonprinting.pyo
${PYSITELIB}/sympy/interactive/printing.py
${PYSITELIB}/sympy/interactive/printing.pyc
${PYSITELIB}/sympy/interactive/printing.pyo
${PYSITELIB}/sympy/interactive/session.py
${PYSITELIB}/sympy/interactive/session.pyc
${PYSITELIB}/sympy/interactive/session.pyo
${PYSITELIB}/sympy/interactive/tests/test_interactive.py
${PYSITELIB}/sympy/interactive/tests/test_interactive.pyc
${PYSITELIB}/sympy/interactive/tests/test_interactive.pyo
${PYSITELIB}/sympy/interactive/tests/test_ipython.py
${PYSITELIB}/sympy/interactive/tests/test_ipython.pyc
${PYSITELIB}/sympy/interactive/tests/test_ipython.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/algorithms/dpll2.py
${PYSITELIB}/sympy/logic/algorithms/dpll2.pyc
${PYSITELIB}/sympy/logic/algorithms/dpll2.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/__init__.py
${PYSITELIB}/sympy/logic/tests/__init__.pyc
${PYSITELIB}/sympy/logic/tests/__init__.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/expressions/__init__.py
${PYSITELIB}/sympy/matrices/expressions/__init__.pyc
${PYSITELIB}/sympy/matrices/expressions/__init__.pyo
${PYSITELIB}/sympy/matrices/expressions/blockmatrix.py
${PYSITELIB}/sympy/matrices/expressions/blockmatrix.pyc
${PYSITELIB}/sympy/matrices/expressions/blockmatrix.pyo
${PYSITELIB}/sympy/matrices/expressions/funcmatrix.py
${PYSITELIB}/sympy/matrices/expressions/funcmatrix.pyc
${PYSITELIB}/sympy/matrices/expressions/funcmatrix.pyo
${PYSITELIB}/sympy/matrices/expressions/inverse.py
${PYSITELIB}/sympy/matrices/expressions/inverse.pyc
${PYSITELIB}/sympy/matrices/expressions/inverse.pyo
${PYSITELIB}/sympy/matrices/expressions/matadd.py
${PYSITELIB}/sympy/matrices/expressions/matadd.pyc
${PYSITELIB}/sympy/matrices/expressions/matadd.pyo
${PYSITELIB}/sympy/matrices/expressions/matexpr.py
${PYSITELIB}/sympy/matrices/expressions/matexpr.pyc
${PYSITELIB}/sympy/matrices/expressions/matexpr.pyo
${PYSITELIB}/sympy/matrices/expressions/matmul.py
${PYSITELIB}/sympy/matrices/expressions/matmul.pyc
${PYSITELIB}/sympy/matrices/expressions/matmul.pyo
${PYSITELIB}/sympy/matrices/expressions/matpow.py
${PYSITELIB}/sympy/matrices/expressions/matpow.pyc
${PYSITELIB}/sympy/matrices/expressions/matpow.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/__init__.py
${PYSITELIB}/sympy/matrices/expressions/tests/__init__.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/__init__.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_funcmatrix.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_funcmatrix.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_funcmatrix.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_indexing.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_indexing.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_indexing.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_matrix_exprs.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_matrix_exprs.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_matrix_exprs.pyo
${PYSITELIB}/sympy/matrices/expressions/trace.py
${PYSITELIB}/sympy/matrices/expressions/trace.pyc
${PYSITELIB}/sympy/matrices/expressions/trace.pyo
${PYSITELIB}/sympy/matrices/expressions/transpose.py
${PYSITELIB}/sympy/matrices/expressions/transpose.pyc
${PYSITELIB}/sympy/matrices/expressions/transpose.pyo
${PYSITELIB}/sympy/matrices/immutable_matrix.py
${PYSITELIB}/sympy/matrices/immutable_matrix.pyc
${PYSITELIB}/sympy/matrices/immutable_matrix.pyo
${PYSITELIB}/sympy/matrices/matrices.py
${PYSITELIB}/sympy/matrices/matrices.pyc
${PYSITELIB}/sympy/matrices/matrices.pyo
${PYSITELIB}/sympy/matrices/tests/__init__.py
${PYSITELIB}/sympy/matrices/tests/__init__.pyc
${PYSITELIB}/sympy/matrices/tests/__init__.pyo
${PYSITELIB}/sympy/matrices/tests/test_immutable.py
${PYSITELIB}/sympy/matrices/tests/test_immutable.pyc
${PYSITELIB}/sympy/matrices/tests/test_immutable.pyo
${PYSITELIB}/sympy/matrices/tests/test_interactions.py
${PYSITELIB}/sympy/matrices/tests/test_interactions.pyc
${PYSITELIB}/sympy/matrices/tests/test_interactions.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/__init__.py
${PYSITELIB}/sympy/mpmath/calculus/__init__.pyc
${PYSITELIB}/sympy/mpmath/calculus/__init__.pyo
${PYSITELIB}/sympy/mpmath/calculus/approximation.py
${PYSITELIB}/sympy/mpmath/calculus/approximation.pyc
${PYSITELIB}/sympy/mpmath/calculus/approximation.pyo
${PYSITELIB}/sympy/mpmath/calculus/calculus.py
${PYSITELIB}/sympy/mpmath/calculus/calculus.pyc
${PYSITELIB}/sympy/mpmath/calculus/calculus.pyo
${PYSITELIB}/sympy/mpmath/calculus/differentiation.py
${PYSITELIB}/sympy/mpmath/calculus/differentiation.pyc
${PYSITELIB}/sympy/mpmath/calculus/differentiation.pyo
${PYSITELIB}/sympy/mpmath/calculus/extrapolation.py
${PYSITELIB}/sympy/mpmath/calculus/extrapolation.pyc
${PYSITELIB}/sympy/mpmath/calculus/extrapolation.pyo
${PYSITELIB}/sympy/mpmath/calculus/odes.py
${PYSITELIB}/sympy/mpmath/calculus/odes.pyc
${PYSITELIB}/sympy/mpmath/calculus/odes.pyo
${PYSITELIB}/sympy/mpmath/calculus/optimization.py
${PYSITELIB}/sympy/mpmath/calculus/optimization.pyc
${PYSITELIB}/sympy/mpmath/calculus/optimization.pyo
${PYSITELIB}/sympy/mpmath/calculus/polynomials.py
${PYSITELIB}/sympy/mpmath/calculus/polynomials.pyc
${PYSITELIB}/sympy/mpmath/calculus/polynomials.pyo
${PYSITELIB}/sympy/mpmath/calculus/quadrature.py
${PYSITELIB}/sympy/mpmath/calculus/quadrature.pyc
${PYSITELIB}/sympy/mpmath/calculus/quadrature.pyo
${PYSITELIB}/sympy/mpmath/ctx_base.py
${PYSITELIB}/sympy/mpmath/ctx_base.pyc
${PYSITELIB}/sympy/mpmath/ctx_base.pyo
${PYSITELIB}/sympy/mpmath/ctx_fp.py
${PYSITELIB}/sympy/mpmath/ctx_fp.pyc
${PYSITELIB}/sympy/mpmath/ctx_fp.pyo
${PYSITELIB}/sympy/mpmath/ctx_iv.py
${PYSITELIB}/sympy/mpmath/ctx_iv.pyc
${PYSITELIB}/sympy/mpmath/ctx_iv.pyo
${PYSITELIB}/sympy/mpmath/ctx_mp.py
${PYSITELIB}/sympy/mpmath/ctx_mp.pyc
${PYSITELIB}/sympy/mpmath/ctx_mp.pyo
${PYSITELIB}/sympy/mpmath/ctx_mp_python.py
${PYSITELIB}/sympy/mpmath/ctx_mp_python.pyc
${PYSITELIB}/sympy/mpmath/ctx_mp_python.pyo
${PYSITELIB}/sympy/mpmath/function_docs.py
${PYSITELIB}/sympy/mpmath/function_docs.pyc
${PYSITELIB}/sympy/mpmath/function_docs.pyo
${PYSITELIB}/sympy/mpmath/functions/__init__.py
${PYSITELIB}/sympy/mpmath/functions/__init__.pyc
${PYSITELIB}/sympy/mpmath/functions/__init__.pyo
${PYSITELIB}/sympy/mpmath/functions/bessel.py
${PYSITELIB}/sympy/mpmath/functions/bessel.pyc
${PYSITELIB}/sympy/mpmath/functions/bessel.pyo
${PYSITELIB}/sympy/mpmath/functions/elliptic.py
${PYSITELIB}/sympy/mpmath/functions/elliptic.pyc
${PYSITELIB}/sympy/mpmath/functions/elliptic.pyo
${PYSITELIB}/sympy/mpmath/functions/expintegrals.py
${PYSITELIB}/sympy/mpmath/functions/expintegrals.pyc
${PYSITELIB}/sympy/mpmath/functions/expintegrals.pyo
${PYSITELIB}/sympy/mpmath/functions/factorials.py
${PYSITELIB}/sympy/mpmath/functions/factorials.pyc
${PYSITELIB}/sympy/mpmath/functions/factorials.pyo
${PYSITELIB}/sympy/mpmath/functions/functions.py
${PYSITELIB}/sympy/mpmath/functions/functions.pyc
${PYSITELIB}/sympy/mpmath/functions/functions.pyo
${PYSITELIB}/sympy/mpmath/functions/hypergeometric.py
${PYSITELIB}/sympy/mpmath/functions/hypergeometric.pyc
${PYSITELIB}/sympy/mpmath/functions/hypergeometric.pyo
${PYSITELIB}/sympy/mpmath/functions/orthogonal.py
${PYSITELIB}/sympy/mpmath/functions/orthogonal.pyc
${PYSITELIB}/sympy/mpmath/functions/orthogonal.pyo
${PYSITELIB}/sympy/mpmath/functions/qfunctions.py
${PYSITELIB}/sympy/mpmath/functions/qfunctions.pyc
${PYSITELIB}/sympy/mpmath/functions/qfunctions.pyo
${PYSITELIB}/sympy/mpmath/functions/rszeta.py
${PYSITELIB}/sympy/mpmath/functions/rszeta.pyc
${PYSITELIB}/sympy/mpmath/functions/rszeta.pyo
${PYSITELIB}/sympy/mpmath/functions/theta.py
${PYSITELIB}/sympy/mpmath/functions/theta.pyc
${PYSITELIB}/sympy/mpmath/functions/theta.pyo
${PYSITELIB}/sympy/mpmath/functions/zeta.py
${PYSITELIB}/sympy/mpmath/functions/zeta.pyc
${PYSITELIB}/sympy/mpmath/functions/zeta.pyo
${PYSITELIB}/sympy/mpmath/functions/zetazeros.py
${PYSITELIB}/sympy/mpmath/functions/zetazeros.pyc
${PYSITELIB}/sympy/mpmath/functions/zetazeros.pyo
${PYSITELIB}/sympy/mpmath/identification.py
${PYSITELIB}/sympy/mpmath/identification.pyc
${PYSITELIB}/sympy/mpmath/identification.pyo
${PYSITELIB}/sympy/mpmath/libmp/__init__.py
${PYSITELIB}/sympy/mpmath/libmp/__init__.pyc
${PYSITELIB}/sympy/mpmath/libmp/__init__.pyo
${PYSITELIB}/sympy/mpmath/libmp/backend.py
${PYSITELIB}/sympy/mpmath/libmp/backend.pyc
${PYSITELIB}/sympy/mpmath/libmp/backend.pyo
${PYSITELIB}/sympy/mpmath/libmp/exec_py2.py
${PYSITELIB}/sympy/mpmath/libmp/exec_py2.pyc
${PYSITELIB}/sympy/mpmath/libmp/exec_py2.pyo
${PYSITELIB}/sympy/mpmath/libmp/exec_py3.py
${PYSITELIB}/sympy/mpmath/libmp/gammazeta.py
${PYSITELIB}/sympy/mpmath/libmp/gammazeta.pyc
${PYSITELIB}/sympy/mpmath/libmp/gammazeta.pyo
${PYSITELIB}/sympy/mpmath/libmp/libelefun.py
${PYSITELIB}/sympy/mpmath/libmp/libelefun.pyc
${PYSITELIB}/sympy/mpmath/libmp/libelefun.pyo
${PYSITELIB}/sympy/mpmath/libmp/libhyper.py
${PYSITELIB}/sympy/mpmath/libmp/libhyper.pyc
${PYSITELIB}/sympy/mpmath/libmp/libhyper.pyo
${PYSITELIB}/sympy/mpmath/libmp/libintmath.py
${PYSITELIB}/sympy/mpmath/libmp/libintmath.pyc
${PYSITELIB}/sympy/mpmath/libmp/libintmath.pyo
${PYSITELIB}/sympy/mpmath/libmp/libmpc.py
${PYSITELIB}/sympy/mpmath/libmp/libmpc.pyc
${PYSITELIB}/sympy/mpmath/libmp/libmpc.pyo
${PYSITELIB}/sympy/mpmath/libmp/libmpf.py
${PYSITELIB}/sympy/mpmath/libmp/libmpf.pyc
${PYSITELIB}/sympy/mpmath/libmp/libmpf.pyo
${PYSITELIB}/sympy/mpmath/libmp/libmpi.py
${PYSITELIB}/sympy/mpmath/libmp/libmpi.pyc
${PYSITELIB}/sympy/mpmath/libmp/libmpi.pyo
${PYSITELIB}/sympy/mpmath/math2.py
${PYSITELIB}/sympy/mpmath/math2.pyc
${PYSITELIB}/sympy/mpmath/math2.pyo
${PYSITELIB}/sympy/mpmath/matrices/__init__.py
${PYSITELIB}/sympy/mpmath/matrices/__init__.pyc
${PYSITELIB}/sympy/mpmath/matrices/__init__.pyo
${PYSITELIB}/sympy/mpmath/matrices/calculus.py
${PYSITELIB}/sympy/mpmath/matrices/calculus.pyc
${PYSITELIB}/sympy/mpmath/matrices/calculus.pyo
${PYSITELIB}/sympy/mpmath/matrices/linalg.py
${PYSITELIB}/sympy/mpmath/matrices/linalg.pyc
${PYSITELIB}/sympy/mpmath/matrices/linalg.pyo
${PYSITELIB}/sympy/mpmath/matrices/matrices.py
${PYSITELIB}/sympy/mpmath/matrices/matrices.pyc
${PYSITELIB}/sympy/mpmath/matrices/matrices.pyo
${PYSITELIB}/sympy/mpmath/rational.py
${PYSITELIB}/sympy/mpmath/rational.pyc
${PYSITELIB}/sympy/mpmath/rational.pyo
${PYSITELIB}/sympy/mpmath/tests/__init__.py
${PYSITELIB}/sympy/mpmath/tests/__init__.pyc
${PYSITELIB}/sympy/mpmath/tests/__init__.pyo
${PYSITELIB}/sympy/mpmath/tests/extratest_bessel.py
${PYSITELIB}/sympy/mpmath/tests/extratest_bessel.pyc
${PYSITELIB}/sympy/mpmath/tests/extratest_bessel.pyo
${PYSITELIB}/sympy/mpmath/tests/extratest_gamma.py
${PYSITELIB}/sympy/mpmath/tests/extratest_zeta.py
${PYSITELIB}/sympy/mpmath/tests/extratest_zeta.pyc
${PYSITELIB}/sympy/mpmath/tests/extratest_zeta.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.py
${PYSITELIB}/sympy/mpmath/tests/test_diff.pyc
${PYSITELIB}/sympy/mpmath/tests/test_diff.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_fp.py
${PYSITELIB}/sympy/mpmath/tests/test_fp.pyc
${PYSITELIB}/sympy/mpmath/tests/test_fp.pyo
${PYSITELIB}/sympy/mpmath/tests/test_functions.py
${PYSITELIB}/sympy/mpmath/tests/test_functions.pyc
${PYSITELIB}/sympy/mpmath/tests/test_functions.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_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.py
${PYSITELIB}/sympy/mpmath/tests/test_matrices.pyc
${PYSITELIB}/sympy/mpmath/tests/test_matrices.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.py
${PYSITELIB}/sympy/mpmath/tests/test_ode.pyc
${PYSITELIB}/sympy/mpmath/tests/test_ode.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_str.py
${PYSITELIB}/sympy/mpmath/tests/test_str.pyc
${PYSITELIB}/sympy/mpmath/tests/test_str.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/test_visualization.py
${PYSITELIB}/sympy/mpmath/tests/test_visualization.pyc
${PYSITELIB}/sympy/mpmath/tests/test_visualization.pyo
${PYSITELIB}/sympy/mpmath/tests/torture.py
${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_ntheory.py
${PYSITELIB}/sympy/ntheory/residue_ntheory.pyc
${PYSITELIB}/sympy/ntheory/residue_ntheory.pyo
${PYSITELIB}/sympy/ntheory/tests/__init__.py
${PYSITELIB}/sympy/ntheory/tests/__init__.pyc
${PYSITELIB}/sympy/ntheory/tests/__init__.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/ast_parser.py
${PYSITELIB}/sympy/parsing/ast_parser.pyc
${PYSITELIB}/sympy/parsing/ast_parser.pyo
${PYSITELIB}/sympy/parsing/ast_parser_python25.py
${PYSITELIB}/sympy/parsing/ast_parser_python25.pyc
${PYSITELIB}/sympy/parsing/ast_parser_python25.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/sympy_parser.py
${PYSITELIB}/sympy/parsing/sympy_parser.pyc
${PYSITELIB}/sympy/parsing/sympy_parser.pyo
${PYSITELIB}/sympy/parsing/sympy_tokenize.py
${PYSITELIB}/sympy/parsing/sympy_tokenize.pyc
${PYSITELIB}/sympy/parsing/sympy_tokenize.pyo
${PYSITELIB}/sympy/parsing/tests/__init__.py
${PYSITELIB}/sympy/parsing/tests/__init__.pyc
${PYSITELIB}/sympy/parsing/tests/__init__.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/gaussopt.py
${PYSITELIB}/sympy/physics/gaussopt.pyc
${PYSITELIB}/sympy/physics/gaussopt.pyo
${PYSITELIB}/sympy/physics/hydrogen.py
${PYSITELIB}/sympy/physics/hydrogen.pyc
${PYSITELIB}/sympy/physics/hydrogen.pyo
${PYSITELIB}/sympy/physics/matrices.py
${PYSITELIB}/sympy/physics/matrices.pyc
${PYSITELIB}/sympy/physics/matrices.pyo
${PYSITELIB}/sympy/physics/mechanics/__init__.py
${PYSITELIB}/sympy/physics/mechanics/__init__.pyc
${PYSITELIB}/sympy/physics/mechanics/__init__.pyo
${PYSITELIB}/sympy/physics/mechanics/essential.py
${PYSITELIB}/sympy/physics/mechanics/essential.pyc
${PYSITELIB}/sympy/physics/mechanics/essential.pyo
${PYSITELIB}/sympy/physics/mechanics/functions.py
${PYSITELIB}/sympy/physics/mechanics/functions.pyc
${PYSITELIB}/sympy/physics/mechanics/functions.pyo
${PYSITELIB}/sympy/physics/mechanics/kane.py
${PYSITELIB}/sympy/physics/mechanics/kane.pyc
${PYSITELIB}/sympy/physics/mechanics/kane.pyo
${PYSITELIB}/sympy/physics/mechanics/lagrange.py
${PYSITELIB}/sympy/physics/mechanics/lagrange.pyc
${PYSITELIB}/sympy/physics/mechanics/lagrange.pyo
${PYSITELIB}/sympy/physics/mechanics/particle.py
${PYSITELIB}/sympy/physics/mechanics/particle.pyc
${PYSITELIB}/sympy/physics/mechanics/particle.pyo
${PYSITELIB}/sympy/physics/mechanics/point.py
${PYSITELIB}/sympy/physics/mechanics/point.pyc
${PYSITELIB}/sympy/physics/mechanics/point.pyo
${PYSITELIB}/sympy/physics/mechanics/rigidbody.py
${PYSITELIB}/sympy/physics/mechanics/rigidbody.pyc
${PYSITELIB}/sympy/physics/mechanics/rigidbody.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/__init__.py
${PYSITELIB}/sympy/physics/mechanics/tests/__init__.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/__init__.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_essential.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_essential.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_essential.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_functions.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_functions.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_functions.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_kane.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_kane.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_kane.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_particle.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_particle.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_particle.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_point.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_point.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_point.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_rigidbody.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_rigidbody.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_rigidbody.pyo
${PYSITELIB}/sympy/physics/paulialgebra.py
${PYSITELIB}/sympy/physics/paulialgebra.pyc
${PYSITELIB}/sympy/physics/paulialgebra.pyo
${PYSITELIB}/sympy/physics/qho_1d.py
${PYSITELIB}/sympy/physics/qho_1d.pyc
${PYSITELIB}/sympy/physics/qho_1d.pyo
${PYSITELIB}/sympy/physics/quantum/__init__.py
${PYSITELIB}/sympy/physics/quantum/__init__.pyc
${PYSITELIB}/sympy/physics/quantum/__init__.pyo
${PYSITELIB}/sympy/physics/quantum/anticommutator.py
${PYSITELIB}/sympy/physics/quantum/anticommutator.pyc
${PYSITELIB}/sympy/physics/quantum/anticommutator.pyo
${PYSITELIB}/sympy/physics/quantum/cartesian.py
${PYSITELIB}/sympy/physics/quantum/cartesian.pyc
${PYSITELIB}/sympy/physics/quantum/cartesian.pyo
${PYSITELIB}/sympy/physics/quantum/cg.py
${PYSITELIB}/sympy/physics/quantum/cg.pyc
${PYSITELIB}/sympy/physics/quantum/cg.pyo
${PYSITELIB}/sympy/physics/quantum/circuitplot.py
${PYSITELIB}/sympy/physics/quantum/circuitplot.pyc
${PYSITELIB}/sympy/physics/quantum/circuitplot.pyo
${PYSITELIB}/sympy/physics/quantum/circuitutils.py
${PYSITELIB}/sympy/physics/quantum/circuitutils.pyc
${PYSITELIB}/sympy/physics/quantum/circuitutils.pyo
${PYSITELIB}/sympy/physics/quantum/commutator.py
${PYSITELIB}/sympy/physics/quantum/commutator.pyc
${PYSITELIB}/sympy/physics/quantum/commutator.pyo
${PYSITELIB}/sympy/physics/quantum/constants.py
${PYSITELIB}/sympy/physics/quantum/constants.pyc
${PYSITELIB}/sympy/physics/quantum/constants.pyo
${PYSITELIB}/sympy/physics/quantum/dagger.py
${PYSITELIB}/sympy/physics/quantum/dagger.pyc
${PYSITELIB}/sympy/physics/quantum/dagger.pyo
${PYSITELIB}/sympy/physics/quantum/density.py
${PYSITELIB}/sympy/physics/quantum/density.pyc
${PYSITELIB}/sympy/physics/quantum/density.pyo
${PYSITELIB}/sympy/physics/quantum/gate.py
${PYSITELIB}/sympy/physics/quantum/gate.pyc
${PYSITELIB}/sympy/physics/quantum/gate.pyo
${PYSITELIB}/sympy/physics/quantum/grover.py
${PYSITELIB}/sympy/physics/quantum/grover.pyc
${PYSITELIB}/sympy/physics/quantum/grover.pyo
${PYSITELIB}/sympy/physics/quantum/hilbert.py
${PYSITELIB}/sympy/physics/quantum/hilbert.pyc
${PYSITELIB}/sympy/physics/quantum/hilbert.pyo
${PYSITELIB}/sympy/physics/quantum/identitysearch.py
${PYSITELIB}/sympy/physics/quantum/identitysearch.pyc
${PYSITELIB}/sympy/physics/quantum/identitysearch.pyo
${PYSITELIB}/sympy/physics/quantum/innerproduct.py
${PYSITELIB}/sympy/physics/quantum/innerproduct.pyc
${PYSITELIB}/sympy/physics/quantum/innerproduct.pyo
${PYSITELIB}/sympy/physics/quantum/matrixcache.py
${PYSITELIB}/sympy/physics/quantum/matrixcache.pyc
${PYSITELIB}/sympy/physics/quantum/matrixcache.pyo
${PYSITELIB}/sympy/physics/quantum/matrixutils.py
${PYSITELIB}/sympy/physics/quantum/matrixutils.pyc
${PYSITELIB}/sympy/physics/quantum/matrixutils.pyo
${PYSITELIB}/sympy/physics/quantum/operator.py
${PYSITELIB}/sympy/physics/quantum/operator.pyc
${PYSITELIB}/sympy/physics/quantum/operator.pyo
${PYSITELIB}/sympy/physics/quantum/operatorset.py
${PYSITELIB}/sympy/physics/quantum/operatorset.pyc
${PYSITELIB}/sympy/physics/quantum/operatorset.pyo
${PYSITELIB}/sympy/physics/quantum/piab.py
${PYSITELIB}/sympy/physics/quantum/piab.pyc
${PYSITELIB}/sympy/physics/quantum/piab.pyo
${PYSITELIB}/sympy/physics/quantum/qapply.py
${PYSITELIB}/sympy/physics/quantum/qapply.pyc
${PYSITELIB}/sympy/physics/quantum/qapply.pyo
${PYSITELIB}/sympy/physics/quantum/qexpr.py
${PYSITELIB}/sympy/physics/quantum/qexpr.pyc
${PYSITELIB}/sympy/physics/quantum/qexpr.pyo
${PYSITELIB}/sympy/physics/quantum/qft.py
${PYSITELIB}/sympy/physics/quantum/qft.pyc
${PYSITELIB}/sympy/physics/quantum/qft.pyo
${PYSITELIB}/sympy/physics/quantum/qubit.py
${PYSITELIB}/sympy/physics/quantum/qubit.pyc
${PYSITELIB}/sympy/physics/quantum/qubit.pyo
${PYSITELIB}/sympy/physics/quantum/represent.py
${PYSITELIB}/sympy/physics/quantum/represent.pyc
${PYSITELIB}/sympy/physics/quantum/represent.pyo
${PYSITELIB}/sympy/physics/quantum/shor.py
${PYSITELIB}/sympy/physics/quantum/shor.pyc
${PYSITELIB}/sympy/physics/quantum/shor.pyo
${PYSITELIB}/sympy/physics/quantum/spin.py
${PYSITELIB}/sympy/physics/quantum/spin.pyc
${PYSITELIB}/sympy/physics/quantum/spin.pyo
${PYSITELIB}/sympy/physics/quantum/state.py
${PYSITELIB}/sympy/physics/quantum/state.pyc
${PYSITELIB}/sympy/physics/quantum/state.pyo
${PYSITELIB}/sympy/physics/quantum/tensorproduct.py
${PYSITELIB}/sympy/physics/quantum/tensorproduct.pyc
${PYSITELIB}/sympy/physics/quantum/tensorproduct.pyo
${PYSITELIB}/sympy/physics/quantum/tests/__init__.py
${PYSITELIB}/sympy/physics/quantum/tests/__init__.pyc
${PYSITELIB}/sympy/physics/quantum/tests/__init__.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_anticommutator.py
${PYSITELIB}/sympy/physics/quantum/tests/test_anticommutator.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_anticommutator.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_cartesian.py
${PYSITELIB}/sympy/physics/quantum/tests/test_cartesian.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_cartesian.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_cg.py
${PYSITELIB}/sympy/physics/quantum/tests/test_cg.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_cg.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_circuitutils.py
${PYSITELIB}/sympy/physics/quantum/tests/test_circuitutils.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_circuitutils.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_commutator.py
${PYSITELIB}/sympy/physics/quantum/tests/test_commutator.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_commutator.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_constants.py
${PYSITELIB}/sympy/physics/quantum/tests/test_constants.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_constants.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_dagger.py
${PYSITELIB}/sympy/physics/quantum/tests/test_dagger.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_dagger.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_density.py
${PYSITELIB}/sympy/physics/quantum/tests/test_density.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_density.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_gate.py
${PYSITELIB}/sympy/physics/quantum/tests/test_gate.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_gate.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_grover.py
${PYSITELIB}/sympy/physics/quantum/tests/test_grover.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_grover.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_hilbert.py
${PYSITELIB}/sympy/physics/quantum/tests/test_hilbert.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_hilbert.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_identitysearch.py
${PYSITELIB}/sympy/physics/quantum/tests/test_identitysearch.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_identitysearch.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_innerproduct.py
${PYSITELIB}/sympy/physics/quantum/tests/test_innerproduct.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_innerproduct.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_matrixutils.py
${PYSITELIB}/sympy/physics/quantum/tests/test_matrixutils.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_matrixutils.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_operator.py
${PYSITELIB}/sympy/physics/quantum/tests/test_operator.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_operator.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_operatorset.py
${PYSITELIB}/sympy/physics/quantum/tests/test_operatorset.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_operatorset.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_piab.py
${PYSITELIB}/sympy/physics/quantum/tests/test_piab.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_piab.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_printing.py
${PYSITELIB}/sympy/physics/quantum/tests/test_printing.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_printing.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_qapply.py
${PYSITELIB}/sympy/physics/quantum/tests/test_qapply.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_qapply.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_qexpr.py
${PYSITELIB}/sympy/physics/quantum/tests/test_qexpr.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_qexpr.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_qft.py
${PYSITELIB}/sympy/physics/quantum/tests/test_qft.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_qft.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_qubit.py
${PYSITELIB}/sympy/physics/quantum/tests/test_qubit.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_qubit.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_represent.py
${PYSITELIB}/sympy/physics/quantum/tests/test_represent.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_represent.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_shor.py
${PYSITELIB}/sympy/physics/quantum/tests/test_shor.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_shor.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_spin.py
${PYSITELIB}/sympy/physics/quantum/tests/test_spin.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_spin.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_state.py
${PYSITELIB}/sympy/physics/quantum/tests/test_state.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_state.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_tensorproduct.py
${PYSITELIB}/sympy/physics/quantum/tests/test_tensorproduct.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_tensorproduct.pyo
${PYSITELIB}/sympy/physics/secondquant.py
${PYSITELIB}/sympy/physics/secondquant.pyc
${PYSITELIB}/sympy/physics/secondquant.pyo
${PYSITELIB}/sympy/physics/sho.py
${PYSITELIB}/sympy/physics/sho.pyc
${PYSITELIB}/sympy/physics/sho.pyo
${PYSITELIB}/sympy/physics/tests/__init__.py
${PYSITELIB}/sympy/physics/tests/__init__.pyc
${PYSITELIB}/sympy/physics/tests/__init__.pyo
${PYSITELIB}/sympy/physics/tests/test_clebsch_gordan.py
${PYSITELIB}/sympy/physics/tests/test_clebsch_gordan.pyc
${PYSITELIB}/sympy/physics/tests/test_clebsch_gordan.pyo
${PYSITELIB}/sympy/physics/tests/test_gaussopt.py
${PYSITELIB}/sympy/physics/tests/test_gaussopt.pyc
${PYSITELIB}/sympy/physics/tests/test_gaussopt.pyo
${PYSITELIB}/sympy/physics/tests/test_hydrogen.py
${PYSITELIB}/sympy/physics/tests/test_hydrogen.pyc
${PYSITELIB}/sympy/physics/tests/test_hydrogen.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_qho_1d.py
${PYSITELIB}/sympy/physics/tests/test_qho_1d.pyc
${PYSITELIB}/sympy/physics/tests/test_qho_1d.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_sho.py
${PYSITELIB}/sympy/physics/tests/test_sho.pyc
${PYSITELIB}/sympy/physics/tests/test_sho.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/physics/wigner.py
${PYSITELIB}/sympy/physics/wigner.pyc
${PYSITELIB}/sympy/physics/wigner.pyo
${PYSITELIB}/sympy/plotting/__init__.py
${PYSITELIB}/sympy/plotting/__init__.pyc
${PYSITELIB}/sympy/plotting/__init__.pyo
${PYSITELIB}/sympy/plotting/experimental_lambdify.py
${PYSITELIB}/sympy/plotting/experimental_lambdify.pyc
${PYSITELIB}/sympy/plotting/experimental_lambdify.pyo
${PYSITELIB}/sympy/plotting/intervalmath/__init__.py
${PYSITELIB}/sympy/plotting/intervalmath/__init__.pyc
${PYSITELIB}/sympy/plotting/intervalmath/__init__.pyo
${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.py
${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.pyc
${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.pyo
${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.py
${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.pyc
${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.pyo
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.py
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.pyc
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.pyo
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.py
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.pyc
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.pyo
${PYSITELIB}/sympy/plotting/plot.py
${PYSITELIB}/sympy/plotting/plot.pyc
${PYSITELIB}/sympy/plotting/plot.pyo
${PYSITELIB}/sympy/plotting/plot_implicit.py
${PYSITELIB}/sympy/plotting/plot_implicit.pyc
${PYSITELIB}/sympy/plotting/plot_implicit.pyo
${PYSITELIB}/sympy/plotting/proxy_pyglet.py
${PYSITELIB}/sympy/plotting/proxy_pyglet.pyc
${PYSITELIB}/sympy/plotting/proxy_pyglet.pyo
${PYSITELIB}/sympy/plotting/pygletplot/__init__.py
${PYSITELIB}/sympy/plotting/pygletplot/__init__.pyc
${PYSITELIB}/sympy/plotting/pygletplot/__init__.pyo
${PYSITELIB}/sympy/plotting/pygletplot/color_scheme.py
${PYSITELIB}/sympy/plotting/pygletplot/color_scheme.pyc
${PYSITELIB}/sympy/plotting/pygletplot/color_scheme.pyo
${PYSITELIB}/sympy/plotting/pygletplot/managed_window.py
${PYSITELIB}/sympy/plotting/pygletplot/managed_window.pyc
${PYSITELIB}/sympy/plotting/pygletplot/managed_window.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot.py
${PYSITELIB}/sympy/plotting/pygletplot/plot.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_axes.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_axes.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_axes.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_camera.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_camera.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_camera.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_controller.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_controller.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_controller.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_curve.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_curve.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_curve.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_interval.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_interval.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_interval.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_mode.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_mode.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_mode.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_mode_base.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_mode_base.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_mode_base.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_modes.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_modes.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_modes.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_object.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_object.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_object.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_rotation.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_rotation.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_rotation.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_surface.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_surface.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_surface.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_window.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_window.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_window.pyo
${PYSITELIB}/sympy/plotting/pygletplot/tests/test_plotting.py
${PYSITELIB}/sympy/plotting/pygletplot/tests/test_plotting.pyc
${PYSITELIB}/sympy/plotting/pygletplot/tests/test_plotting.pyo
${PYSITELIB}/sympy/plotting/pygletplot/util.py
${PYSITELIB}/sympy/plotting/pygletplot/util.pyc
${PYSITELIB}/sympy/plotting/pygletplot/util.pyo
${PYSITELIB}/sympy/plotting/tests/__init__.py
${PYSITELIB}/sympy/plotting/tests/__init__.pyc
${PYSITELIB}/sympy/plotting/tests/__init__.pyo
${PYSITELIB}/sympy/plotting/tests/test_plot.py
${PYSITELIB}/sympy/plotting/tests/test_plot.pyc
${PYSITELIB}/sympy/plotting/tests/test_plot.pyo
${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.py
${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.pyc
${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.pyo
${PYSITELIB}/sympy/plotting/textplot.py
${PYSITELIB}/sympy/plotting/textplot.pyc
${PYSITELIB}/sympy/plotting/textplot.pyo
${PYSITELIB}/sympy/polys/__init__.py
${PYSITELIB}/sympy/polys/__init__.pyc
${PYSITELIB}/sympy/polys/__init__.pyo
${PYSITELIB}/sympy/polys/agca/__init__.py
${PYSITELIB}/sympy/polys/agca/__init__.pyc
${PYSITELIB}/sympy/polys/agca/__init__.pyo
${PYSITELIB}/sympy/polys/agca/homomorphisms.py
${PYSITELIB}/sympy/polys/agca/homomorphisms.pyc
${PYSITELIB}/sympy/polys/agca/homomorphisms.pyo
${PYSITELIB}/sympy/polys/agca/ideals.py
${PYSITELIB}/sympy/polys/agca/ideals.pyc
${PYSITELIB}/sympy/polys/agca/ideals.pyo
${PYSITELIB}/sympy/polys/agca/modules.py
${PYSITELIB}/sympy/polys/agca/modules.pyc
${PYSITELIB}/sympy/polys/agca/modules.pyo
${PYSITELIB}/sympy/polys/agca/tests/test_homomorphisms.py
${PYSITELIB}/sympy/polys/agca/tests/test_homomorphisms.pyc
${PYSITELIB}/sympy/polys/agca/tests/test_homomorphisms.pyo
${PYSITELIB}/sympy/polys/agca/tests/test_ideals.py
${PYSITELIB}/sympy/polys/agca/tests/test_ideals.pyc
${PYSITELIB}/sympy/polys/agca/tests/test_ideals.pyo
${PYSITELIB}/sympy/polys/agca/tests/test_modules.py
${PYSITELIB}/sympy/polys/agca/tests/test_modules.pyc
${PYSITELIB}/sympy/polys/agca/tests/test_modules.pyo
${PYSITELIB}/sympy/polys/constructor.py
${PYSITELIB}/sympy/polys/constructor.pyc
${PYSITELIB}/sympy/polys/constructor.pyo
${PYSITELIB}/sympy/polys/densearith.py
${PYSITELIB}/sympy/polys/densearith.pyc
${PYSITELIB}/sympy/polys/densearith.pyo
${PYSITELIB}/sympy/polys/densebasic.py
${PYSITELIB}/sympy/polys/densebasic.pyc
${PYSITELIB}/sympy/polys/densebasic.pyo
${PYSITELIB}/sympy/polys/densetools.py
${PYSITELIB}/sympy/polys/densetools.pyc
${PYSITELIB}/sympy/polys/densetools.pyo
${PYSITELIB}/sympy/polys/distributedmodules.py
${PYSITELIB}/sympy/polys/distributedmodules.pyc
${PYSITELIB}/sympy/polys/distributedmodules.pyo
${PYSITELIB}/sympy/polys/distributedpolys.py
${PYSITELIB}/sympy/polys/distributedpolys.pyc
${PYSITELIB}/sympy/polys/distributedpolys.pyo
${PYSITELIB}/sympy/polys/domains/__init__.py
${PYSITELIB}/sympy/polys/domains/__init__.pyc
${PYSITELIB}/sympy/polys/domains/__init__.pyo
${PYSITELIB}/sympy/polys/domains/algebraicfield.py
${PYSITELIB}/sympy/polys/domains/algebraicfield.pyc
${PYSITELIB}/sympy/polys/domains/algebraicfield.pyo
${PYSITELIB}/sympy/polys/domains/characteristiczero.py
${PYSITELIB}/sympy/polys/domains/characteristiczero.pyc
${PYSITELIB}/sympy/polys/domains/characteristiczero.pyo
${PYSITELIB}/sympy/polys/domains/compositedomain.py
${PYSITELIB}/sympy/polys/domains/compositedomain.pyc
${PYSITELIB}/sympy/polys/domains/compositedomain.pyo
${PYSITELIB}/sympy/polys/domains/domain.py
${PYSITELIB}/sympy/polys/domains/domain.pyc
${PYSITELIB}/sympy/polys/domains/domain.pyo
${PYSITELIB}/sympy/polys/domains/expressiondomain.py
${PYSITELIB}/sympy/polys/domains/expressiondomain.pyc
${PYSITELIB}/sympy/polys/domains/expressiondomain.pyo
${PYSITELIB}/sympy/polys/domains/field.py
${PYSITELIB}/sympy/polys/domains/field.pyc
${PYSITELIB}/sympy/polys/domains/field.pyo
${PYSITELIB}/sympy/polys/domains/finitefield.py
${PYSITELIB}/sympy/polys/domains/finitefield.pyc
${PYSITELIB}/sympy/polys/domains/finitefield.pyo
${PYSITELIB}/sympy/polys/domains/fractionfield.py
${PYSITELIB}/sympy/polys/domains/fractionfield.pyc
${PYSITELIB}/sympy/polys/domains/fractionfield.pyo
${PYSITELIB}/sympy/polys/domains/gmpyfinitefield.py
${PYSITELIB}/sympy/polys/domains/gmpyfinitefield.pyc
${PYSITELIB}/sympy/polys/domains/gmpyfinitefield.pyo
${PYSITELIB}/sympy/polys/domains/gmpyintegerring.py
${PYSITELIB}/sympy/polys/domains/gmpyintegerring.pyc
${PYSITELIB}/sympy/polys/domains/gmpyintegerring.pyo
${PYSITELIB}/sympy/polys/domains/gmpyrationalfield.py
${PYSITELIB}/sympy/polys/domains/gmpyrationalfield.pyc
${PYSITELIB}/sympy/polys/domains/gmpyrationalfield.pyo
${PYSITELIB}/sympy/polys/domains/groundtypes.py
${PYSITELIB}/sympy/polys/domains/groundtypes.pyc
${PYSITELIB}/sympy/polys/domains/groundtypes.pyo
${PYSITELIB}/sympy/polys/domains/integerring.py
${PYSITELIB}/sympy/polys/domains/integerring.pyc
${PYSITELIB}/sympy/polys/domains/integerring.pyo
${PYSITELIB}/sympy/polys/domains/modularinteger.py
${PYSITELIB}/sympy/polys/domains/modularinteger.pyc
${PYSITELIB}/sympy/polys/domains/modularinteger.pyo
${PYSITELIB}/sympy/polys/domains/mpmathcomplexdomain.py
${PYSITELIB}/sympy/polys/domains/mpmathcomplexdomain.pyc
${PYSITELIB}/sympy/polys/domains/mpmathcomplexdomain.pyo
${PYSITELIB}/sympy/polys/domains/mpmathrealdomain.py
${PYSITELIB}/sympy/polys/domains/mpmathrealdomain.pyc
${PYSITELIB}/sympy/polys/domains/mpmathrealdomain.pyo
${PYSITELIB}/sympy/polys/domains/polynomialring.py
${PYSITELIB}/sympy/polys/domains/polynomialring.pyc
${PYSITELIB}/sympy/polys/domains/polynomialring.pyo
${PYSITELIB}/sympy/polys/domains/pythoncomplexdomain.py
${PYSITELIB}/sympy/polys/domains/pythoncomplexdomain.pyc
${PYSITELIB}/sympy/polys/domains/pythoncomplexdomain.pyo
${PYSITELIB}/sympy/polys/domains/pythonfinitefield.py
${PYSITELIB}/sympy/polys/domains/pythonfinitefield.pyc
${PYSITELIB}/sympy/polys/domains/pythonfinitefield.pyo
${PYSITELIB}/sympy/polys/domains/pythonintegerring.py
${PYSITELIB}/sympy/polys/domains/pythonintegerring.pyc
${PYSITELIB}/sympy/polys/domains/pythonintegerring.pyo
${PYSITELIB}/sympy/polys/domains/pythonrationalfield.py
${PYSITELIB}/sympy/polys/domains/pythonrationalfield.pyc
${PYSITELIB}/sympy/polys/domains/pythonrationalfield.pyo
${PYSITELIB}/sympy/polys/domains/pythonrationaltype.py
${PYSITELIB}/sympy/polys/domains/pythonrationaltype.pyc
${PYSITELIB}/sympy/polys/domains/pythonrationaltype.pyo
${PYSITELIB}/sympy/polys/domains/pythonrealdomain.py
${PYSITELIB}/sympy/polys/domains/pythonrealdomain.pyc
${PYSITELIB}/sympy/polys/domains/pythonrealdomain.pyo
${PYSITELIB}/sympy/polys/domains/quotientring.py
${PYSITELIB}/sympy/polys/domains/quotientring.pyc
${PYSITELIB}/sympy/polys/domains/quotientring.pyo
${PYSITELIB}/sympy/polys/domains/rationalfield.py
${PYSITELIB}/sympy/polys/domains/rationalfield.pyc
${PYSITELIB}/sympy/polys/domains/rationalfield.pyo
${PYSITELIB}/sympy/polys/domains/realdomain.py
${PYSITELIB}/sympy/polys/domains/realdomain.pyc
${PYSITELIB}/sympy/polys/domains/realdomain.pyo
${PYSITELIB}/sympy/polys/domains/ring.py
${PYSITELIB}/sympy/polys/domains/ring.pyc
${PYSITELIB}/sympy/polys/domains/ring.pyo
${PYSITELIB}/sympy/polys/domains/simpledomain.py
${PYSITELIB}/sympy/polys/domains/simpledomain.pyc
${PYSITELIB}/sympy/polys/domains/simpledomain.pyo
${PYSITELIB}/sympy/polys/domains/sympyfinitefield.py
${PYSITELIB}/sympy/polys/domains/sympyfinitefield.pyc
${PYSITELIB}/sympy/polys/domains/sympyfinitefield.pyo
${PYSITELIB}/sympy/polys/domains/sympyintegerring.py
${PYSITELIB}/sympy/polys/domains/sympyintegerring.pyc
${PYSITELIB}/sympy/polys/domains/sympyintegerring.pyo
${PYSITELIB}/sympy/polys/domains/sympyrationalfield.py
${PYSITELIB}/sympy/polys/domains/sympyrationalfield.pyc
${PYSITELIB}/sympy/polys/domains/sympyrationalfield.pyo
${PYSITELIB}/sympy/polys/domains/sympyrealdomain.py
${PYSITELIB}/sympy/polys/domains/sympyrealdomain.pyc
${PYSITELIB}/sympy/polys/domains/sympyrealdomain.pyo
${PYSITELIB}/sympy/polys/euclidtools.py
${PYSITELIB}/sympy/polys/euclidtools.pyc
${PYSITELIB}/sympy/polys/euclidtools.pyo
${PYSITELIB}/sympy/polys/factortools.py
${PYSITELIB}/sympy/polys/factortools.pyc
${PYSITELIB}/sympy/polys/factortools.pyo
${PYSITELIB}/sympy/polys/galoistools.py
${PYSITELIB}/sympy/polys/galoistools.pyc
${PYSITELIB}/sympy/polys/galoistools.pyo
${PYSITELIB}/sympy/polys/groebnertools.py
${PYSITELIB}/sympy/polys/groebnertools.pyc
${PYSITELIB}/sympy/polys/groebnertools.pyo
${PYSITELIB}/sympy/polys/monomialtools.py
${PYSITELIB}/sympy/polys/monomialtools.pyc
${PYSITELIB}/sympy/polys/monomialtools.pyo
${PYSITELIB}/sympy/polys/numberfields.py
${PYSITELIB}/sympy/polys/numberfields.pyc
${PYSITELIB}/sympy/polys/numberfields.pyo
${PYSITELIB}/sympy/polys/orthopolys.py
${PYSITELIB}/sympy/polys/orthopolys.pyc
${PYSITELIB}/sympy/polys/orthopolys.pyo
${PYSITELIB}/sympy/polys/partfrac.py
${PYSITELIB}/sympy/polys/partfrac.pyc
${PYSITELIB}/sympy/polys/partfrac.pyo
${PYSITELIB}/sympy/polys/polyclasses.py
${PYSITELIB}/sympy/polys/polyclasses.pyc
${PYSITELIB}/sympy/polys/polyclasses.pyo
${PYSITELIB}/sympy/polys/polyconfig.py
${PYSITELIB}/sympy/polys/polyconfig.pyc
${PYSITELIB}/sympy/polys/polyconfig.pyo
${PYSITELIB}/sympy/polys/polycontext.py
${PYSITELIB}/sympy/polys/polycontext.pyc
${PYSITELIB}/sympy/polys/polycontext.pyo
${PYSITELIB}/sympy/polys/polyerrors.py
${PYSITELIB}/sympy/polys/polyerrors.pyc
${PYSITELIB}/sympy/polys/polyerrors.pyo
${PYSITELIB}/sympy/polys/polyfuncs.py
${PYSITELIB}/sympy/polys/polyfuncs.pyc
${PYSITELIB}/sympy/polys/polyfuncs.pyo
${PYSITELIB}/sympy/polys/polyoptions.py
${PYSITELIB}/sympy/polys/polyoptions.pyc
${PYSITELIB}/sympy/polys/polyoptions.pyo
${PYSITELIB}/sympy/polys/polyroots.py
${PYSITELIB}/sympy/polys/polyroots.pyc
${PYSITELIB}/sympy/polys/polyroots.pyo
${PYSITELIB}/sympy/polys/polytools.py
${PYSITELIB}/sympy/polys/polytools.pyc
${PYSITELIB}/sympy/polys/polytools.pyo
${PYSITELIB}/sympy/polys/polyutils.py
${PYSITELIB}/sympy/polys/polyutils.pyc
${PYSITELIB}/sympy/polys/polyutils.pyo
${PYSITELIB}/sympy/polys/rationaltools.py
${PYSITELIB}/sympy/polys/rationaltools.pyc
${PYSITELIB}/sympy/polys/rationaltools.pyo
${PYSITELIB}/sympy/polys/rootisolation.py
${PYSITELIB}/sympy/polys/rootisolation.pyc
${PYSITELIB}/sympy/polys/rootisolation.pyo
${PYSITELIB}/sympy/polys/rootoftools.py
${PYSITELIB}/sympy/polys/rootoftools.pyc
${PYSITELIB}/sympy/polys/rootoftools.pyo
${PYSITELIB}/sympy/polys/specialpolys.py
${PYSITELIB}/sympy/polys/specialpolys.pyc
${PYSITELIB}/sympy/polys/specialpolys.pyo
${PYSITELIB}/sympy/polys/sqfreetools.py
${PYSITELIB}/sympy/polys/sqfreetools.pyc
${PYSITELIB}/sympy/polys/sqfreetools.pyo
${PYSITELIB}/sympy/polys/tests/__init__.py
${PYSITELIB}/sympy/polys/tests/__init__.pyc
${PYSITELIB}/sympy/polys/tests/__init__.pyo
${PYSITELIB}/sympy/polys/tests/test_constructor.py
${PYSITELIB}/sympy/polys/tests/test_constructor.pyc
${PYSITELIB}/sympy/polys/tests/test_constructor.pyo
${PYSITELIB}/sympy/polys/tests/test_densearith.py
${PYSITELIB}/sympy/polys/tests/test_densearith.pyc
${PYSITELIB}/sympy/polys/tests/test_densearith.pyo
${PYSITELIB}/sympy/polys/tests/test_densebasic.py
${PYSITELIB}/sympy/polys/tests/test_densebasic.pyc
${PYSITELIB}/sympy/polys/tests/test_densebasic.pyo
${PYSITELIB}/sympy/polys/tests/test_densetools.py
${PYSITELIB}/sympy/polys/tests/test_densetools.pyc
${PYSITELIB}/sympy/polys/tests/test_densetools.pyo
${PYSITELIB}/sympy/polys/tests/test_distributedmodules.py
${PYSITELIB}/sympy/polys/tests/test_distributedmodules.pyc
${PYSITELIB}/sympy/polys/tests/test_distributedmodules.pyo
${PYSITELIB}/sympy/polys/tests/test_distributedpolys.py
${PYSITELIB}/sympy/polys/tests/test_distributedpolys.pyc
${PYSITELIB}/sympy/polys/tests/test_distributedpolys.pyo
${PYSITELIB}/sympy/polys/tests/test_domains.py
${PYSITELIB}/sympy/polys/tests/test_domains.pyc
${PYSITELIB}/sympy/polys/tests/test_domains.pyo
${PYSITELIB}/sympy/polys/tests/test_euclidtools.py
${PYSITELIB}/sympy/polys/tests/test_euclidtools.pyc
${PYSITELIB}/sympy/polys/tests/test_euclidtools.pyo
${PYSITELIB}/sympy/polys/tests/test_factortools.py
${PYSITELIB}/sympy/polys/tests/test_factortools.pyc
${PYSITELIB}/sympy/polys/tests/test_factortools.pyo
${PYSITELIB}/sympy/polys/tests/test_galoistools.py
${PYSITELIB}/sympy/polys/tests/test_galoistools.pyc
${PYSITELIB}/sympy/polys/tests/test_galoistools.pyo
${PYSITELIB}/sympy/polys/tests/test_groebnertools.py
${PYSITELIB}/sympy/polys/tests/test_groebnertools.pyc
${PYSITELIB}/sympy/polys/tests/test_groebnertools.pyo
${PYSITELIB}/sympy/polys/tests/test_monomialtools.py
${PYSITELIB}/sympy/polys/tests/test_monomialtools.pyc
${PYSITELIB}/sympy/polys/tests/test_monomialtools.pyo
${PYSITELIB}/sympy/polys/tests/test_numberfields.py
${PYSITELIB}/sympy/polys/tests/test_numberfields.pyc
${PYSITELIB}/sympy/polys/tests/test_numberfields.pyo
${PYSITELIB}/sympy/polys/tests/test_orthopolys.py
${PYSITELIB}/sympy/polys/tests/test_orthopolys.pyc
${PYSITELIB}/sympy/polys/tests/test_orthopolys.pyo
${PYSITELIB}/sympy/polys/tests/test_partfrac.py
${PYSITELIB}/sympy/polys/tests/test_partfrac.pyc
${PYSITELIB}/sympy/polys/tests/test_partfrac.pyo
${PYSITELIB}/sympy/polys/tests/test_polyclasses.py
${PYSITELIB}/sympy/polys/tests/test_polyclasses.pyc
${PYSITELIB}/sympy/polys/tests/test_polyclasses.pyo
${PYSITELIB}/sympy/polys/tests/test_polyfuncs.py
${PYSITELIB}/sympy/polys/tests/test_polyfuncs.pyc
${PYSITELIB}/sympy/polys/tests/test_polyfuncs.pyo
${PYSITELIB}/sympy/polys/tests/test_polynomialring.py
${PYSITELIB}/sympy/polys/tests/test_polynomialring.pyc
${PYSITELIB}/sympy/polys/tests/test_polynomialring.pyo
${PYSITELIB}/sympy/polys/tests/test_polyoptions.py
${PYSITELIB}/sympy/polys/tests/test_polyoptions.pyc
${PYSITELIB}/sympy/polys/tests/test_polyoptions.pyo
${PYSITELIB}/sympy/polys/tests/test_polyroots.py
${PYSITELIB}/sympy/polys/tests/test_polyroots.pyc
${PYSITELIB}/sympy/polys/tests/test_polyroots.pyo
${PYSITELIB}/sympy/polys/tests/test_polytools.py
${PYSITELIB}/sympy/polys/tests/test_polytools.pyc
${PYSITELIB}/sympy/polys/tests/test_polytools.pyo
${PYSITELIB}/sympy/polys/tests/test_polyutils.py
${PYSITELIB}/sympy/polys/tests/test_polyutils.pyc
${PYSITELIB}/sympy/polys/tests/test_polyutils.pyo
${PYSITELIB}/sympy/polys/tests/test_quotientring.py
${PYSITELIB}/sympy/polys/tests/test_quotientring.pyc
${PYSITELIB}/sympy/polys/tests/test_quotientring.pyo
${PYSITELIB}/sympy/polys/tests/test_rationaltools.py
${PYSITELIB}/sympy/polys/tests/test_rationaltools.pyc
${PYSITELIB}/sympy/polys/tests/test_rationaltools.pyo
${PYSITELIB}/sympy/polys/tests/test_rootisolation.py
${PYSITELIB}/sympy/polys/tests/test_rootisolation.pyc
${PYSITELIB}/sympy/polys/tests/test_rootisolation.pyo
${PYSITELIB}/sympy/polys/tests/test_rootoftools.py
${PYSITELIB}/sympy/polys/tests/test_rootoftools.pyc
${PYSITELIB}/sympy/polys/tests/test_rootoftools.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/tests/test_sqfreetools.py
${PYSITELIB}/sympy/polys/tests/test_sqfreetools.pyc
${PYSITELIB}/sympy/polys/tests/test_sqfreetools.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/codeprinter.py
${PYSITELIB}/sympy/printing/codeprinter.pyc
${PYSITELIB}/sympy/printing/codeprinter.pyo
${PYSITELIB}/sympy/printing/conventions.py
${PYSITELIB}/sympy/printing/conventions.pyc
${PYSITELIB}/sympy/printing/conventions.pyo
${PYSITELIB}/sympy/printing/fcode.py
${PYSITELIB}/sympy/printing/fcode.pyc
${PYSITELIB}/sympy/printing/fcode.pyo
${PYSITELIB}/sympy/printing/gtk.py
${PYSITELIB}/sympy/printing/gtk.pyc
${PYSITELIB}/sympy/printing/gtk.pyo
${PYSITELIB}/sympy/printing/jscode.py
${PYSITELIB}/sympy/printing/jscode.pyc
${PYSITELIB}/sympy/printing/jscode.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/__init__.py
${PYSITELIB}/sympy/printing/pretty/tests/__init__.pyc
${PYSITELIB}/sympy/printing/pretty/tests/__init__.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/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/tableform.py
${PYSITELIB}/sympy/printing/tableform.pyc
${PYSITELIB}/sympy/printing/tableform.pyo
${PYSITELIB}/sympy/printing/tests/__init__.py
${PYSITELIB}/sympy/printing/tests/__init__.pyc
${PYSITELIB}/sympy/printing/tests/__init__.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_codeprinter.py
${PYSITELIB}/sympy/printing/tests/test_codeprinter.pyc
${PYSITELIB}/sympy/printing/tests/test_codeprinter.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_fcode.py
${PYSITELIB}/sympy/printing/tests/test_fcode.pyc
${PYSITELIB}/sympy/printing/tests/test_fcode.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_jscode.py
${PYSITELIB}/sympy/printing/tests/test_jscode.pyc
${PYSITELIB}/sympy/printing/tests/test_jscode.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/tests/test_tableform.py
${PYSITELIB}/sympy/printing/tests/test_tableform.pyc
${PYSITELIB}/sympy/printing/tests/test_tableform.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/kauers.py
${PYSITELIB}/sympy/series/kauers.pyc
${PYSITELIB}/sympy/series/kauers.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/residues.py
${PYSITELIB}/sympy/series/residues.pyc
${PYSITELIB}/sympy/series/residues.pyo
${PYSITELIB}/sympy/series/series.py
${PYSITELIB}/sympy/series/series.pyc
${PYSITELIB}/sympy/series/series.pyo
${PYSITELIB}/sympy/series/tests/__init__.py
${PYSITELIB}/sympy/series/tests/__init__.pyc
${PYSITELIB}/sympy/series/tests/__init__.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_kauers.py
${PYSITELIB}/sympy/series/tests/test_kauers.pyc
${PYSITELIB}/sympy/series/tests/test_kauers.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_residues.py
${PYSITELIB}/sympy/series/tests/test_residues.pyc
${PYSITELIB}/sympy/series/tests/test_residues.pyo
${PYSITELIB}/sympy/series/tests/test_series.py
${PYSITELIB}/sympy/series/tests/test_series.pyc
${PYSITELIB}/sympy/series/tests/test_series.pyo
${PYSITELIB}/sympy/sets/__init__.py
${PYSITELIB}/sympy/sets/__init__.pyc
${PYSITELIB}/sympy/sets/__init__.pyo
${PYSITELIB}/sympy/sets/fancysets.py
${PYSITELIB}/sympy/sets/fancysets.pyc
${PYSITELIB}/sympy/sets/fancysets.pyo
${PYSITELIB}/sympy/sets/tests/test_fancysets.py
${PYSITELIB}/sympy/sets/tests/test_fancysets.pyc
${PYSITELIB}/sympy/sets/tests/test_fancysets.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/epathtools.py
${PYSITELIB}/sympy/simplify/epathtools.pyc
${PYSITELIB}/sympy/simplify/epathtools.pyo
${PYSITELIB}/sympy/simplify/hyperexpand.py
${PYSITELIB}/sympy/simplify/hyperexpand.pyc
${PYSITELIB}/sympy/simplify/hyperexpand.pyo
${PYSITELIB}/sympy/simplify/hyperexpand_doc.py
${PYSITELIB}/sympy/simplify/hyperexpand_doc.pyc
${PYSITELIB}/sympy/simplify/hyperexpand_doc.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/__init__.py
${PYSITELIB}/sympy/simplify/tests/__init__.pyc
${PYSITELIB}/sympy/simplify/tests/__init__.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_epathtools.py
${PYSITELIB}/sympy/simplify/tests/test_epathtools.pyc
${PYSITELIB}/sympy/simplify/tests/test_epathtools.pyo
${PYSITELIB}/sympy/simplify/tests/test_hyperexpand.py
${PYSITELIB}/sympy/simplify/tests/test_hyperexpand.pyc
${PYSITELIB}/sympy/simplify/tests/test_hyperexpand.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/simplify/tests/test_traversaltools.py
${PYSITELIB}/sympy/simplify/tests/test_traversaltools.pyc
${PYSITELIB}/sympy/simplify/tests/test_traversaltools.pyo
${PYSITELIB}/sympy/simplify/traversaltools.py
${PYSITELIB}/sympy/simplify/traversaltools.pyc
${PYSITELIB}/sympy/simplify/traversaltools.pyo
${PYSITELIB}/sympy/solvers/__init__.py
${PYSITELIB}/sympy/solvers/__init__.pyc
${PYSITELIB}/sympy/solvers/__init__.pyo
${PYSITELIB}/sympy/solvers/inequalities.py
${PYSITELIB}/sympy/solvers/inequalities.pyc
${PYSITELIB}/sympy/solvers/inequalities.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/__init__.py
${PYSITELIB}/sympy/solvers/tests/__init__.pyc
${PYSITELIB}/sympy/solvers/tests/__init__.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_inequalities.py
${PYSITELIB}/sympy/solvers/tests/test_inequalities.pyc
${PYSITELIB}/sympy/solvers/tests/test_inequalities.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/__init__.py
${PYSITELIB}/sympy/statistics/tests/__init__.pyc
${PYSITELIB}/sympy/statistics/tests/__init__.pyo
${PYSITELIB}/sympy/statistics/tests/test_statistics.py
${PYSITELIB}/sympy/statistics/tests/test_statistics.pyc
${PYSITELIB}/sympy/statistics/tests/test_statistics.pyo
${PYSITELIB}/sympy/stats/__init__.py
${PYSITELIB}/sympy/stats/__init__.pyc
${PYSITELIB}/sympy/stats/__init__.pyo
${PYSITELIB}/sympy/stats/crv.py
${PYSITELIB}/sympy/stats/crv.pyc
${PYSITELIB}/sympy/stats/crv.pyo
${PYSITELIB}/sympy/stats/crv_types.py
${PYSITELIB}/sympy/stats/crv_types.pyc
${PYSITELIB}/sympy/stats/crv_types.pyo
${PYSITELIB}/sympy/stats/frv.py
${PYSITELIB}/sympy/stats/frv.pyc
${PYSITELIB}/sympy/stats/frv.pyo
${PYSITELIB}/sympy/stats/frv_types.py
${PYSITELIB}/sympy/stats/frv_types.pyc
${PYSITELIB}/sympy/stats/frv_types.pyo
${PYSITELIB}/sympy/stats/rv.py
${PYSITELIB}/sympy/stats/rv.pyc
${PYSITELIB}/sympy/stats/rv.pyo
${PYSITELIB}/sympy/stats/rv_interface.py
${PYSITELIB}/sympy/stats/rv_interface.pyc
${PYSITELIB}/sympy/stats/rv_interface.pyo
${PYSITELIB}/sympy/stats/tests/test_continuous_rv.py
${PYSITELIB}/sympy/stats/tests/test_continuous_rv.pyc
${PYSITELIB}/sympy/stats/tests/test_continuous_rv.pyo
${PYSITELIB}/sympy/stats/tests/test_finite_rv.py
${PYSITELIB}/sympy/stats/tests/test_finite_rv.pyc
${PYSITELIB}/sympy/stats/tests/test_finite_rv.pyo
${PYSITELIB}/sympy/stats/tests/test_rv.py
${PYSITELIB}/sympy/stats/tests/test_rv.pyc
${PYSITELIB}/sympy/stats/tests/test_rv.pyo
${PYSITELIB}/sympy/tensor/__init__.py
${PYSITELIB}/sympy/tensor/__init__.pyc
${PYSITELIB}/sympy/tensor/__init__.pyo
${PYSITELIB}/sympy/tensor/index_methods.py
${PYSITELIB}/sympy/tensor/index_methods.pyc
${PYSITELIB}/sympy/tensor/index_methods.pyo
${PYSITELIB}/sympy/tensor/indexed.py
${PYSITELIB}/sympy/tensor/indexed.pyc
${PYSITELIB}/sympy/tensor/indexed.pyo
${PYSITELIB}/sympy/tensor/tests/__init__.py
${PYSITELIB}/sympy/tensor/tests/__init__.pyc
${PYSITELIB}/sympy/tensor/tests/__init__.pyo
${PYSITELIB}/sympy/tensor/tests/test_index_methods.py
${PYSITELIB}/sympy/tensor/tests/test_index_methods.pyc
${PYSITELIB}/sympy/tensor/tests/test_index_methods.pyo
${PYSITELIB}/sympy/tensor/tests/test_indexed.py
${PYSITELIB}/sympy/tensor/tests/test_indexed.pyc
${PYSITELIB}/sympy/tensor/tests/test_indexed.pyo
${PYSITELIB}/sympy/utilities/__init__.py
${PYSITELIB}/sympy/utilities/__init__.pyc
${PYSITELIB}/sympy/utilities/__init__.pyo
${PYSITELIB}/sympy/utilities/autowrap.py
${PYSITELIB}/sympy/utilities/autowrap.pyc
${PYSITELIB}/sympy/utilities/autowrap.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/cythonutils.py
${PYSITELIB}/sympy/utilities/cythonutils.pyc
${PYSITELIB}/sympy/utilities/cythonutils.pyo
${PYSITELIB}/sympy/utilities/decorator.py
${PYSITELIB}/sympy/utilities/decorator.pyc
${PYSITELIB}/sympy/utilities/decorator.pyo
${PYSITELIB}/sympy/utilities/exceptions.py
${PYSITELIB}/sympy/utilities/exceptions.pyc
${PYSITELIB}/sympy/utilities/exceptions.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/misc.py
${PYSITELIB}/sympy/utilities/misc.pyc
${PYSITELIB}/sympy/utilities/misc.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/randtest.py
${PYSITELIB}/sympy/utilities/randtest.pyc
${PYSITELIB}/sympy/utilities/randtest.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/__init__.py
${PYSITELIB}/sympy/utilities/tests/__init__.pyc
${PYSITELIB}/sympy/utilities/tests/__init__.pyo
${PYSITELIB}/sympy/utilities/tests/test_autowrap.py
${PYSITELIB}/sympy/utilities/tests/test_autowrap.pyc
${PYSITELIB}/sympy/utilities/tests/test_autowrap.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/timeutils.py
${PYSITELIB}/sympy/utilities/timeutils.pyc
${PYSITELIB}/sympy/utilities/timeutils.pyo
man/man1/isympy${PYVERSSUFFIX}.1