summaryrefslogtreecommitdiff
path: root/math/py-astropy/PLIST
blob: 2c6968b42c4c832e9b9964f060d422b260cfb5f3 (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
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
@comment $NetBSD: PLIST,v 1.2 2022/08/30 15:54:37 thor Exp $
bin/fits2bitmap
bin/fitscheck
bin/fitsdiff
bin/fitsheader
bin/fitsinfo
bin/samp_hub
bin/showtable
bin/volint
bin/wcslint
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/astropy/CITATION
${PYSITELIB}/astropy/__init__.py
${PYSITELIB}/astropy/__init__.pyc
${PYSITELIB}/astropy/__init__.pyo
${PYSITELIB}/astropy/_erfa/__init__.py
${PYSITELIB}/astropy/_erfa/__init__.pyc
${PYSITELIB}/astropy/_erfa/__init__.pyo
${PYSITELIB}/astropy/_version.py
${PYSITELIB}/astropy/_version.pyc
${PYSITELIB}/astropy/_version.pyo
${PYSITELIB}/astropy/compiler_version.so
${PYSITELIB}/astropy/config/__init__.py
${PYSITELIB}/astropy/config/__init__.pyc
${PYSITELIB}/astropy/config/__init__.pyo
${PYSITELIB}/astropy/config/affiliated.py
${PYSITELIB}/astropy/config/affiliated.pyc
${PYSITELIB}/astropy/config/affiliated.pyo
${PYSITELIB}/astropy/config/configuration.py
${PYSITELIB}/astropy/config/configuration.pyc
${PYSITELIB}/astropy/config/configuration.pyo
${PYSITELIB}/astropy/config/paths.py
${PYSITELIB}/astropy/config/paths.pyc
${PYSITELIB}/astropy/config/paths.pyo
${PYSITELIB}/astropy/config/tests/__init__.py
${PYSITELIB}/astropy/config/tests/__init__.pyc
${PYSITELIB}/astropy/config/tests/__init__.pyo
${PYSITELIB}/astropy/config/tests/data/alias.cfg
${PYSITELIB}/astropy/config/tests/data/deprecated.cfg
${PYSITELIB}/astropy/config/tests/data/empty.cfg
${PYSITELIB}/astropy/config/tests/data/not_empty.cfg
${PYSITELIB}/astropy/config/tests/test_configs.py
${PYSITELIB}/astropy/config/tests/test_configs.pyc
${PYSITELIB}/astropy/config/tests/test_configs.pyo
${PYSITELIB}/astropy/conftest.py
${PYSITELIB}/astropy/conftest.pyc
${PYSITELIB}/astropy/conftest.pyo
${PYSITELIB}/astropy/constants/__init__.py
${PYSITELIB}/astropy/constants/__init__.pyc
${PYSITELIB}/astropy/constants/__init__.pyo
${PYSITELIB}/astropy/constants/astropyconst13.py
${PYSITELIB}/astropy/constants/astropyconst13.pyc
${PYSITELIB}/astropy/constants/astropyconst13.pyo
${PYSITELIB}/astropy/constants/astropyconst20.py
${PYSITELIB}/astropy/constants/astropyconst20.pyc
${PYSITELIB}/astropy/constants/astropyconst20.pyo
${PYSITELIB}/astropy/constants/astropyconst40.py
${PYSITELIB}/astropy/constants/astropyconst40.pyc
${PYSITELIB}/astropy/constants/astropyconst40.pyo
${PYSITELIB}/astropy/constants/cgs.py
${PYSITELIB}/astropy/constants/cgs.pyc
${PYSITELIB}/astropy/constants/cgs.pyo
${PYSITELIB}/astropy/constants/codata2010.py
${PYSITELIB}/astropy/constants/codata2010.pyc
${PYSITELIB}/astropy/constants/codata2010.pyo
${PYSITELIB}/astropy/constants/codata2014.py
${PYSITELIB}/astropy/constants/codata2014.pyc
${PYSITELIB}/astropy/constants/codata2014.pyo
${PYSITELIB}/astropy/constants/codata2018.py
${PYSITELIB}/astropy/constants/codata2018.pyc
${PYSITELIB}/astropy/constants/codata2018.pyo
${PYSITELIB}/astropy/constants/config.py
${PYSITELIB}/astropy/constants/config.pyc
${PYSITELIB}/astropy/constants/config.pyo
${PYSITELIB}/astropy/constants/constant.py
${PYSITELIB}/astropy/constants/constant.pyc
${PYSITELIB}/astropy/constants/constant.pyo
${PYSITELIB}/astropy/constants/iau2012.py
${PYSITELIB}/astropy/constants/iau2012.pyc
${PYSITELIB}/astropy/constants/iau2012.pyo
${PYSITELIB}/astropy/constants/iau2015.py
${PYSITELIB}/astropy/constants/iau2015.pyc
${PYSITELIB}/astropy/constants/iau2015.pyo
${PYSITELIB}/astropy/constants/si.py
${PYSITELIB}/astropy/constants/si.pyc
${PYSITELIB}/astropy/constants/si.pyo
${PYSITELIB}/astropy/constants/tests/__init__.py
${PYSITELIB}/astropy/constants/tests/__init__.pyc
${PYSITELIB}/astropy/constants/tests/__init__.pyo
${PYSITELIB}/astropy/constants/tests/test_constant.py
${PYSITELIB}/astropy/constants/tests/test_constant.pyc
${PYSITELIB}/astropy/constants/tests/test_constant.pyo
${PYSITELIB}/astropy/constants/tests/test_pickle.py
${PYSITELIB}/astropy/constants/tests/test_pickle.pyc
${PYSITELIB}/astropy/constants/tests/test_pickle.pyo
${PYSITELIB}/astropy/constants/tests/test_prior_version.py
${PYSITELIB}/astropy/constants/tests/test_prior_version.pyc
${PYSITELIB}/astropy/constants/tests/test_prior_version.pyo
${PYSITELIB}/astropy/constants/tests/test_sciencestate.py
${PYSITELIB}/astropy/constants/tests/test_sciencestate.pyc
${PYSITELIB}/astropy/constants/tests/test_sciencestate.pyo
${PYSITELIB}/astropy/constants/utils.py
${PYSITELIB}/astropy/constants/utils.pyc
${PYSITELIB}/astropy/constants/utils.pyo
${PYSITELIB}/astropy/convolution/__init__.py
${PYSITELIB}/astropy/convolution/__init__.pyc
${PYSITELIB}/astropy/convolution/__init__.pyo
${PYSITELIB}/astropy/convolution/_convolve.so
${PYSITELIB}/astropy/convolution/convolve.py
${PYSITELIB}/astropy/convolution/convolve.pyc
${PYSITELIB}/astropy/convolution/convolve.pyo
${PYSITELIB}/astropy/convolution/core.py
${PYSITELIB}/astropy/convolution/core.pyc
${PYSITELIB}/astropy/convolution/core.pyo
${PYSITELIB}/astropy/convolution/kernels.py
${PYSITELIB}/astropy/convolution/kernels.pyc
${PYSITELIB}/astropy/convolution/kernels.pyo
${PYSITELIB}/astropy/convolution/setup_package.py
${PYSITELIB}/astropy/convolution/setup_package.pyc
${PYSITELIB}/astropy/convolution/setup_package.pyo
${PYSITELIB}/astropy/convolution/tests/__init__.py
${PYSITELIB}/astropy/convolution/tests/__init__.pyc
${PYSITELIB}/astropy/convolution/tests/__init__.pyo
${PYSITELIB}/astropy/convolution/tests/test_convolve.py
${PYSITELIB}/astropy/convolution/tests/test_convolve.pyc
${PYSITELIB}/astropy/convolution/tests/test_convolve.pyo
${PYSITELIB}/astropy/convolution/tests/test_convolve_fft.py
${PYSITELIB}/astropy/convolution/tests/test_convolve_fft.pyc
${PYSITELIB}/astropy/convolution/tests/test_convolve_fft.pyo
${PYSITELIB}/astropy/convolution/tests/test_convolve_kernels.py
${PYSITELIB}/astropy/convolution/tests/test_convolve_kernels.pyc
${PYSITELIB}/astropy/convolution/tests/test_convolve_kernels.pyo
${PYSITELIB}/astropy/convolution/tests/test_convolve_models.py
${PYSITELIB}/astropy/convolution/tests/test_convolve_models.pyc
${PYSITELIB}/astropy/convolution/tests/test_convolve_models.pyo
${PYSITELIB}/astropy/convolution/tests/test_convolve_nddata.py
${PYSITELIB}/astropy/convolution/tests/test_convolve_nddata.pyc
${PYSITELIB}/astropy/convolution/tests/test_convolve_nddata.pyo
${PYSITELIB}/astropy/convolution/tests/test_convolve_speeds.py
${PYSITELIB}/astropy/convolution/tests/test_convolve_speeds.pyc
${PYSITELIB}/astropy/convolution/tests/test_convolve_speeds.pyo
${PYSITELIB}/astropy/convolution/tests/test_discretize.py
${PYSITELIB}/astropy/convolution/tests/test_discretize.pyc
${PYSITELIB}/astropy/convolution/tests/test_discretize.pyo
${PYSITELIB}/astropy/convolution/tests/test_kernel_class.py
${PYSITELIB}/astropy/convolution/tests/test_kernel_class.pyc
${PYSITELIB}/astropy/convolution/tests/test_kernel_class.pyo
${PYSITELIB}/astropy/convolution/tests/test_pickle.py
${PYSITELIB}/astropy/convolution/tests/test_pickle.pyc
${PYSITELIB}/astropy/convolution/tests/test_pickle.pyo
${PYSITELIB}/astropy/convolution/utils.py
${PYSITELIB}/astropy/convolution/utils.pyc
${PYSITELIB}/astropy/convolution/utils.pyo
${PYSITELIB}/astropy/coordinates/__init__.py
${PYSITELIB}/astropy/coordinates/__init__.pyc
${PYSITELIB}/astropy/coordinates/__init__.pyo
${PYSITELIB}/astropy/coordinates/angle_formats.py
${PYSITELIB}/astropy/coordinates/angle_formats.pyc
${PYSITELIB}/astropy/coordinates/angle_formats.pyo
${PYSITELIB}/astropy/coordinates/angle_lextab.py
${PYSITELIB}/astropy/coordinates/angle_lextab.pyc
${PYSITELIB}/astropy/coordinates/angle_lextab.pyo
${PYSITELIB}/astropy/coordinates/angle_parsetab.py
${PYSITELIB}/astropy/coordinates/angle_parsetab.pyc
${PYSITELIB}/astropy/coordinates/angle_parsetab.pyo
${PYSITELIB}/astropy/coordinates/angle_utilities.py
${PYSITELIB}/astropy/coordinates/angle_utilities.pyc
${PYSITELIB}/astropy/coordinates/angle_utilities.pyo
${PYSITELIB}/astropy/coordinates/angles.py
${PYSITELIB}/astropy/coordinates/angles.pyc
${PYSITELIB}/astropy/coordinates/angles.pyo
${PYSITELIB}/astropy/coordinates/attributes.py
${PYSITELIB}/astropy/coordinates/attributes.pyc
${PYSITELIB}/astropy/coordinates/attributes.pyo
${PYSITELIB}/astropy/coordinates/baseframe.py
${PYSITELIB}/astropy/coordinates/baseframe.pyc
${PYSITELIB}/astropy/coordinates/baseframe.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/__init__.py
${PYSITELIB}/astropy/coordinates/builtin_frames/__init__.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/__init__.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/altaz.py
${PYSITELIB}/astropy/coordinates/builtin_frames/altaz.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/altaz.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/baseradec.py
${PYSITELIB}/astropy/coordinates/builtin_frames/baseradec.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/baseradec.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/cirs.py
${PYSITELIB}/astropy/coordinates/builtin_frames/cirs.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/cirs.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/cirs_observed_transforms.py
${PYSITELIB}/astropy/coordinates/builtin_frames/cirs_observed_transforms.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/cirs_observed_transforms.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/ecliptic.py
${PYSITELIB}/astropy/coordinates/builtin_frames/ecliptic.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/ecliptic.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/ecliptic_transforms.py
${PYSITELIB}/astropy/coordinates/builtin_frames/ecliptic_transforms.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/ecliptic_transforms.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/equatorial.py
${PYSITELIB}/astropy/coordinates/builtin_frames/equatorial.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/equatorial.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/fk4.py
${PYSITELIB}/astropy/coordinates/builtin_frames/fk4.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/fk4.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/fk4_fk5_transforms.py
${PYSITELIB}/astropy/coordinates/builtin_frames/fk4_fk5_transforms.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/fk4_fk5_transforms.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/fk5.py
${PYSITELIB}/astropy/coordinates/builtin_frames/fk5.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/fk5.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/galactic.py
${PYSITELIB}/astropy/coordinates/builtin_frames/galactic.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/galactic.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/galactic_transforms.py
${PYSITELIB}/astropy/coordinates/builtin_frames/galactic_transforms.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/galactic_transforms.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/galactocentric.py
${PYSITELIB}/astropy/coordinates/builtin_frames/galactocentric.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/galactocentric.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/gcrs.py
${PYSITELIB}/astropy/coordinates/builtin_frames/gcrs.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/gcrs.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/hadec.py
${PYSITELIB}/astropy/coordinates/builtin_frames/hadec.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/hadec.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/hcrs.py
${PYSITELIB}/astropy/coordinates/builtin_frames/hcrs.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/hcrs.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/icrs.py
${PYSITELIB}/astropy/coordinates/builtin_frames/icrs.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/icrs.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/icrs_cirs_transforms.py
${PYSITELIB}/astropy/coordinates/builtin_frames/icrs_cirs_transforms.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/icrs_cirs_transforms.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/icrs_fk5_transforms.py
${PYSITELIB}/astropy/coordinates/builtin_frames/icrs_fk5_transforms.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/icrs_fk5_transforms.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/icrs_observed_transforms.py
${PYSITELIB}/astropy/coordinates/builtin_frames/icrs_observed_transforms.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/icrs_observed_transforms.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/intermediate_rotation_transforms.py
${PYSITELIB}/astropy/coordinates/builtin_frames/intermediate_rotation_transforms.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/intermediate_rotation_transforms.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/itrs.py
${PYSITELIB}/astropy/coordinates/builtin_frames/itrs.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/itrs.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/lsr.py
${PYSITELIB}/astropy/coordinates/builtin_frames/lsr.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/lsr.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/skyoffset.py
${PYSITELIB}/astropy/coordinates/builtin_frames/skyoffset.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/skyoffset.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/supergalactic.py
${PYSITELIB}/astropy/coordinates/builtin_frames/supergalactic.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/supergalactic.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/supergalactic_transforms.py
${PYSITELIB}/astropy/coordinates/builtin_frames/supergalactic_transforms.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/supergalactic_transforms.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/utils.py
${PYSITELIB}/astropy/coordinates/builtin_frames/utils.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/utils.pyo
${PYSITELIB}/astropy/coordinates/calculation.py
${PYSITELIB}/astropy/coordinates/calculation.pyc
${PYSITELIB}/astropy/coordinates/calculation.pyo
${PYSITELIB}/astropy/coordinates/data/constellation_data_roman87.dat
${PYSITELIB}/astropy/coordinates/data/constellation_names.dat
${PYSITELIB}/astropy/coordinates/data/sites.json
${PYSITELIB}/astropy/coordinates/distances.py
${PYSITELIB}/astropy/coordinates/distances.pyc
${PYSITELIB}/astropy/coordinates/distances.pyo
${PYSITELIB}/astropy/coordinates/earth.py
${PYSITELIB}/astropy/coordinates/earth.pyc
${PYSITELIB}/astropy/coordinates/earth.pyo
${PYSITELIB}/astropy/coordinates/earth_orientation.py
${PYSITELIB}/astropy/coordinates/earth_orientation.pyc
${PYSITELIB}/astropy/coordinates/earth_orientation.pyo
${PYSITELIB}/astropy/coordinates/erfa_astrom.py
${PYSITELIB}/astropy/coordinates/erfa_astrom.pyc
${PYSITELIB}/astropy/coordinates/erfa_astrom.pyo
${PYSITELIB}/astropy/coordinates/errors.py
${PYSITELIB}/astropy/coordinates/errors.pyc
${PYSITELIB}/astropy/coordinates/errors.pyo
${PYSITELIB}/astropy/coordinates/funcs.py
${PYSITELIB}/astropy/coordinates/funcs.pyc
${PYSITELIB}/astropy/coordinates/funcs.pyo
${PYSITELIB}/astropy/coordinates/jparser.py
${PYSITELIB}/astropy/coordinates/jparser.pyc
${PYSITELIB}/astropy/coordinates/jparser.pyo
${PYSITELIB}/astropy/coordinates/matching.py
${PYSITELIB}/astropy/coordinates/matching.pyc
${PYSITELIB}/astropy/coordinates/matching.pyo
${PYSITELIB}/astropy/coordinates/matrix_utilities.py
${PYSITELIB}/astropy/coordinates/matrix_utilities.pyc
${PYSITELIB}/astropy/coordinates/matrix_utilities.pyo
${PYSITELIB}/astropy/coordinates/name_resolve.py
${PYSITELIB}/astropy/coordinates/name_resolve.pyc
${PYSITELIB}/astropy/coordinates/name_resolve.pyo
${PYSITELIB}/astropy/coordinates/orbital_elements.py
${PYSITELIB}/astropy/coordinates/orbital_elements.pyc
${PYSITELIB}/astropy/coordinates/orbital_elements.pyo
${PYSITELIB}/astropy/coordinates/representation.py
${PYSITELIB}/astropy/coordinates/representation.pyc
${PYSITELIB}/astropy/coordinates/representation.pyo
${PYSITELIB}/astropy/coordinates/sites.py
${PYSITELIB}/astropy/coordinates/sites.pyc
${PYSITELIB}/astropy/coordinates/sites.pyo
${PYSITELIB}/astropy/coordinates/sky_coordinate.py
${PYSITELIB}/astropy/coordinates/sky_coordinate.pyc
${PYSITELIB}/astropy/coordinates/sky_coordinate.pyo
${PYSITELIB}/astropy/coordinates/sky_coordinate_parsers.py
${PYSITELIB}/astropy/coordinates/sky_coordinate_parsers.pyc
${PYSITELIB}/astropy/coordinates/sky_coordinate_parsers.pyo
${PYSITELIB}/astropy/coordinates/solar_system.py
${PYSITELIB}/astropy/coordinates/solar_system.pyc
${PYSITELIB}/astropy/coordinates/solar_system.pyo
${PYSITELIB}/astropy/coordinates/spectral_coordinate.py
${PYSITELIB}/astropy/coordinates/spectral_coordinate.pyc
${PYSITELIB}/astropy/coordinates/spectral_coordinate.pyo
${PYSITELIB}/astropy/coordinates/spectral_quantity.py
${PYSITELIB}/astropy/coordinates/spectral_quantity.pyc
${PYSITELIB}/astropy/coordinates/spectral_quantity.pyo
${PYSITELIB}/astropy/coordinates/tests/__init__.py
${PYSITELIB}/astropy/coordinates/tests/__init__.pyc
${PYSITELIB}/astropy/coordinates/tests/__init__.pyo
${PYSITELIB}/astropy/coordinates/tests/accuracy/__init__.py
${PYSITELIB}/astropy/coordinates/tests/accuracy/__init__.pyc
${PYSITELIB}/astropy/coordinates/tests/accuracy/__init__.pyo
${PYSITELIB}/astropy/coordinates/tests/accuracy/data/fk4_no_e_fk4.csv
${PYSITELIB}/astropy/coordinates/tests/accuracy/data/fk4_no_e_fk5.csv
${PYSITELIB}/astropy/coordinates/tests/accuracy/data/galactic_fk4.csv
${PYSITELIB}/astropy/coordinates/tests/accuracy/data/icrs_fk5.csv
${PYSITELIB}/astropy/coordinates/tests/accuracy/data/rv.ecsv
${PYSITELIB}/astropy/coordinates/tests/accuracy/generate_ref_ast.py
${PYSITELIB}/astropy/coordinates/tests/accuracy/generate_ref_ast.pyc
${PYSITELIB}/astropy/coordinates/tests/accuracy/generate_ref_ast.pyo
${PYSITELIB}/astropy/coordinates/tests/accuracy/generate_spectralcoord_ref.py
${PYSITELIB}/astropy/coordinates/tests/accuracy/generate_spectralcoord_ref.pyc
${PYSITELIB}/astropy/coordinates/tests/accuracy/generate_spectralcoord_ref.pyo
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_altaz_icrs.py
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_altaz_icrs.pyc
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_altaz_icrs.pyo
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_ecliptic.py
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_ecliptic.pyc
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_ecliptic.pyo
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_fk4_no_e_fk4.py
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_fk4_no_e_fk4.pyc
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_fk4_no_e_fk4.pyo
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_fk4_no_e_fk5.py
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_fk4_no_e_fk5.pyc
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_fk4_no_e_fk5.pyo
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_galactic_fk4.py
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_galactic_fk4.pyc
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_galactic_fk4.pyo
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_icrs_fk5.py
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_icrs_fk5.pyc
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_icrs_fk5.pyo
${PYSITELIB}/astropy/coordinates/tests/test_angle_generators.py
${PYSITELIB}/astropy/coordinates/tests/test_angle_generators.pyc
${PYSITELIB}/astropy/coordinates/tests/test_angle_generators.pyo
${PYSITELIB}/astropy/coordinates/tests/test_angles.py
${PYSITELIB}/astropy/coordinates/tests/test_angles.pyc
${PYSITELIB}/astropy/coordinates/tests/test_angles.pyo
${PYSITELIB}/astropy/coordinates/tests/test_angular_separation.py
${PYSITELIB}/astropy/coordinates/tests/test_angular_separation.pyc
${PYSITELIB}/astropy/coordinates/tests/test_angular_separation.pyo
${PYSITELIB}/astropy/coordinates/tests/test_api_ape5.py
${PYSITELIB}/astropy/coordinates/tests/test_api_ape5.pyc
${PYSITELIB}/astropy/coordinates/tests/test_api_ape5.pyo
${PYSITELIB}/astropy/coordinates/tests/test_arrays.py
${PYSITELIB}/astropy/coordinates/tests/test_arrays.pyc
${PYSITELIB}/astropy/coordinates/tests/test_arrays.pyo
${PYSITELIB}/astropy/coordinates/tests/test_atc_replacements.py
${PYSITELIB}/astropy/coordinates/tests/test_atc_replacements.pyc
${PYSITELIB}/astropy/coordinates/tests/test_atc_replacements.pyo
${PYSITELIB}/astropy/coordinates/tests/test_celestial_transformations.py
${PYSITELIB}/astropy/coordinates/tests/test_celestial_transformations.pyc
${PYSITELIB}/astropy/coordinates/tests/test_celestial_transformations.pyo
${PYSITELIB}/astropy/coordinates/tests/test_distance.py
${PYSITELIB}/astropy/coordinates/tests/test_distance.pyc
${PYSITELIB}/astropy/coordinates/tests/test_distance.pyo
${PYSITELIB}/astropy/coordinates/tests/test_earth.py
${PYSITELIB}/astropy/coordinates/tests/test_earth.pyc
${PYSITELIB}/astropy/coordinates/tests/test_earth.pyo
${PYSITELIB}/astropy/coordinates/tests/test_erfa_astrom.py
${PYSITELIB}/astropy/coordinates/tests/test_erfa_astrom.pyc
${PYSITELIB}/astropy/coordinates/tests/test_erfa_astrom.pyo
${PYSITELIB}/astropy/coordinates/tests/test_finite_difference_velocities.py
${PYSITELIB}/astropy/coordinates/tests/test_finite_difference_velocities.pyc
${PYSITELIB}/astropy/coordinates/tests/test_finite_difference_velocities.pyo
${PYSITELIB}/astropy/coordinates/tests/test_formatting.py
${PYSITELIB}/astropy/coordinates/tests/test_formatting.pyc
${PYSITELIB}/astropy/coordinates/tests/test_formatting.pyo
${PYSITELIB}/astropy/coordinates/tests/test_frames.py
${PYSITELIB}/astropy/coordinates/tests/test_frames.pyc
${PYSITELIB}/astropy/coordinates/tests/test_frames.pyo
${PYSITELIB}/astropy/coordinates/tests/test_frames_with_velocity.py
${PYSITELIB}/astropy/coordinates/tests/test_frames_with_velocity.pyc
${PYSITELIB}/astropy/coordinates/tests/test_frames_with_velocity.pyo
${PYSITELIB}/astropy/coordinates/tests/test_funcs.py
${PYSITELIB}/astropy/coordinates/tests/test_funcs.pyc
${PYSITELIB}/astropy/coordinates/tests/test_funcs.pyo
${PYSITELIB}/astropy/coordinates/tests/test_geodetic_representations.py
${PYSITELIB}/astropy/coordinates/tests/test_geodetic_representations.pyc
${PYSITELIB}/astropy/coordinates/tests/test_geodetic_representations.pyo
${PYSITELIB}/astropy/coordinates/tests/test_iau_fullstack.py
${PYSITELIB}/astropy/coordinates/tests/test_iau_fullstack.pyc
${PYSITELIB}/astropy/coordinates/tests/test_iau_fullstack.pyo
${PYSITELIB}/astropy/coordinates/tests/test_icrs_observed_transformations.py
${PYSITELIB}/astropy/coordinates/tests/test_icrs_observed_transformations.pyc
${PYSITELIB}/astropy/coordinates/tests/test_icrs_observed_transformations.pyo
${PYSITELIB}/astropy/coordinates/tests/test_intermediate_transformations.py
${PYSITELIB}/astropy/coordinates/tests/test_intermediate_transformations.pyc
${PYSITELIB}/astropy/coordinates/tests/test_intermediate_transformations.pyo
${PYSITELIB}/astropy/coordinates/tests/test_matching.py
${PYSITELIB}/astropy/coordinates/tests/test_matching.pyc
${PYSITELIB}/astropy/coordinates/tests/test_matching.pyo
${PYSITELIB}/astropy/coordinates/tests/test_matrix_utilities.py
${PYSITELIB}/astropy/coordinates/tests/test_matrix_utilities.pyc
${PYSITELIB}/astropy/coordinates/tests/test_matrix_utilities.pyo
${PYSITELIB}/astropy/coordinates/tests/test_name_resolve.py
${PYSITELIB}/astropy/coordinates/tests/test_name_resolve.pyc
${PYSITELIB}/astropy/coordinates/tests/test_name_resolve.pyo
${PYSITELIB}/astropy/coordinates/tests/test_pickle.py
${PYSITELIB}/astropy/coordinates/tests/test_pickle.pyc
${PYSITELIB}/astropy/coordinates/tests/test_pickle.pyo
${PYSITELIB}/astropy/coordinates/tests/test_regression.py
${PYSITELIB}/astropy/coordinates/tests/test_regression.pyc
${PYSITELIB}/astropy/coordinates/tests/test_regression.pyo
${PYSITELIB}/astropy/coordinates/tests/test_representation.py
${PYSITELIB}/astropy/coordinates/tests/test_representation.pyc
${PYSITELIB}/astropy/coordinates/tests/test_representation.pyo
${PYSITELIB}/astropy/coordinates/tests/test_representation_arithmetic.py
${PYSITELIB}/astropy/coordinates/tests/test_representation_arithmetic.pyc
${PYSITELIB}/astropy/coordinates/tests/test_representation_arithmetic.pyo
${PYSITELIB}/astropy/coordinates/tests/test_representation_methods.py
${PYSITELIB}/astropy/coordinates/tests/test_representation_methods.pyc
${PYSITELIB}/astropy/coordinates/tests/test_representation_methods.pyo
${PYSITELIB}/astropy/coordinates/tests/test_shape_manipulation.py
${PYSITELIB}/astropy/coordinates/tests/test_shape_manipulation.pyc
${PYSITELIB}/astropy/coordinates/tests/test_shape_manipulation.pyo
${PYSITELIB}/astropy/coordinates/tests/test_sites.py
${PYSITELIB}/astropy/coordinates/tests/test_sites.pyc
${PYSITELIB}/astropy/coordinates/tests/test_sites.pyo
${PYSITELIB}/astropy/coordinates/tests/test_sky_coord.py
${PYSITELIB}/astropy/coordinates/tests/test_sky_coord.pyc
${PYSITELIB}/astropy/coordinates/tests/test_sky_coord.pyo
${PYSITELIB}/astropy/coordinates/tests/test_sky_coord_velocities.py
${PYSITELIB}/astropy/coordinates/tests/test_sky_coord_velocities.pyc
${PYSITELIB}/astropy/coordinates/tests/test_sky_coord_velocities.pyo
${PYSITELIB}/astropy/coordinates/tests/test_skyoffset_transformations.py
${PYSITELIB}/astropy/coordinates/tests/test_skyoffset_transformations.pyc
${PYSITELIB}/astropy/coordinates/tests/test_skyoffset_transformations.pyo
${PYSITELIB}/astropy/coordinates/tests/test_solar_system.py
${PYSITELIB}/astropy/coordinates/tests/test_solar_system.pyc
${PYSITELIB}/astropy/coordinates/tests/test_solar_system.pyo
${PYSITELIB}/astropy/coordinates/tests/test_spectral_coordinate.py
${PYSITELIB}/astropy/coordinates/tests/test_spectral_coordinate.pyc
${PYSITELIB}/astropy/coordinates/tests/test_spectral_coordinate.pyo
${PYSITELIB}/astropy/coordinates/tests/test_spectral_quantity.py
${PYSITELIB}/astropy/coordinates/tests/test_spectral_quantity.pyc
${PYSITELIB}/astropy/coordinates/tests/test_spectral_quantity.pyo
${PYSITELIB}/astropy/coordinates/tests/test_transformations.py
${PYSITELIB}/astropy/coordinates/tests/test_transformations.pyc
${PYSITELIB}/astropy/coordinates/tests/test_transformations.pyo
${PYSITELIB}/astropy/coordinates/tests/test_unit_representation.py
${PYSITELIB}/astropy/coordinates/tests/test_unit_representation.pyc
${PYSITELIB}/astropy/coordinates/tests/test_unit_representation.pyo
${PYSITELIB}/astropy/coordinates/tests/test_utils.py
${PYSITELIB}/astropy/coordinates/tests/test_utils.pyc
${PYSITELIB}/astropy/coordinates/tests/test_utils.pyo
${PYSITELIB}/astropy/coordinates/tests/test_velocity_corrs.py
${PYSITELIB}/astropy/coordinates/tests/test_velocity_corrs.pyc
${PYSITELIB}/astropy/coordinates/tests/test_velocity_corrs.pyo
${PYSITELIB}/astropy/coordinates/transformations.py
${PYSITELIB}/astropy/coordinates/transformations.pyc
${PYSITELIB}/astropy/coordinates/transformations.pyo
${PYSITELIB}/astropy/cosmology/__init__.py
${PYSITELIB}/astropy/cosmology/__init__.pyc
${PYSITELIB}/astropy/cosmology/__init__.pyo
${PYSITELIB}/astropy/cosmology/connect.py
${PYSITELIB}/astropy/cosmology/connect.pyc
${PYSITELIB}/astropy/cosmology/connect.pyo
${PYSITELIB}/astropy/cosmology/core.py
${PYSITELIB}/astropy/cosmology/core.pyc
${PYSITELIB}/astropy/cosmology/core.pyo
${PYSITELIB}/astropy/cosmology/flrw.py
${PYSITELIB}/astropy/cosmology/flrw.pyc
${PYSITELIB}/astropy/cosmology/flrw.pyo
${PYSITELIB}/astropy/cosmology/funcs.py
${PYSITELIB}/astropy/cosmology/funcs.pyc
${PYSITELIB}/astropy/cosmology/funcs.pyo
${PYSITELIB}/astropy/cosmology/io/__init__.py
${PYSITELIB}/astropy/cosmology/io/__init__.pyc
${PYSITELIB}/astropy/cosmology/io/__init__.pyo
${PYSITELIB}/astropy/cosmology/io/ecsv.py
${PYSITELIB}/astropy/cosmology/io/ecsv.pyc
${PYSITELIB}/astropy/cosmology/io/ecsv.pyo
${PYSITELIB}/astropy/cosmology/io/mapping.py
${PYSITELIB}/astropy/cosmology/io/mapping.pyc
${PYSITELIB}/astropy/cosmology/io/mapping.pyo
${PYSITELIB}/astropy/cosmology/io/model.py
${PYSITELIB}/astropy/cosmology/io/model.pyc
${PYSITELIB}/astropy/cosmology/io/model.pyo
${PYSITELIB}/astropy/cosmology/io/table.py
${PYSITELIB}/astropy/cosmology/io/table.pyc
${PYSITELIB}/astropy/cosmology/io/table.pyo
${PYSITELIB}/astropy/cosmology/io/tests/__init__.py
${PYSITELIB}/astropy/cosmology/io/tests/__init__.pyc
${PYSITELIB}/astropy/cosmology/io/tests/__init__.pyo
${PYSITELIB}/astropy/cosmology/io/tests/base.py
${PYSITELIB}/astropy/cosmology/io/tests/base.pyc
${PYSITELIB}/astropy/cosmology/io/tests/base.pyo
${PYSITELIB}/astropy/cosmology/io/tests/test_ecsv.py
${PYSITELIB}/astropy/cosmology/io/tests/test_ecsv.pyc
${PYSITELIB}/astropy/cosmology/io/tests/test_ecsv.pyo
${PYSITELIB}/astropy/cosmology/io/tests/test_mapping.py
${PYSITELIB}/astropy/cosmology/io/tests/test_mapping.pyc
${PYSITELIB}/astropy/cosmology/io/tests/test_mapping.pyo
${PYSITELIB}/astropy/cosmology/io/tests/test_model.py
${PYSITELIB}/astropy/cosmology/io/tests/test_model.pyc
${PYSITELIB}/astropy/cosmology/io/tests/test_model.pyo
${PYSITELIB}/astropy/cosmology/io/tests/test_table.py
${PYSITELIB}/astropy/cosmology/io/tests/test_table.pyc
${PYSITELIB}/astropy/cosmology/io/tests/test_table.pyo
${PYSITELIB}/astropy/cosmology/parameter.py
${PYSITELIB}/astropy/cosmology/parameter.pyc
${PYSITELIB}/astropy/cosmology/parameter.pyo
${PYSITELIB}/astropy/cosmology/parameters.py
${PYSITELIB}/astropy/cosmology/parameters.pyc
${PYSITELIB}/astropy/cosmology/parameters.pyo
${PYSITELIB}/astropy/cosmology/realizations.py
${PYSITELIB}/astropy/cosmology/realizations.pyc
${PYSITELIB}/astropy/cosmology/realizations.pyo
${PYSITELIB}/astropy/cosmology/scalar_inv_efuncs.so
${PYSITELIB}/astropy/cosmology/tests/__init__.py
${PYSITELIB}/astropy/cosmology/tests/__init__.pyc
${PYSITELIB}/astropy/cosmology/tests/__init__.pyo
${PYSITELIB}/astropy/cosmology/tests/conftest.py
${PYSITELIB}/astropy/cosmology/tests/conftest.pyc
${PYSITELIB}/astropy/cosmology/tests/conftest.pyo
${PYSITELIB}/astropy/cosmology/tests/mypackage/__init__.py
${PYSITELIB}/astropy/cosmology/tests/mypackage/__init__.pyc
${PYSITELIB}/astropy/cosmology/tests/mypackage/__init__.pyo
${PYSITELIB}/astropy/cosmology/tests/mypackage/cosmology.py
${PYSITELIB}/astropy/cosmology/tests/mypackage/cosmology.pyc
${PYSITELIB}/astropy/cosmology/tests/mypackage/cosmology.pyo
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/__init__.py
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/__init__.pyc
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/__init__.pyo
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/astropy_convert.py
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/astropy_convert.pyc
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/astropy_convert.pyo
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/astropy_io.py
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/astropy_io.pyc
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/astropy_io.pyo
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/core.py
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/core.pyc
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/core.pyo
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/__init__.py
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/__init__.pyc
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/__init__.pyo
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/conftest.py
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/conftest.pyc
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/conftest.pyo
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/test_astropy_convert.py
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/test_astropy_convert.pyc
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/test_astropy_convert.pyo
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/test_astropy_io.py
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/test_astropy_io.pyc
${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/test_astropy_io.pyo
${PYSITELIB}/astropy/cosmology/tests/test_connect.py
${PYSITELIB}/astropy/cosmology/tests/test_connect.pyc
${PYSITELIB}/astropy/cosmology/tests/test_connect.pyo
${PYSITELIB}/astropy/cosmology/tests/test_core.py
${PYSITELIB}/astropy/cosmology/tests/test_core.pyc
${PYSITELIB}/astropy/cosmology/tests/test_core.pyo
${PYSITELIB}/astropy/cosmology/tests/test_cosmology.py
${PYSITELIB}/astropy/cosmology/tests/test_cosmology.pyc
${PYSITELIB}/astropy/cosmology/tests/test_cosmology.pyo
${PYSITELIB}/astropy/cosmology/tests/test_flrw.py
${PYSITELIB}/astropy/cosmology/tests/test_flrw.pyc
${PYSITELIB}/astropy/cosmology/tests/test_flrw.pyo
${PYSITELIB}/astropy/cosmology/tests/test_funcs.py
${PYSITELIB}/astropy/cosmology/tests/test_funcs.pyc
${PYSITELIB}/astropy/cosmology/tests/test_funcs.pyo
${PYSITELIB}/astropy/cosmology/tests/test_parameter.py
${PYSITELIB}/astropy/cosmology/tests/test_parameter.pyc
${PYSITELIB}/astropy/cosmology/tests/test_parameter.pyo
${PYSITELIB}/astropy/cosmology/tests/test_pickle.py
${PYSITELIB}/astropy/cosmology/tests/test_pickle.pyc
${PYSITELIB}/astropy/cosmology/tests/test_pickle.pyo
${PYSITELIB}/astropy/cosmology/tests/test_realizations.py
${PYSITELIB}/astropy/cosmology/tests/test_realizations.pyc
${PYSITELIB}/astropy/cosmology/tests/test_realizations.pyo
${PYSITELIB}/astropy/cosmology/tests/test_units.py
${PYSITELIB}/astropy/cosmology/tests/test_units.pyc
${PYSITELIB}/astropy/cosmology/tests/test_units.pyo
${PYSITELIB}/astropy/cosmology/tests/test_utils.py
${PYSITELIB}/astropy/cosmology/tests/test_utils.pyc
${PYSITELIB}/astropy/cosmology/tests/test_utils.pyo
${PYSITELIB}/astropy/cosmology/units.py
${PYSITELIB}/astropy/cosmology/units.pyc
${PYSITELIB}/astropy/cosmology/units.pyo
${PYSITELIB}/astropy/cosmology/utils.py
${PYSITELIB}/astropy/cosmology/utils.pyc
${PYSITELIB}/astropy/cosmology/utils.pyo
${PYSITELIB}/astropy/extern/__init__.py
${PYSITELIB}/astropy/extern/__init__.pyc
${PYSITELIB}/astropy/extern/__init__.pyo
${PYSITELIB}/astropy/extern/_strptime.py
${PYSITELIB}/astropy/extern/_strptime.pyc
${PYSITELIB}/astropy/extern/_strptime.pyo
${PYSITELIB}/astropy/extern/configobj/__init__.py
${PYSITELIB}/astropy/extern/configobj/__init__.pyc
${PYSITELIB}/astropy/extern/configobj/__init__.pyo
${PYSITELIB}/astropy/extern/configobj/configobj.py
${PYSITELIB}/astropy/extern/configobj/configobj.pyc
${PYSITELIB}/astropy/extern/configobj/configobj.pyo
${PYSITELIB}/astropy/extern/configobj/validate.py
${PYSITELIB}/astropy/extern/configobj/validate.pyc
${PYSITELIB}/astropy/extern/configobj/validate.pyo
${PYSITELIB}/astropy/extern/jquery/__init__.py
${PYSITELIB}/astropy/extern/jquery/__init__.pyc
${PYSITELIB}/astropy/extern/jquery/__init__.pyo
${PYSITELIB}/astropy/extern/jquery/data/css/jquery.dataTables.css
${PYSITELIB}/astropy/extern/jquery/data/js/jquery-3.1.1.js
${PYSITELIB}/astropy/extern/jquery/data/js/jquery-3.1.1.min.js
${PYSITELIB}/astropy/extern/jquery/data/js/jquery.dataTables.js
${PYSITELIB}/astropy/extern/jquery/data/js/jquery.dataTables.min.js
${PYSITELIB}/astropy/extern/ply/__init__.py
${PYSITELIB}/astropy/extern/ply/__init__.pyc
${PYSITELIB}/astropy/extern/ply/__init__.pyo
${PYSITELIB}/astropy/extern/ply/cpp.py
${PYSITELIB}/astropy/extern/ply/cpp.pyc
${PYSITELIB}/astropy/extern/ply/cpp.pyo
${PYSITELIB}/astropy/extern/ply/ctokens.py
${PYSITELIB}/astropy/extern/ply/ctokens.pyc
${PYSITELIB}/astropy/extern/ply/ctokens.pyo
${PYSITELIB}/astropy/extern/ply/lex.py
${PYSITELIB}/astropy/extern/ply/lex.pyc
${PYSITELIB}/astropy/extern/ply/lex.pyo
${PYSITELIB}/astropy/extern/ply/yacc.py
${PYSITELIB}/astropy/extern/ply/yacc.pyc
${PYSITELIB}/astropy/extern/ply/yacc.pyo
${PYSITELIB}/astropy/extern/ply/ygen.py
${PYSITELIB}/astropy/extern/ply/ygen.pyc
${PYSITELIB}/astropy/extern/ply/ygen.pyo
${PYSITELIB}/astropy/io/__init__.py
${PYSITELIB}/astropy/io/__init__.pyc
${PYSITELIB}/astropy/io/__init__.pyo
${PYSITELIB}/astropy/io/ascii/__init__.py
${PYSITELIB}/astropy/io/ascii/__init__.pyc
${PYSITELIB}/astropy/io/ascii/__init__.pyo
${PYSITELIB}/astropy/io/ascii/basic.py
${PYSITELIB}/astropy/io/ascii/basic.pyc
${PYSITELIB}/astropy/io/ascii/basic.pyo
${PYSITELIB}/astropy/io/ascii/cds.py
${PYSITELIB}/astropy/io/ascii/cds.pyc
${PYSITELIB}/astropy/io/ascii/cds.pyo
${PYSITELIB}/astropy/io/ascii/connect.py
${PYSITELIB}/astropy/io/ascii/connect.pyc
${PYSITELIB}/astropy/io/ascii/connect.pyo
${PYSITELIB}/astropy/io/ascii/core.py
${PYSITELIB}/astropy/io/ascii/core.pyc
${PYSITELIB}/astropy/io/ascii/core.pyo
${PYSITELIB}/astropy/io/ascii/cparser.so
${PYSITELIB}/astropy/io/ascii/daophot.py
${PYSITELIB}/astropy/io/ascii/daophot.pyc
${PYSITELIB}/astropy/io/ascii/daophot.pyo
${PYSITELIB}/astropy/io/ascii/docs.py
${PYSITELIB}/astropy/io/ascii/docs.pyc
${PYSITELIB}/astropy/io/ascii/docs.pyo
${PYSITELIB}/astropy/io/ascii/ecsv.py
${PYSITELIB}/astropy/io/ascii/ecsv.pyc
${PYSITELIB}/astropy/io/ascii/ecsv.pyo
${PYSITELIB}/astropy/io/ascii/fastbasic.py
${PYSITELIB}/astropy/io/ascii/fastbasic.pyc
${PYSITELIB}/astropy/io/ascii/fastbasic.pyo
${PYSITELIB}/astropy/io/ascii/fixedwidth.py
${PYSITELIB}/astropy/io/ascii/fixedwidth.pyc
${PYSITELIB}/astropy/io/ascii/fixedwidth.pyo
${PYSITELIB}/astropy/io/ascii/html.py
${PYSITELIB}/astropy/io/ascii/html.pyc
${PYSITELIB}/astropy/io/ascii/html.pyo
${PYSITELIB}/astropy/io/ascii/ipac.py
${PYSITELIB}/astropy/io/ascii/ipac.pyc
${PYSITELIB}/astropy/io/ascii/ipac.pyo
${PYSITELIB}/astropy/io/ascii/latex.py
${PYSITELIB}/astropy/io/ascii/latex.pyc
${PYSITELIB}/astropy/io/ascii/latex.pyo
${PYSITELIB}/astropy/io/ascii/misc.py
${PYSITELIB}/astropy/io/ascii/misc.pyc
${PYSITELIB}/astropy/io/ascii/misc.pyo
${PYSITELIB}/astropy/io/ascii/mrt.py
${PYSITELIB}/astropy/io/ascii/mrt.pyc
${PYSITELIB}/astropy/io/ascii/mrt.pyo
${PYSITELIB}/astropy/io/ascii/qdp.py
${PYSITELIB}/astropy/io/ascii/qdp.pyc
${PYSITELIB}/astropy/io/ascii/qdp.pyo
${PYSITELIB}/astropy/io/ascii/rst.py
${PYSITELIB}/astropy/io/ascii/rst.pyc
${PYSITELIB}/astropy/io/ascii/rst.pyo
${PYSITELIB}/astropy/io/ascii/setup_package.py
${PYSITELIB}/astropy/io/ascii/setup_package.pyc
${PYSITELIB}/astropy/io/ascii/setup_package.pyo
${PYSITELIB}/astropy/io/ascii/sextractor.py
${PYSITELIB}/astropy/io/ascii/sextractor.pyc
${PYSITELIB}/astropy/io/ascii/sextractor.pyo
${PYSITELIB}/astropy/io/ascii/tests/__init__.py
${PYSITELIB}/astropy/io/ascii/tests/__init__.pyc
${PYSITELIB}/astropy/io/ascii/tests/__init__.pyo
${PYSITELIB}/astropy/io/ascii/tests/common.py
${PYSITELIB}/astropy/io/ascii/tests/common.pyc
${PYSITELIB}/astropy/io/ascii/tests/common.pyo
${PYSITELIB}/astropy/io/ascii/tests/data/apostrophe.rdb
${PYSITELIB}/astropy/io/ascii/tests/data/apostrophe.tab
${PYSITELIB}/astropy/io/ascii/tests/data/bad.txt
${PYSITELIB}/astropy/io/ascii/tests/data/bars_at_ends.txt
${PYSITELIB}/astropy/io/ascii/tests/data/cds.dat
${PYSITELIB}/astropy/io/ascii/tests/data/cds/description/ReadMe
${PYSITELIB}/astropy/io/ascii/tests/data/cds/description/table.dat
${PYSITELIB}/astropy/io/ascii/tests/data/cds/glob/ReadMe
${PYSITELIB}/astropy/io/ascii/tests/data/cds/glob/lmxbrefs.dat
${PYSITELIB}/astropy/io/ascii/tests/data/cds/multi/ReadMe
${PYSITELIB}/astropy/io/ascii/tests/data/cds/multi/lhs2065.dat
${PYSITELIB}/astropy/io/ascii/tests/data/cds/multi/lp944-20.dat
${PYSITELIB}/astropy/io/ascii/tests/data/cds/null/ReadMe
${PYSITELIB}/astropy/io/ascii/tests/data/cds/null/ReadMe1
${PYSITELIB}/astropy/io/ascii/tests/data/cds/null/table.dat
${PYSITELIB}/astropy/io/ascii/tests/data/cds2.dat
${PYSITELIB}/astropy/io/ascii/tests/data/cdsFunctional.dat
${PYSITELIB}/astropy/io/ascii/tests/data/cdsFunctional2.dat
${PYSITELIB}/astropy/io/ascii/tests/data/cds_malformed.dat
${PYSITELIB}/astropy/io/ascii/tests/data/commented_header.dat
${PYSITELIB}/astropy/io/ascii/tests/data/commented_header2.dat
${PYSITELIB}/astropy/io/ascii/tests/data/conf_py.txt
${PYSITELIB}/astropy/io/ascii/tests/data/continuation.dat
${PYSITELIB}/astropy/io/ascii/tests/data/daophot.dat
${PYSITELIB}/astropy/io/ascii/tests/data/daophot.dat.gz
${PYSITELIB}/astropy/io/ascii/tests/data/daophot2.dat
${PYSITELIB}/astropy/io/ascii/tests/data/daophot3.dat
${PYSITELIB}/astropy/io/ascii/tests/data/daophot4.dat
${PYSITELIB}/astropy/io/ascii/tests/data/fill_values.txt
${PYSITELIB}/astropy/io/ascii/tests/data/fixed_width_2_line.txt
${PYSITELIB}/astropy/io/ascii/tests/data/html.html
${PYSITELIB}/astropy/io/ascii/tests/data/html2.html
${PYSITELIB}/astropy/io/ascii/tests/data/ipac.dat
${PYSITELIB}/astropy/io/ascii/tests/data/ipac.dat.bz2
${PYSITELIB}/astropy/io/ascii/tests/data/ipac.dat.xz
${PYSITELIB}/astropy/io/ascii/tests/data/latex1.tex
${PYSITELIB}/astropy/io/ascii/tests/data/latex1.tex.gz
${PYSITELIB}/astropy/io/ascii/tests/data/latex2.tex
${PYSITELIB}/astropy/io/ascii/tests/data/latex3.tex
${PYSITELIB}/astropy/io/ascii/tests/data/nls1_stackinfo.dbout
${PYSITELIB}/astropy/io/ascii/tests/data/no_data_cds.dat
${PYSITELIB}/astropy/io/ascii/tests/data/no_data_daophot.dat
${PYSITELIB}/astropy/io/ascii/tests/data/no_data_ipac.dat
${PYSITELIB}/astropy/io/ascii/tests/data/no_data_sextractor.dat
${PYSITELIB}/astropy/io/ascii/tests/data/no_data_with_header.dat
${PYSITELIB}/astropy/io/ascii/tests/data/no_data_without_header.dat
${PYSITELIB}/astropy/io/ascii/tests/data/sextractor.dat
${PYSITELIB}/astropy/io/ascii/tests/data/sextractor2.dat
${PYSITELIB}/astropy/io/ascii/tests/data/sextractor3.dat
${PYSITELIB}/astropy/io/ascii/tests/data/short.rdb
${PYSITELIB}/astropy/io/ascii/tests/data/short.rdb.bz2
${PYSITELIB}/astropy/io/ascii/tests/data/short.rdb.gz
${PYSITELIB}/astropy/io/ascii/tests/data/short.rdb.xz
${PYSITELIB}/astropy/io/ascii/tests/data/short.tab
${PYSITELIB}/astropy/io/ascii/tests/data/simple.txt
${PYSITELIB}/astropy/io/ascii/tests/data/simple2.txt
${PYSITELIB}/astropy/io/ascii/tests/data/simple3.txt
${PYSITELIB}/astropy/io/ascii/tests/data/simple4.txt
${PYSITELIB}/astropy/io/ascii/tests/data/simple5.txt
${PYSITELIB}/astropy/io/ascii/tests/data/simple_csv.csv
${PYSITELIB}/astropy/io/ascii/tests/data/simple_csv_missing.csv
${PYSITELIB}/astropy/io/ascii/tests/data/space_delim_blank_lines.txt
${PYSITELIB}/astropy/io/ascii/tests/data/space_delim_no_header.dat
${PYSITELIB}/astropy/io/ascii/tests/data/space_delim_no_names.dat
${PYSITELIB}/astropy/io/ascii/tests/data/subtypes.ecsv
${PYSITELIB}/astropy/io/ascii/tests/data/test4.dat
${PYSITELIB}/astropy/io/ascii/tests/data/test5.dat
${PYSITELIB}/astropy/io/ascii/tests/data/vizier/ReadMe
${PYSITELIB}/astropy/io/ascii/tests/data/vizier/table1.dat
${PYSITELIB}/astropy/io/ascii/tests/data/vizier/table5.dat
${PYSITELIB}/astropy/io/ascii/tests/data/vots_spec.dat
${PYSITELIB}/astropy/io/ascii/tests/data/whitespace.dat
${PYSITELIB}/astropy/io/ascii/tests/test_c_reader.py
${PYSITELIB}/astropy/io/ascii/tests/test_c_reader.pyc
${PYSITELIB}/astropy/io/ascii/tests/test_c_reader.pyo
${PYSITELIB}/astropy/io/ascii/tests/test_cds.py
${PYSITELIB}/astropy/io/ascii/tests/test_cds.pyc
${PYSITELIB}/astropy/io/ascii/tests/test_cds.pyo
${PYSITELIB}/astropy/io/ascii/tests/test_cds_header_from_readme.py
${PYSITELIB}/astropy/io/ascii/tests/test_cds_header_from_readme.pyc
${PYSITELIB}/astropy/io/ascii/tests/test_cds_header_from_readme.pyo
${PYSITELIB}/astropy/io/ascii/tests/test_compressed.py
${PYSITELIB}/astropy/io/ascii/tests/test_compressed.pyc
${PYSITELIB}/astropy/io/ascii/tests/test_compressed.pyo
${PYSITELIB}/astropy/io/ascii/tests/test_connect.py
${PYSITELIB}/astropy/io/ascii/tests/test_connect.pyc
${PYSITELIB}/astropy/io/ascii/tests/test_connect.pyo
${PYSITELIB}/astropy/io/ascii/tests/test_ecsv.py
${PYSITELIB}/astropy/io/ascii/tests/test_ecsv.pyc
${PYSITELIB}/astropy/io/ascii/tests/test_ecsv.pyo
${PYSITELIB}/astropy/io/ascii/tests/test_fixedwidth.py
${PYSITELIB}/astropy/io/ascii/tests/test_fixedwidth.pyc
${PYSITELIB}/astropy/io/ascii/tests/test_fixedwidth.pyo
${PYSITELIB}/astropy/io/ascii/tests/test_html.py
${PYSITELIB}/astropy/io/ascii/tests/test_html.pyc
${PYSITELIB}/astropy/io/ascii/tests/test_html.pyo
${PYSITELIB}/astropy/io/ascii/tests/test_ipac_definitions.py
${PYSITELIB}/astropy/io/ascii/tests/test_ipac_definitions.pyc
${PYSITELIB}/astropy/io/ascii/tests/test_ipac_definitions.pyo
${PYSITELIB}/astropy/io/ascii/tests/test_qdp.py
${PYSITELIB}/astropy/io/ascii/tests/test_qdp.pyc
${PYSITELIB}/astropy/io/ascii/tests/test_qdp.pyo
${PYSITELIB}/astropy/io/ascii/tests/test_read.py
${PYSITELIB}/astropy/io/ascii/tests/test_read.pyc
${PYSITELIB}/astropy/io/ascii/tests/test_read.pyo
${PYSITELIB}/astropy/io/ascii/tests/test_rst.py
${PYSITELIB}/astropy/io/ascii/tests/test_rst.pyc
${PYSITELIB}/astropy/io/ascii/tests/test_rst.pyo
${PYSITELIB}/astropy/io/ascii/tests/test_types.py
${PYSITELIB}/astropy/io/ascii/tests/test_types.pyc
${PYSITELIB}/astropy/io/ascii/tests/test_types.pyo
${PYSITELIB}/astropy/io/ascii/tests/test_write.py
${PYSITELIB}/astropy/io/ascii/tests/test_write.pyc
${PYSITELIB}/astropy/io/ascii/tests/test_write.pyo
${PYSITELIB}/astropy/io/ascii/ui.py
${PYSITELIB}/astropy/io/ascii/ui.pyc
${PYSITELIB}/astropy/io/ascii/ui.pyo
${PYSITELIB}/astropy/io/fits/__init__.py
${PYSITELIB}/astropy/io/fits/__init__.pyc
${PYSITELIB}/astropy/io/fits/__init__.pyo
${PYSITELIB}/astropy/io/fits/_utils.so
${PYSITELIB}/astropy/io/fits/card.py
${PYSITELIB}/astropy/io/fits/card.pyc
${PYSITELIB}/astropy/io/fits/card.pyo
${PYSITELIB}/astropy/io/fits/column.py
${PYSITELIB}/astropy/io/fits/column.pyc
${PYSITELIB}/astropy/io/fits/column.pyo
${PYSITELIB}/astropy/io/fits/compression.so
${PYSITELIB}/astropy/io/fits/connect.py
${PYSITELIB}/astropy/io/fits/connect.pyc
${PYSITELIB}/astropy/io/fits/connect.pyo
${PYSITELIB}/astropy/io/fits/convenience.py
${PYSITELIB}/astropy/io/fits/convenience.pyc
${PYSITELIB}/astropy/io/fits/convenience.pyo
${PYSITELIB}/astropy/io/fits/diff.py
${PYSITELIB}/astropy/io/fits/diff.pyc
${PYSITELIB}/astropy/io/fits/diff.pyo
${PYSITELIB}/astropy/io/fits/file.py
${PYSITELIB}/astropy/io/fits/file.pyc
${PYSITELIB}/astropy/io/fits/file.pyo
${PYSITELIB}/astropy/io/fits/fitsrec.py
${PYSITELIB}/astropy/io/fits/fitsrec.pyc
${PYSITELIB}/astropy/io/fits/fitsrec.pyo
${PYSITELIB}/astropy/io/fits/fitstime.py
${PYSITELIB}/astropy/io/fits/fitstime.pyc
${PYSITELIB}/astropy/io/fits/fitstime.pyo
${PYSITELIB}/astropy/io/fits/hdu/__init__.py
${PYSITELIB}/astropy/io/fits/hdu/__init__.pyc
${PYSITELIB}/astropy/io/fits/hdu/__init__.pyo
${PYSITELIB}/astropy/io/fits/hdu/base.py
${PYSITELIB}/astropy/io/fits/hdu/base.pyc
${PYSITELIB}/astropy/io/fits/hdu/base.pyo
${PYSITELIB}/astropy/io/fits/hdu/compressed.py
${PYSITELIB}/astropy/io/fits/hdu/compressed.pyc
${PYSITELIB}/astropy/io/fits/hdu/compressed.pyo
${PYSITELIB}/astropy/io/fits/hdu/groups.py
${PYSITELIB}/astropy/io/fits/hdu/groups.pyc
${PYSITELIB}/astropy/io/fits/hdu/groups.pyo
${PYSITELIB}/astropy/io/fits/hdu/hdulist.py
${PYSITELIB}/astropy/io/fits/hdu/hdulist.pyc
${PYSITELIB}/astropy/io/fits/hdu/hdulist.pyo
${PYSITELIB}/astropy/io/fits/hdu/image.py
${PYSITELIB}/astropy/io/fits/hdu/image.pyc
${PYSITELIB}/astropy/io/fits/hdu/image.pyo
${PYSITELIB}/astropy/io/fits/hdu/nonstandard.py
${PYSITELIB}/astropy/io/fits/hdu/nonstandard.pyc
${PYSITELIB}/astropy/io/fits/hdu/nonstandard.pyo
${PYSITELIB}/astropy/io/fits/hdu/streaming.py
${PYSITELIB}/astropy/io/fits/hdu/streaming.pyc
${PYSITELIB}/astropy/io/fits/hdu/streaming.pyo
${PYSITELIB}/astropy/io/fits/hdu/table.py
${PYSITELIB}/astropy/io/fits/hdu/table.pyc
${PYSITELIB}/astropy/io/fits/hdu/table.pyo
${PYSITELIB}/astropy/io/fits/header.py
${PYSITELIB}/astropy/io/fits/header.pyc
${PYSITELIB}/astropy/io/fits/header.pyo
${PYSITELIB}/astropy/io/fits/scripts/__init__.py
${PYSITELIB}/astropy/io/fits/scripts/__init__.pyc
${PYSITELIB}/astropy/io/fits/scripts/__init__.pyo
${PYSITELIB}/astropy/io/fits/scripts/fitscheck.py
${PYSITELIB}/astropy/io/fits/scripts/fitscheck.pyc
${PYSITELIB}/astropy/io/fits/scripts/fitscheck.pyo
${PYSITELIB}/astropy/io/fits/scripts/fitsdiff.py
${PYSITELIB}/astropy/io/fits/scripts/fitsdiff.pyc
${PYSITELIB}/astropy/io/fits/scripts/fitsdiff.pyo
${PYSITELIB}/astropy/io/fits/scripts/fitsheader.py
${PYSITELIB}/astropy/io/fits/scripts/fitsheader.pyc
${PYSITELIB}/astropy/io/fits/scripts/fitsheader.pyo
${PYSITELIB}/astropy/io/fits/scripts/fitsinfo.py
${PYSITELIB}/astropy/io/fits/scripts/fitsinfo.pyc
${PYSITELIB}/astropy/io/fits/scripts/fitsinfo.pyo
${PYSITELIB}/astropy/io/fits/setup_package.py
${PYSITELIB}/astropy/io/fits/setup_package.pyc
${PYSITELIB}/astropy/io/fits/setup_package.pyo
${PYSITELIB}/astropy/io/fits/tests/__init__.py
${PYSITELIB}/astropy/io/fits/tests/__init__.pyc
${PYSITELIB}/astropy/io/fits/tests/__init__.pyo
${PYSITELIB}/astropy/io/fits/tests/data/arange.fits
${PYSITELIB}/astropy/io/fits/tests/data/ascii.fits
${PYSITELIB}/astropy/io/fits/tests/data/ascii_i4-i20.fits
${PYSITELIB}/astropy/io/fits/tests/data/blank.fits
${PYSITELIB}/astropy/io/fits/tests/data/btable.fits
${PYSITELIB}/astropy/io/fits/tests/data/chandra_time.fits
${PYSITELIB}/astropy/io/fits/tests/data/checksum.fits
${PYSITELIB}/astropy/io/fits/tests/data/checksum_false.fits
${PYSITELIB}/astropy/io/fits/tests/data/comp.fits
${PYSITELIB}/astropy/io/fits/tests/data/compressed_float_bzero.fits
${PYSITELIB}/astropy/io/fits/tests/data/compressed_image.fits
${PYSITELIB}/astropy/io/fits/tests/data/double_ext.fits
${PYSITELIB}/astropy/io/fits/tests/data/fixed-1890.fits
${PYSITELIB}/astropy/io/fits/tests/data/group.fits
${PYSITELIB}/astropy/io/fits/tests/data/history_header.fits
${PYSITELIB}/astropy/io/fits/tests/data/invalid/group_invalid.fits
${PYSITELIB}/astropy/io/fits/tests/data/memtest.fits
${PYSITELIB}/astropy/io/fits/tests/data/o4sp040b0_raw.fits
${PYSITELIB}/astropy/io/fits/tests/data/random_groups.fits
${PYSITELIB}/astropy/io/fits/tests/data/scale.fits
${PYSITELIB}/astropy/io/fits/tests/data/stddata.fits
${PYSITELIB}/astropy/io/fits/tests/data/table.fits
${PYSITELIB}/astropy/io/fits/tests/data/tb.fits
${PYSITELIB}/astropy/io/fits/tests/data/tdim.fits
${PYSITELIB}/astropy/io/fits/tests/data/test0.fits
${PYSITELIB}/astropy/io/fits/tests/data/test1.fits
${PYSITELIB}/astropy/io/fits/tests/data/theap-gap.fits
${PYSITELIB}/astropy/io/fits/tests/data/variable_length_table.fits
${PYSITELIB}/astropy/io/fits/tests/data/verify.fits
${PYSITELIB}/astropy/io/fits/tests/data/zerowidth.fits
${PYSITELIB}/astropy/io/fits/tests/test_checksum.py
${PYSITELIB}/astropy/io/fits/tests/test_checksum.pyc
${PYSITELIB}/astropy/io/fits/tests/test_checksum.pyo
${PYSITELIB}/astropy/io/fits/tests/test_compression_failures.py
${PYSITELIB}/astropy/io/fits/tests/test_compression_failures.pyc
${PYSITELIB}/astropy/io/fits/tests/test_compression_failures.pyo
${PYSITELIB}/astropy/io/fits/tests/test_connect.py
${PYSITELIB}/astropy/io/fits/tests/test_connect.pyc
${PYSITELIB}/astropy/io/fits/tests/test_connect.pyo
${PYSITELIB}/astropy/io/fits/tests/test_convenience.py
${PYSITELIB}/astropy/io/fits/tests/test_convenience.pyc
${PYSITELIB}/astropy/io/fits/tests/test_convenience.pyo
${PYSITELIB}/astropy/io/fits/tests/test_core.py
${PYSITELIB}/astropy/io/fits/tests/test_core.pyc
${PYSITELIB}/astropy/io/fits/tests/test_core.pyo
${PYSITELIB}/astropy/io/fits/tests/test_diff.py
${PYSITELIB}/astropy/io/fits/tests/test_diff.pyc
${PYSITELIB}/astropy/io/fits/tests/test_diff.pyo
${PYSITELIB}/astropy/io/fits/tests/test_division.py
${PYSITELIB}/astropy/io/fits/tests/test_division.pyc
${PYSITELIB}/astropy/io/fits/tests/test_division.pyo
${PYSITELIB}/astropy/io/fits/tests/test_fitscheck.py
${PYSITELIB}/astropy/io/fits/tests/test_fitscheck.pyc
${PYSITELIB}/astropy/io/fits/tests/test_fitscheck.pyo
${PYSITELIB}/astropy/io/fits/tests/test_fitsdiff.py
${PYSITELIB}/astropy/io/fits/tests/test_fitsdiff.pyc
${PYSITELIB}/astropy/io/fits/tests/test_fitsdiff.pyo
${PYSITELIB}/astropy/io/fits/tests/test_fitsheader.py
${PYSITELIB}/astropy/io/fits/tests/test_fitsheader.pyc
${PYSITELIB}/astropy/io/fits/tests/test_fitsheader.pyo
${PYSITELIB}/astropy/io/fits/tests/test_fitsinfo.py
${PYSITELIB}/astropy/io/fits/tests/test_fitsinfo.pyc
${PYSITELIB}/astropy/io/fits/tests/test_fitsinfo.pyo
${PYSITELIB}/astropy/io/fits/tests/test_fitstime.py
${PYSITELIB}/astropy/io/fits/tests/test_fitstime.pyc
${PYSITELIB}/astropy/io/fits/tests/test_fitstime.pyo
${PYSITELIB}/astropy/io/fits/tests/test_groups.py
${PYSITELIB}/astropy/io/fits/tests/test_groups.pyc
${PYSITELIB}/astropy/io/fits/tests/test_groups.pyo
${PYSITELIB}/astropy/io/fits/tests/test_hdulist.py
${PYSITELIB}/astropy/io/fits/tests/test_hdulist.pyc
${PYSITELIB}/astropy/io/fits/tests/test_hdulist.pyo
${PYSITELIB}/astropy/io/fits/tests/test_header.py
${PYSITELIB}/astropy/io/fits/tests/test_header.pyc
${PYSITELIB}/astropy/io/fits/tests/test_header.pyo
${PYSITELIB}/astropy/io/fits/tests/test_image.py
${PYSITELIB}/astropy/io/fits/tests/test_image.pyc
${PYSITELIB}/astropy/io/fits/tests/test_image.pyo
${PYSITELIB}/astropy/io/fits/tests/test_image_dask.py
${PYSITELIB}/astropy/io/fits/tests/test_image_dask.pyc
${PYSITELIB}/astropy/io/fits/tests/test_image_dask.pyo
${PYSITELIB}/astropy/io/fits/tests/test_nonstandard.py
${PYSITELIB}/astropy/io/fits/tests/test_nonstandard.pyc
${PYSITELIB}/astropy/io/fits/tests/test_nonstandard.pyo
${PYSITELIB}/astropy/io/fits/tests/test_structured.py
${PYSITELIB}/astropy/io/fits/tests/test_structured.pyc
${PYSITELIB}/astropy/io/fits/tests/test_structured.pyo
${PYSITELIB}/astropy/io/fits/tests/test_table.py
${PYSITELIB}/astropy/io/fits/tests/test_table.pyc
${PYSITELIB}/astropy/io/fits/tests/test_table.pyo
${PYSITELIB}/astropy/io/fits/tests/test_uint.py
${PYSITELIB}/astropy/io/fits/tests/test_uint.pyc
${PYSITELIB}/astropy/io/fits/tests/test_uint.pyo
${PYSITELIB}/astropy/io/fits/tests/test_util.py
${PYSITELIB}/astropy/io/fits/tests/test_util.pyc
${PYSITELIB}/astropy/io/fits/tests/test_util.pyo
${PYSITELIB}/astropy/io/fits/util.py
${PYSITELIB}/astropy/io/fits/util.pyc
${PYSITELIB}/astropy/io/fits/util.pyo
${PYSITELIB}/astropy/io/fits/verify.py
${PYSITELIB}/astropy/io/fits/verify.pyc
${PYSITELIB}/astropy/io/fits/verify.pyo
${PYSITELIB}/astropy/io/misc/__init__.py
${PYSITELIB}/astropy/io/misc/__init__.pyc
${PYSITELIB}/astropy/io/misc/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/conftest.py
${PYSITELIB}/astropy/io/misc/asdf/conftest.pyc
${PYSITELIB}/astropy/io/misc/asdf/conftest.pyo
${PYSITELIB}/astropy/io/misc/asdf/connect.py
${PYSITELIB}/astropy/io/misc/asdf/connect.pyc
${PYSITELIB}/astropy/io/misc/asdf/connect.pyo
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/angle-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/earthlocation-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/frames/baseframe-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/frames/cirs-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/frames/fk4-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/frames/fk4noeterms-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/frames/fk5-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/frames/galactic-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/frames/galactocentric-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/frames/gcrs-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/frames/icrs-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/frames/icrs-1.1.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/frames/itrs-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/frames/precessedgeocentric-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/latitude-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/longitude-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/representation-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/skycoord-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/coordinates/spectralcoord-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/fits/fits-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/table/table-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/time/timedelta-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/transform/units_mapping-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/units/equivalency-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/extension.py
${PYSITELIB}/astropy/io/misc/asdf/extension.pyc
${PYSITELIB}/astropy/io/misc/asdf/extension.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/tags/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/angle.py
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/angle.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/angle.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/earthlocation.py
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/earthlocation.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/earthlocation.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/frames.py
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/frames.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/frames.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/representation.py
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/representation.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/representation.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/skycoord.py
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/skycoord.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/skycoord.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/spectralcoord.py
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/spectralcoord.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/spectralcoord.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_angle.py
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_angle.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_angle.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_earthlocation.py
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_earthlocation.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_earthlocation.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_frames.py
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_frames.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_frames.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_representation.py
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_representation.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_representation.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_skycoord.py
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_skycoord.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_skycoord.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_spectralcoord.py
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_spectralcoord.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/coordinates/tests/test_spectralcoord.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/fits/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/tags/fits/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/fits/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/fits/fits.py
${PYSITELIB}/astropy/io/misc/asdf/tags/fits/fits.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/fits/fits.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/fits/tests/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/tags/fits/tests/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/fits/tests/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/fits/tests/data/complex.fits
${PYSITELIB}/astropy/io/misc/asdf/tags/fits/tests/test_fits.py
${PYSITELIB}/astropy/io/misc/asdf/tags/fits/tests/test_fits.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/fits/tests/test_fits.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/helpers.py
${PYSITELIB}/astropy/io/misc/asdf/tags/helpers.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/helpers.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/table/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/tags/table/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/table/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/table/table.py
${PYSITELIB}/astropy/io/misc/asdf/tags/table/table.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/table/table.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/table/tests/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/tags/table/tests/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/table/tests/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/table/tests/test_table.py
${PYSITELIB}/astropy/io/misc/asdf/tags/table/tests/test_table.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/table/tests/test_table.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/tests/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/tags/tests/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/tests/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/tests/helpers.py
${PYSITELIB}/astropy/io/misc/asdf/tags/tests/helpers.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/tests/helpers.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/time/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/tags/time/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/time/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/time/tests/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/tags/time/tests/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/time/tests/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/time/tests/test_time.py
${PYSITELIB}/astropy/io/misc/asdf/tags/time/tests/test_time.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/time/tests/test_time.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/time/tests/test_timedelta.py
${PYSITELIB}/astropy/io/misc/asdf/tags/time/tests/test_timedelta.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/time/tests/test_timedelta.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/time/time.py
${PYSITELIB}/astropy/io/misc/asdf/tags/time/time.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/time/time.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/time/timedelta.py
${PYSITELIB}/astropy/io/misc/asdf/tags/time/timedelta.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/time/timedelta.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/basic.py
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/basic.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/basic.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/compound.py
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/compound.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/compound.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/functional_models.py
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/functional_models.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/functional_models.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/math.py
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/math.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/math.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/physical_models.py
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/physical_models.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/physical_models.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/polynomial.py
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/polynomial.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/polynomial.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/powerlaws.py
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/powerlaws.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/powerlaws.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/projections.py
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/projections.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/projections.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/tabular.py
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/tabular.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/tabular.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/tests/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/tests/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/tests/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/tests/test_transform.py
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/tests/test_transform.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/tests/test_transform.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/tests/test_units_mapping.py
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/tests/test_units_mapping.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/tests/test_units_mapping.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/equivalency.py
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/equivalency.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/equivalency.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/quantity.py
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/quantity.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/quantity.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/tests/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/tests/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/tests/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/tests/test_equivalency.py
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/tests/test_equivalency.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/tests/test_equivalency.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/tests/test_quantity.py
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/tests/test_quantity.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/tests/test_quantity.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/tests/test_unit.py
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/tests/test_unit.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/tests/test_unit.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/unit.py
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/unit.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/unit/unit.pyo
${PYSITELIB}/astropy/io/misc/asdf/tests/__init__.py
${PYSITELIB}/astropy/io/misc/asdf/tests/__init__.pyc
${PYSITELIB}/astropy/io/misc/asdf/tests/__init__.pyo
${PYSITELIB}/astropy/io/misc/asdf/tests/test_io.py
${PYSITELIB}/astropy/io/misc/asdf/tests/test_io.pyc
${PYSITELIB}/astropy/io/misc/asdf/tests/test_io.pyo
${PYSITELIB}/astropy/io/misc/asdf/types.py
${PYSITELIB}/astropy/io/misc/asdf/types.pyc
${PYSITELIB}/astropy/io/misc/asdf/types.pyo
${PYSITELIB}/astropy/io/misc/connect.py
${PYSITELIB}/astropy/io/misc/connect.pyc
${PYSITELIB}/astropy/io/misc/connect.pyo
${PYSITELIB}/astropy/io/misc/hdf5.py
${PYSITELIB}/astropy/io/misc/hdf5.pyc
${PYSITELIB}/astropy/io/misc/hdf5.pyo
${PYSITELIB}/astropy/io/misc/pandas/__init__.py
${PYSITELIB}/astropy/io/misc/pandas/__init__.pyc
${PYSITELIB}/astropy/io/misc/pandas/__init__.pyo
${PYSITELIB}/astropy/io/misc/pandas/connect.py
${PYSITELIB}/astropy/io/misc/pandas/connect.pyc
${PYSITELIB}/astropy/io/misc/pandas/connect.pyo
${PYSITELIB}/astropy/io/misc/parquet.py
${PYSITELIB}/astropy/io/misc/parquet.pyc
${PYSITELIB}/astropy/io/misc/parquet.pyo
${PYSITELIB}/astropy/io/misc/pickle_helpers.py
${PYSITELIB}/astropy/io/misc/pickle_helpers.pyc
${PYSITELIB}/astropy/io/misc/pickle_helpers.pyo
${PYSITELIB}/astropy/io/misc/tests/__init__.py
${PYSITELIB}/astropy/io/misc/tests/__init__.pyc
${PYSITELIB}/astropy/io/misc/tests/__init__.pyo
${PYSITELIB}/astropy/io/misc/tests/data/old_meta_example.hdf5
${PYSITELIB}/astropy/io/misc/tests/test_hdf5.py
${PYSITELIB}/astropy/io/misc/tests/test_hdf5.pyc
${PYSITELIB}/astropy/io/misc/tests/test_hdf5.pyo
${PYSITELIB}/astropy/io/misc/tests/test_pandas.py
${PYSITELIB}/astropy/io/misc/tests/test_pandas.pyc
${PYSITELIB}/astropy/io/misc/tests/test_pandas.pyo
${PYSITELIB}/astropy/io/misc/tests/test_parquet.py
${PYSITELIB}/astropy/io/misc/tests/test_parquet.pyc
${PYSITELIB}/astropy/io/misc/tests/test_parquet.pyo
${PYSITELIB}/astropy/io/misc/tests/test_pickle_helpers.py
${PYSITELIB}/astropy/io/misc/tests/test_pickle_helpers.pyc
${PYSITELIB}/astropy/io/misc/tests/test_pickle_helpers.pyo
${PYSITELIB}/astropy/io/misc/tests/test_yaml.py
${PYSITELIB}/astropy/io/misc/tests/test_yaml.pyc
${PYSITELIB}/astropy/io/misc/tests/test_yaml.pyo
${PYSITELIB}/astropy/io/misc/yaml.py
${PYSITELIB}/astropy/io/misc/yaml.pyc
${PYSITELIB}/astropy/io/misc/yaml.pyo
${PYSITELIB}/astropy/io/registry/__init__.py
${PYSITELIB}/astropy/io/registry/__init__.pyc
${PYSITELIB}/astropy/io/registry/__init__.pyo
${PYSITELIB}/astropy/io/registry/base.py
${PYSITELIB}/astropy/io/registry/base.pyc
${PYSITELIB}/astropy/io/registry/base.pyo
${PYSITELIB}/astropy/io/registry/compat.py
${PYSITELIB}/astropy/io/registry/compat.pyc
${PYSITELIB}/astropy/io/registry/compat.pyo
${PYSITELIB}/astropy/io/registry/core.py
${PYSITELIB}/astropy/io/registry/core.pyc
${PYSITELIB}/astropy/io/registry/core.pyo
${PYSITELIB}/astropy/io/registry/interface.py
${PYSITELIB}/astropy/io/registry/interface.pyc
${PYSITELIB}/astropy/io/registry/interface.pyo
${PYSITELIB}/astropy/io/registry/tests/__init__.py
${PYSITELIB}/astropy/io/registry/tests/__init__.pyc
${PYSITELIB}/astropy/io/registry/tests/__init__.pyo
${PYSITELIB}/astropy/io/registry/tests/test_registries.py
${PYSITELIB}/astropy/io/registry/tests/test_registries.pyc
${PYSITELIB}/astropy/io/registry/tests/test_registries.pyo
${PYSITELIB}/astropy/io/registry/tests/test_registry_help.py
${PYSITELIB}/astropy/io/registry/tests/test_registry_help.pyc
${PYSITELIB}/astropy/io/registry/tests/test_registry_help.pyo
${PYSITELIB}/astropy/io/tests/__init__.py
${PYSITELIB}/astropy/io/tests/__init__.pyc
${PYSITELIB}/astropy/io/tests/__init__.pyo
${PYSITELIB}/astropy/io/tests/safeio.py
${PYSITELIB}/astropy/io/tests/safeio.pyc
${PYSITELIB}/astropy/io/tests/safeio.pyo
${PYSITELIB}/astropy/io/votable/__init__.py
${PYSITELIB}/astropy/io/votable/__init__.pyc
${PYSITELIB}/astropy/io/votable/__init__.pyo
${PYSITELIB}/astropy/io/votable/connect.py
${PYSITELIB}/astropy/io/votable/connect.pyc
${PYSITELIB}/astropy/io/votable/connect.pyo
${PYSITELIB}/astropy/io/votable/converters.py
${PYSITELIB}/astropy/io/votable/converters.pyc
${PYSITELIB}/astropy/io/votable/converters.pyo
${PYSITELIB}/astropy/io/votable/data/VOTable.dtd
${PYSITELIB}/astropy/io/votable/data/VOTable.v1.1.xsd
${PYSITELIB}/astropy/io/votable/data/VOTable.v1.2.xsd
${PYSITELIB}/astropy/io/votable/data/VOTable.v1.3.xsd
${PYSITELIB}/astropy/io/votable/data/VOTable.v1.4.xsd
${PYSITELIB}/astropy/io/votable/data/ucd1p-words.txt
${PYSITELIB}/astropy/io/votable/exceptions.py
${PYSITELIB}/astropy/io/votable/exceptions.pyc
${PYSITELIB}/astropy/io/votable/exceptions.pyo
${PYSITELIB}/astropy/io/votable/setup_package.py
${PYSITELIB}/astropy/io/votable/setup_package.pyc
${PYSITELIB}/astropy/io/votable/setup_package.pyo
${PYSITELIB}/astropy/io/votable/table.py
${PYSITELIB}/astropy/io/votable/table.pyc
${PYSITELIB}/astropy/io/votable/table.pyo
${PYSITELIB}/astropy/io/votable/tablewriter.so
${PYSITELIB}/astropy/io/votable/tests/__init__.py
${PYSITELIB}/astropy/io/votable/tests/__init__.pyc
${PYSITELIB}/astropy/io/votable/tests/__init__.pyo
${PYSITELIB}/astropy/io/votable/tests/converter_test.py
${PYSITELIB}/astropy/io/votable/tests/converter_test.pyc
${PYSITELIB}/astropy/io/votable/tests/converter_test.pyo
${PYSITELIB}/astropy/io/votable/tests/data/binary2_masked_strings.xml
${PYSITELIB}/astropy/io/votable/tests/data/custom_datatype.xml
${PYSITELIB}/astropy/io/votable/tests/data/empty_table.xml
${PYSITELIB}/astropy/io/votable/tests/data/gemini.xml
${PYSITELIB}/astropy/io/votable/tests/data/irsa-nph-error.xml
${PYSITELIB}/astropy/io/votable/tests/data/irsa-nph-m31.xml
${PYSITELIB}/astropy/io/votable/tests/data/names.xml
${PYSITELIB}/astropy/io/votable/tests/data/no_field_not_empty_table.xml
${PYSITELIB}/astropy/io/votable/tests/data/no_resource.txt
${PYSITELIB}/astropy/io/votable/tests/data/no_resource.xml
${PYSITELIB}/astropy/io/votable/tests/data/nonstandard_units.xml
${PYSITELIB}/astropy/io/votable/tests/data/regression.bin.tabledata.truth.1.1.xml
${PYSITELIB}/astropy/io/votable/tests/data/regression.bin.tabledata.truth.1.3.xml
${PYSITELIB}/astropy/io/votable/tests/data/regression.xml
${PYSITELIB}/astropy/io/votable/tests/data/resource_groups.xml
${PYSITELIB}/astropy/io/votable/tests/data/tb.fits
${PYSITELIB}/astropy/io/votable/tests/data/timesys.xml
${PYSITELIB}/astropy/io/votable/tests/data/timesys_errors.xml
${PYSITELIB}/astropy/io/votable/tests/data/too_many_columns.xml.gz
${PYSITELIB}/astropy/io/votable/tests/data/valid_votable.xml
${PYSITELIB}/astropy/io/votable/tests/data/validation.txt
${PYSITELIB}/astropy/io/votable/tests/exception_test.py
${PYSITELIB}/astropy/io/votable/tests/exception_test.pyc
${PYSITELIB}/astropy/io/votable/tests/exception_test.pyo
${PYSITELIB}/astropy/io/votable/tests/resource_test.py
${PYSITELIB}/astropy/io/votable/tests/resource_test.pyc
${PYSITELIB}/astropy/io/votable/tests/resource_test.pyo
${PYSITELIB}/astropy/io/votable/tests/table_test.py
${PYSITELIB}/astropy/io/votable/tests/table_test.pyc
${PYSITELIB}/astropy/io/votable/tests/table_test.pyo
${PYSITELIB}/astropy/io/votable/tests/tree_test.py
${PYSITELIB}/astropy/io/votable/tests/tree_test.pyc
${PYSITELIB}/astropy/io/votable/tests/tree_test.pyo
${PYSITELIB}/astropy/io/votable/tests/ucd_test.py
${PYSITELIB}/astropy/io/votable/tests/ucd_test.pyc
${PYSITELIB}/astropy/io/votable/tests/ucd_test.pyo
${PYSITELIB}/astropy/io/votable/tests/util_test.py
${PYSITELIB}/astropy/io/votable/tests/util_test.pyc
${PYSITELIB}/astropy/io/votable/tests/util_test.pyo
${PYSITELIB}/astropy/io/votable/tests/vo_test.py
${PYSITELIB}/astropy/io/votable/tests/vo_test.pyc
${PYSITELIB}/astropy/io/votable/tests/vo_test.pyo
${PYSITELIB}/astropy/io/votable/tree.py
${PYSITELIB}/astropy/io/votable/tree.pyc
${PYSITELIB}/astropy/io/votable/tree.pyo
${PYSITELIB}/astropy/io/votable/ucd.py
${PYSITELIB}/astropy/io/votable/ucd.pyc
${PYSITELIB}/astropy/io/votable/ucd.pyo
${PYSITELIB}/astropy/io/votable/util.py
${PYSITELIB}/astropy/io/votable/util.pyc
${PYSITELIB}/astropy/io/votable/util.pyo
${PYSITELIB}/astropy/io/votable/validator/__init__.py
${PYSITELIB}/astropy/io/votable/validator/__init__.pyc
${PYSITELIB}/astropy/io/votable/validator/__init__.pyo
${PYSITELIB}/astropy/io/votable/validator/data/urls/cone.big.dat.gz
${PYSITELIB}/astropy/io/votable/validator/data/urls/cone.broken.dat.gz
${PYSITELIB}/astropy/io/votable/validator/data/urls/cone.good.dat.gz
${PYSITELIB}/astropy/io/votable/validator/data/urls/cone.incorrect.dat.gz
${PYSITELIB}/astropy/io/votable/validator/html.py
${PYSITELIB}/astropy/io/votable/validator/html.pyc
${PYSITELIB}/astropy/io/votable/validator/html.pyo
${PYSITELIB}/astropy/io/votable/validator/main.py
${PYSITELIB}/astropy/io/votable/validator/main.pyc
${PYSITELIB}/astropy/io/votable/validator/main.pyo
${PYSITELIB}/astropy/io/votable/validator/result.py
${PYSITELIB}/astropy/io/votable/validator/result.pyc
${PYSITELIB}/astropy/io/votable/validator/result.pyo
${PYSITELIB}/astropy/io/votable/volint.py
${PYSITELIB}/astropy/io/votable/volint.pyc
${PYSITELIB}/astropy/io/votable/volint.pyo
${PYSITELIB}/astropy/io/votable/xmlutil.py
${PYSITELIB}/astropy/io/votable/xmlutil.pyc
${PYSITELIB}/astropy/io/votable/xmlutil.pyo
${PYSITELIB}/astropy/logger.py
${PYSITELIB}/astropy/logger.pyc
${PYSITELIB}/astropy/logger.pyo
${PYSITELIB}/astropy/modeling/__init__.py
${PYSITELIB}/astropy/modeling/__init__.pyc
${PYSITELIB}/astropy/modeling/__init__.pyo
${PYSITELIB}/astropy/modeling/_projections.so
${PYSITELIB}/astropy/modeling/bounding_box.py
${PYSITELIB}/astropy/modeling/bounding_box.pyc
${PYSITELIB}/astropy/modeling/bounding_box.pyo
${PYSITELIB}/astropy/modeling/convolution.py
${PYSITELIB}/astropy/modeling/convolution.pyc
${PYSITELIB}/astropy/modeling/convolution.pyo
${PYSITELIB}/astropy/modeling/core.py
${PYSITELIB}/astropy/modeling/core.pyc
${PYSITELIB}/astropy/modeling/core.pyo
${PYSITELIB}/astropy/modeling/fitting.py
${PYSITELIB}/astropy/modeling/fitting.pyc
${PYSITELIB}/astropy/modeling/fitting.pyo
${PYSITELIB}/astropy/modeling/functional_models.py
${PYSITELIB}/astropy/modeling/functional_models.pyc
${PYSITELIB}/astropy/modeling/functional_models.pyo
${PYSITELIB}/astropy/modeling/mappings.py
${PYSITELIB}/astropy/modeling/mappings.pyc
${PYSITELIB}/astropy/modeling/mappings.pyo
${PYSITELIB}/astropy/modeling/math_functions.py
${PYSITELIB}/astropy/modeling/math_functions.pyc
${PYSITELIB}/astropy/modeling/math_functions.pyo
${PYSITELIB}/astropy/modeling/models.py
${PYSITELIB}/astropy/modeling/models.pyc
${PYSITELIB}/astropy/modeling/models.pyo
${PYSITELIB}/astropy/modeling/optimizers.py
${PYSITELIB}/astropy/modeling/optimizers.pyc
${PYSITELIB}/astropy/modeling/optimizers.pyo
${PYSITELIB}/astropy/modeling/parameters.py
${PYSITELIB}/astropy/modeling/parameters.pyc
${PYSITELIB}/astropy/modeling/parameters.pyo
${PYSITELIB}/astropy/modeling/physical_models.py
${PYSITELIB}/astropy/modeling/physical_models.pyc
${PYSITELIB}/astropy/modeling/physical_models.pyo
${PYSITELIB}/astropy/modeling/polynomial.py
${PYSITELIB}/astropy/modeling/polynomial.pyc
${PYSITELIB}/astropy/modeling/polynomial.pyo
${PYSITELIB}/astropy/modeling/powerlaws.py
${PYSITELIB}/astropy/modeling/powerlaws.pyc
${PYSITELIB}/astropy/modeling/powerlaws.pyo
${PYSITELIB}/astropy/modeling/projections.py
${PYSITELIB}/astropy/modeling/projections.pyc
${PYSITELIB}/astropy/modeling/projections.pyo
${PYSITELIB}/astropy/modeling/rotations.py
${PYSITELIB}/astropy/modeling/rotations.pyc
${PYSITELIB}/astropy/modeling/rotations.pyo
${PYSITELIB}/astropy/modeling/separable.py
${PYSITELIB}/astropy/modeling/separable.pyc
${PYSITELIB}/astropy/modeling/separable.pyo
${PYSITELIB}/astropy/modeling/setup_package.py
${PYSITELIB}/astropy/modeling/setup_package.pyc
${PYSITELIB}/astropy/modeling/setup_package.pyo
${PYSITELIB}/astropy/modeling/spline.py
${PYSITELIB}/astropy/modeling/spline.pyc
${PYSITELIB}/astropy/modeling/spline.pyo
${PYSITELIB}/astropy/modeling/statistic.py
${PYSITELIB}/astropy/modeling/statistic.pyc
${PYSITELIB}/astropy/modeling/statistic.pyo
${PYSITELIB}/astropy/modeling/tabular.py
${PYSITELIB}/astropy/modeling/tabular.pyc
${PYSITELIB}/astropy/modeling/tabular.pyo
${PYSITELIB}/astropy/modeling/tests/__init__.py
${PYSITELIB}/astropy/modeling/tests/__init__.pyc
${PYSITELIB}/astropy/modeling/tests/__init__.pyo
${PYSITELIB}/astropy/modeling/tests/data/1904-66_AZP.fits
${PYSITELIB}/astropy/modeling/tests/data/__init__.py
${PYSITELIB}/astropy/modeling/tests/data/__init__.pyc
${PYSITELIB}/astropy/modeling/tests/data/__init__.pyo
${PYSITELIB}/astropy/modeling/tests/data/hst_sip.hdr
${PYSITELIB}/astropy/modeling/tests/data/idcompspec.fits
${PYSITELIB}/astropy/modeling/tests/data/irac_sip.hdr
${PYSITELIB}/astropy/modeling/tests/data/spec.txt
${PYSITELIB}/astropy/modeling/tests/example_models.py
${PYSITELIB}/astropy/modeling/tests/example_models.pyc
${PYSITELIB}/astropy/modeling/tests/example_models.pyo
${PYSITELIB}/astropy/modeling/tests/irafutil.py
${PYSITELIB}/astropy/modeling/tests/irafutil.pyc
${PYSITELIB}/astropy/modeling/tests/irafutil.pyo
${PYSITELIB}/astropy/modeling/tests/test_bounding_box.py
${PYSITELIB}/astropy/modeling/tests/test_bounding_box.pyc
${PYSITELIB}/astropy/modeling/tests/test_bounding_box.pyo
${PYSITELIB}/astropy/modeling/tests/test_compound.py
${PYSITELIB}/astropy/modeling/tests/test_compound.pyc
${PYSITELIB}/astropy/modeling/tests/test_compound.pyo
${PYSITELIB}/astropy/modeling/tests/test_constraints.py
${PYSITELIB}/astropy/modeling/tests/test_constraints.pyc
${PYSITELIB}/astropy/modeling/tests/test_constraints.pyo
${PYSITELIB}/astropy/modeling/tests/test_convolution.py
${PYSITELIB}/astropy/modeling/tests/test_convolution.pyc
${PYSITELIB}/astropy/modeling/tests/test_convolution.pyo
${PYSITELIB}/astropy/modeling/tests/test_core.py
${PYSITELIB}/astropy/modeling/tests/test_core.pyc
${PYSITELIB}/astropy/modeling/tests/test_core.pyo
${PYSITELIB}/astropy/modeling/tests/test_fitters.py
${PYSITELIB}/astropy/modeling/tests/test_fitters.pyc
${PYSITELIB}/astropy/modeling/tests/test_fitters.pyo
${PYSITELIB}/astropy/modeling/tests/test_functional_models.py
${PYSITELIB}/astropy/modeling/tests/test_functional_models.pyc
${PYSITELIB}/astropy/modeling/tests/test_functional_models.pyo
${PYSITELIB}/astropy/modeling/tests/test_input.py
${PYSITELIB}/astropy/modeling/tests/test_input.pyc
${PYSITELIB}/astropy/modeling/tests/test_input.pyo
${PYSITELIB}/astropy/modeling/tests/test_mappings.py
${PYSITELIB}/astropy/modeling/tests/test_mappings.pyc
${PYSITELIB}/astropy/modeling/tests/test_mappings.pyo
${PYSITELIB}/astropy/modeling/tests/test_math_func.py
${PYSITELIB}/astropy/modeling/tests/test_math_func.pyc
${PYSITELIB}/astropy/modeling/tests/test_math_func.pyo
${PYSITELIB}/astropy/modeling/tests/test_model_sets.py
${PYSITELIB}/astropy/modeling/tests/test_model_sets.pyc
${PYSITELIB}/astropy/modeling/tests/test_model_sets.pyo
${PYSITELIB}/astropy/modeling/tests/test_models.py
${PYSITELIB}/astropy/modeling/tests/test_models.pyc
${PYSITELIB}/astropy/modeling/tests/test_models.pyo
${PYSITELIB}/astropy/modeling/tests/test_models_quantities.py
${PYSITELIB}/astropy/modeling/tests/test_models_quantities.pyc
${PYSITELIB}/astropy/modeling/tests/test_models_quantities.pyo
${PYSITELIB}/astropy/modeling/tests/test_parameters.py
${PYSITELIB}/astropy/modeling/tests/test_parameters.pyc
${PYSITELIB}/astropy/modeling/tests/test_parameters.pyo
${PYSITELIB}/astropy/modeling/tests/test_physical_models.py
${PYSITELIB}/astropy/modeling/tests/test_physical_models.pyc
${PYSITELIB}/astropy/modeling/tests/test_physical_models.pyo
${PYSITELIB}/astropy/modeling/tests/test_polynomial.py
${PYSITELIB}/astropy/modeling/tests/test_polynomial.pyc
${PYSITELIB}/astropy/modeling/tests/test_polynomial.pyo
${PYSITELIB}/astropy/modeling/tests/test_projections.py
${PYSITELIB}/astropy/modeling/tests/test_projections.pyc
${PYSITELIB}/astropy/modeling/tests/test_projections.pyo
${PYSITELIB}/astropy/modeling/tests/test_quantities_evaluation.py
${PYSITELIB}/astropy/modeling/tests/test_quantities_evaluation.pyc
${PYSITELIB}/astropy/modeling/tests/test_quantities_evaluation.pyo
${PYSITELIB}/astropy/modeling/tests/test_quantities_fitting.py
${PYSITELIB}/astropy/modeling/tests/test_quantities_fitting.pyc
${PYSITELIB}/astropy/modeling/tests/test_quantities_fitting.pyo
${PYSITELIB}/astropy/modeling/tests/test_quantities_model.py
${PYSITELIB}/astropy/modeling/tests/test_quantities_model.pyc
${PYSITELIB}/astropy/modeling/tests/test_quantities_model.pyo
${PYSITELIB}/astropy/modeling/tests/test_quantities_parameters.py
${PYSITELIB}/astropy/modeling/tests/test_quantities_parameters.pyc
${PYSITELIB}/astropy/modeling/tests/test_quantities_parameters.pyo
${PYSITELIB}/astropy/modeling/tests/test_quantities_rotations.py
${PYSITELIB}/astropy/modeling/tests/test_quantities_rotations.pyc
${PYSITELIB}/astropy/modeling/tests/test_quantities_rotations.pyo
${PYSITELIB}/astropy/modeling/tests/test_rotations.py
${PYSITELIB}/astropy/modeling/tests/test_rotations.pyc
${PYSITELIB}/astropy/modeling/tests/test_rotations.pyo
${PYSITELIB}/astropy/modeling/tests/test_separable.py
${PYSITELIB}/astropy/modeling/tests/test_separable.pyc
${PYSITELIB}/astropy/modeling/tests/test_separable.pyo
${PYSITELIB}/astropy/modeling/tests/test_spline.py
${PYSITELIB}/astropy/modeling/tests/test_spline.pyc
${PYSITELIB}/astropy/modeling/tests/test_spline.pyo
${PYSITELIB}/astropy/modeling/tests/test_statistics.py
${PYSITELIB}/astropy/modeling/tests/test_statistics.pyc
${PYSITELIB}/astropy/modeling/tests/test_statistics.pyo
${PYSITELIB}/astropy/modeling/tests/test_units_mapping.py
${PYSITELIB}/astropy/modeling/tests/test_units_mapping.pyc
${PYSITELIB}/astropy/modeling/tests/test_units_mapping.pyo
${PYSITELIB}/astropy/modeling/tests/test_utils.py
${PYSITELIB}/astropy/modeling/tests/test_utils.pyc
${PYSITELIB}/astropy/modeling/tests/test_utils.pyo
${PYSITELIB}/astropy/modeling/utils.py
${PYSITELIB}/astropy/modeling/utils.pyc
${PYSITELIB}/astropy/modeling/utils.pyo
${PYSITELIB}/astropy/nddata/__init__.py
${PYSITELIB}/astropy/nddata/__init__.pyc
${PYSITELIB}/astropy/nddata/__init__.pyo
${PYSITELIB}/astropy/nddata/_testing.py
${PYSITELIB}/astropy/nddata/_testing.pyc
${PYSITELIB}/astropy/nddata/_testing.pyo
${PYSITELIB}/astropy/nddata/bitmask.py
${PYSITELIB}/astropy/nddata/bitmask.pyc
${PYSITELIB}/astropy/nddata/bitmask.pyo
${PYSITELIB}/astropy/nddata/blocks.py
${PYSITELIB}/astropy/nddata/blocks.pyc
${PYSITELIB}/astropy/nddata/blocks.pyo
${PYSITELIB}/astropy/nddata/ccddata.py
${PYSITELIB}/astropy/nddata/ccddata.pyc
${PYSITELIB}/astropy/nddata/ccddata.pyo
${PYSITELIB}/astropy/nddata/compat.py
${PYSITELIB}/astropy/nddata/compat.pyc
${PYSITELIB}/astropy/nddata/compat.pyo
${PYSITELIB}/astropy/nddata/decorators.py
${PYSITELIB}/astropy/nddata/decorators.pyc
${PYSITELIB}/astropy/nddata/decorators.pyo
${PYSITELIB}/astropy/nddata/flag_collection.py
${PYSITELIB}/astropy/nddata/flag_collection.pyc
${PYSITELIB}/astropy/nddata/flag_collection.pyo
${PYSITELIB}/astropy/nddata/mixins/__init__.py
${PYSITELIB}/astropy/nddata/mixins/__init__.pyc
${PYSITELIB}/astropy/nddata/mixins/__init__.pyo
${PYSITELIB}/astropy/nddata/mixins/ndarithmetic.py
${PYSITELIB}/astropy/nddata/mixins/ndarithmetic.pyc
${PYSITELIB}/astropy/nddata/mixins/ndarithmetic.pyo
${PYSITELIB}/astropy/nddata/mixins/ndio.py
${PYSITELIB}/astropy/nddata/mixins/ndio.pyc
${PYSITELIB}/astropy/nddata/mixins/ndio.pyo
${PYSITELIB}/astropy/nddata/mixins/ndslicing.py
${PYSITELIB}/astropy/nddata/mixins/ndslicing.pyc
${PYSITELIB}/astropy/nddata/mixins/ndslicing.pyo
${PYSITELIB}/astropy/nddata/mixins/tests/__init__.py
${PYSITELIB}/astropy/nddata/mixins/tests/__init__.pyc
${PYSITELIB}/astropy/nddata/mixins/tests/__init__.pyo
${PYSITELIB}/astropy/nddata/mixins/tests/test_ndarithmetic.py
${PYSITELIB}/astropy/nddata/mixins/tests/test_ndarithmetic.pyc
${PYSITELIB}/astropy/nddata/mixins/tests/test_ndarithmetic.pyo
${PYSITELIB}/astropy/nddata/mixins/tests/test_ndio.py
${PYSITELIB}/astropy/nddata/mixins/tests/test_ndio.pyc
${PYSITELIB}/astropy/nddata/mixins/tests/test_ndio.pyo
${PYSITELIB}/astropy/nddata/mixins/tests/test_ndslicing.py
${PYSITELIB}/astropy/nddata/mixins/tests/test_ndslicing.pyc
${PYSITELIB}/astropy/nddata/mixins/tests/test_ndslicing.pyo
${PYSITELIB}/astropy/nddata/nddata.py
${PYSITELIB}/astropy/nddata/nddata.pyc
${PYSITELIB}/astropy/nddata/nddata.pyo
${PYSITELIB}/astropy/nddata/nddata_base.py
${PYSITELIB}/astropy/nddata/nddata_base.pyc
${PYSITELIB}/astropy/nddata/nddata_base.pyo
${PYSITELIB}/astropy/nddata/nddata_withmixins.py
${PYSITELIB}/astropy/nddata/nddata_withmixins.pyc
${PYSITELIB}/astropy/nddata/nddata_withmixins.pyo
${PYSITELIB}/astropy/nddata/nduncertainty.py
${PYSITELIB}/astropy/nddata/nduncertainty.pyc
${PYSITELIB}/astropy/nddata/nduncertainty.pyo
${PYSITELIB}/astropy/nddata/tests/__init__.py
${PYSITELIB}/astropy/nddata/tests/__init__.pyc
${PYSITELIB}/astropy/nddata/tests/__init__.pyo
${PYSITELIB}/astropy/nddata/tests/data/sip-wcs.fits
${PYSITELIB}/astropy/nddata/tests/test_bitmask.py
${PYSITELIB}/astropy/nddata/tests/test_bitmask.pyc
${PYSITELIB}/astropy/nddata/tests/test_bitmask.pyo
${PYSITELIB}/astropy/nddata/tests/test_blocks.py
${PYSITELIB}/astropy/nddata/tests/test_blocks.pyc
${PYSITELIB}/astropy/nddata/tests/test_blocks.pyo
${PYSITELIB}/astropy/nddata/tests/test_ccddata.py
${PYSITELIB}/astropy/nddata/tests/test_ccddata.pyc
${PYSITELIB}/astropy/nddata/tests/test_ccddata.pyo
${PYSITELIB}/astropy/nddata/tests/test_compat.py
${PYSITELIB}/astropy/nddata/tests/test_compat.pyc
${PYSITELIB}/astropy/nddata/tests/test_compat.pyo
${PYSITELIB}/astropy/nddata/tests/test_decorators.py
${PYSITELIB}/astropy/nddata/tests/test_decorators.pyc
${PYSITELIB}/astropy/nddata/tests/test_decorators.pyo
${PYSITELIB}/astropy/nddata/tests/test_flag_collection.py
${PYSITELIB}/astropy/nddata/tests/test_flag_collection.pyc
${PYSITELIB}/astropy/nddata/tests/test_flag_collection.pyo
${PYSITELIB}/astropy/nddata/tests/test_nddata.py
${PYSITELIB}/astropy/nddata/tests/test_nddata.pyc
${PYSITELIB}/astropy/nddata/tests/test_nddata.pyo
${PYSITELIB}/astropy/nddata/tests/test_nddata_base.py
${PYSITELIB}/astropy/nddata/tests/test_nddata_base.pyc
${PYSITELIB}/astropy/nddata/tests/test_nddata_base.pyo
${PYSITELIB}/astropy/nddata/tests/test_nduncertainty.py
${PYSITELIB}/astropy/nddata/tests/test_nduncertainty.pyc
${PYSITELIB}/astropy/nddata/tests/test_nduncertainty.pyo
${PYSITELIB}/astropy/nddata/tests/test_utils.py
${PYSITELIB}/astropy/nddata/tests/test_utils.pyc
${PYSITELIB}/astropy/nddata/tests/test_utils.pyo
${PYSITELIB}/astropy/nddata/utils.py
${PYSITELIB}/astropy/nddata/utils.pyc
${PYSITELIB}/astropy/nddata/utils.pyo
${PYSITELIB}/astropy/samp/__init__.py
${PYSITELIB}/astropy/samp/__init__.pyc
${PYSITELIB}/astropy/samp/__init__.pyo
${PYSITELIB}/astropy/samp/client.py
${PYSITELIB}/astropy/samp/client.pyc
${PYSITELIB}/astropy/samp/client.pyo
${PYSITELIB}/astropy/samp/constants.py
${PYSITELIB}/astropy/samp/constants.pyc
${PYSITELIB}/astropy/samp/constants.pyo
${PYSITELIB}/astropy/samp/data/astropy_icon.png
${PYSITELIB}/astropy/samp/data/clientaccesspolicy.xml
${PYSITELIB}/astropy/samp/data/crossdomain.xml
${PYSITELIB}/astropy/samp/errors.py
${PYSITELIB}/astropy/samp/errors.pyc
${PYSITELIB}/astropy/samp/errors.pyo
${PYSITELIB}/astropy/samp/hub.py
${PYSITELIB}/astropy/samp/hub.pyc
${PYSITELIB}/astropy/samp/hub.pyo
${PYSITELIB}/astropy/samp/hub_proxy.py
${PYSITELIB}/astropy/samp/hub_proxy.pyc
${PYSITELIB}/astropy/samp/hub_proxy.pyo
${PYSITELIB}/astropy/samp/hub_script.py
${PYSITELIB}/astropy/samp/hub_script.pyc
${PYSITELIB}/astropy/samp/hub_script.pyo
${PYSITELIB}/astropy/samp/integrated_client.py
${PYSITELIB}/astropy/samp/integrated_client.pyc
${PYSITELIB}/astropy/samp/integrated_client.pyo
${PYSITELIB}/astropy/samp/lockfile_helpers.py
${PYSITELIB}/astropy/samp/lockfile_helpers.pyc
${PYSITELIB}/astropy/samp/lockfile_helpers.pyo
${PYSITELIB}/astropy/samp/setup_package.py
${PYSITELIB}/astropy/samp/setup_package.pyc
${PYSITELIB}/astropy/samp/setup_package.pyo
${PYSITELIB}/astropy/samp/standard_profile.py
${PYSITELIB}/astropy/samp/standard_profile.pyc
${PYSITELIB}/astropy/samp/standard_profile.pyo
${PYSITELIB}/astropy/samp/tests/__init__.py
${PYSITELIB}/astropy/samp/tests/__init__.pyc
${PYSITELIB}/astropy/samp/tests/__init__.pyo
${PYSITELIB}/astropy/samp/tests/test_client.py
${PYSITELIB}/astropy/samp/tests/test_client.pyc
${PYSITELIB}/astropy/samp/tests/test_client.pyo
${PYSITELIB}/astropy/samp/tests/test_errors.py
${PYSITELIB}/astropy/samp/tests/test_errors.pyc
${PYSITELIB}/astropy/samp/tests/test_errors.pyo
${PYSITELIB}/astropy/samp/tests/test_helpers.py
${PYSITELIB}/astropy/samp/tests/test_helpers.pyc
${PYSITELIB}/astropy/samp/tests/test_helpers.pyo
${PYSITELIB}/astropy/samp/tests/test_hub.py
${PYSITELIB}/astropy/samp/tests/test_hub.pyc
${PYSITELIB}/astropy/samp/tests/test_hub.pyo
${PYSITELIB}/astropy/samp/tests/test_hub_proxy.py
${PYSITELIB}/astropy/samp/tests/test_hub_proxy.pyc
${PYSITELIB}/astropy/samp/tests/test_hub_proxy.pyo
${PYSITELIB}/astropy/samp/tests/test_hub_script.py
${PYSITELIB}/astropy/samp/tests/test_hub_script.pyc
${PYSITELIB}/astropy/samp/tests/test_hub_script.pyo
${PYSITELIB}/astropy/samp/tests/test_standard_profile.py
${PYSITELIB}/astropy/samp/tests/test_standard_profile.pyc
${PYSITELIB}/astropy/samp/tests/test_standard_profile.pyo
${PYSITELIB}/astropy/samp/tests/test_web_profile.py
${PYSITELIB}/astropy/samp/tests/test_web_profile.pyc
${PYSITELIB}/astropy/samp/tests/test_web_profile.pyo
${PYSITELIB}/astropy/samp/tests/web_profile_test_helpers.py
${PYSITELIB}/astropy/samp/tests/web_profile_test_helpers.pyc
${PYSITELIB}/astropy/samp/tests/web_profile_test_helpers.pyo
${PYSITELIB}/astropy/samp/utils.py
${PYSITELIB}/astropy/samp/utils.pyc
${PYSITELIB}/astropy/samp/utils.pyo
${PYSITELIB}/astropy/samp/web_profile.py
${PYSITELIB}/astropy/samp/web_profile.pyc
${PYSITELIB}/astropy/samp/web_profile.pyo
${PYSITELIB}/astropy/stats/__init__.py
${PYSITELIB}/astropy/stats/__init__.pyc
${PYSITELIB}/astropy/stats/__init__.pyo
${PYSITELIB}/astropy/stats/_fast_sigma_clip.so
${PYSITELIB}/astropy/stats/_stats.so
${PYSITELIB}/astropy/stats/bayesian_blocks.py
${PYSITELIB}/astropy/stats/bayesian_blocks.pyc
${PYSITELIB}/astropy/stats/bayesian_blocks.pyo
${PYSITELIB}/astropy/stats/biweight.py
${PYSITELIB}/astropy/stats/biweight.pyc
${PYSITELIB}/astropy/stats/biweight.pyo
${PYSITELIB}/astropy/stats/bls/__init__.py
${PYSITELIB}/astropy/stats/bls/__init__.pyc
${PYSITELIB}/astropy/stats/bls/__init__.pyo
${PYSITELIB}/astropy/stats/circstats.py
${PYSITELIB}/astropy/stats/circstats.pyc
${PYSITELIB}/astropy/stats/circstats.pyo
${PYSITELIB}/astropy/stats/funcs.py
${PYSITELIB}/astropy/stats/funcs.pyc
${PYSITELIB}/astropy/stats/funcs.pyo
${PYSITELIB}/astropy/stats/histogram.py
${PYSITELIB}/astropy/stats/histogram.pyc
${PYSITELIB}/astropy/stats/histogram.pyo
${PYSITELIB}/astropy/stats/info_theory.py
${PYSITELIB}/astropy/stats/info_theory.pyc
${PYSITELIB}/astropy/stats/info_theory.pyo
${PYSITELIB}/astropy/stats/jackknife.py
${PYSITELIB}/astropy/stats/jackknife.pyc
${PYSITELIB}/astropy/stats/jackknife.pyo
${PYSITELIB}/astropy/stats/lombscargle/__init__.py
${PYSITELIB}/astropy/stats/lombscargle/__init__.pyc
${PYSITELIB}/astropy/stats/lombscargle/__init__.pyo
${PYSITELIB}/astropy/stats/setup_package.py
${PYSITELIB}/astropy/stats/setup_package.pyc
${PYSITELIB}/astropy/stats/setup_package.pyo
${PYSITELIB}/astropy/stats/sigma_clipping.py
${PYSITELIB}/astropy/stats/sigma_clipping.pyc
${PYSITELIB}/astropy/stats/sigma_clipping.pyo
${PYSITELIB}/astropy/stats/spatial.py
${PYSITELIB}/astropy/stats/spatial.pyc
${PYSITELIB}/astropy/stats/spatial.pyo
${PYSITELIB}/astropy/stats/tests/__init__.py
${PYSITELIB}/astropy/stats/tests/__init__.pyc
${PYSITELIB}/astropy/stats/tests/__init__.pyo
${PYSITELIB}/astropy/stats/tests/test_bayesian_blocks.py
${PYSITELIB}/astropy/stats/tests/test_bayesian_blocks.pyc
${PYSITELIB}/astropy/stats/tests/test_bayesian_blocks.pyo
${PYSITELIB}/astropy/stats/tests/test_biweight.py
${PYSITELIB}/astropy/stats/tests/test_biweight.pyc
${PYSITELIB}/astropy/stats/tests/test_biweight.pyo
${PYSITELIB}/astropy/stats/tests/test_circstats.py
${PYSITELIB}/astropy/stats/tests/test_circstats.pyc
${PYSITELIB}/astropy/stats/tests/test_circstats.pyo
${PYSITELIB}/astropy/stats/tests/test_funcs.py
${PYSITELIB}/astropy/stats/tests/test_funcs.pyc
${PYSITELIB}/astropy/stats/tests/test_funcs.pyo
${PYSITELIB}/astropy/stats/tests/test_histogram.py
${PYSITELIB}/astropy/stats/tests/test_histogram.pyc
${PYSITELIB}/astropy/stats/tests/test_histogram.pyo
${PYSITELIB}/astropy/stats/tests/test_info_theory.py
${PYSITELIB}/astropy/stats/tests/test_info_theory.pyc
${PYSITELIB}/astropy/stats/tests/test_info_theory.pyo
${PYSITELIB}/astropy/stats/tests/test_jackknife.py
${PYSITELIB}/astropy/stats/tests/test_jackknife.pyc
${PYSITELIB}/astropy/stats/tests/test_jackknife.pyo
${PYSITELIB}/astropy/stats/tests/test_sigma_clipping.py
${PYSITELIB}/astropy/stats/tests/test_sigma_clipping.pyc
${PYSITELIB}/astropy/stats/tests/test_sigma_clipping.pyo
${PYSITELIB}/astropy/stats/tests/test_spatial.py
${PYSITELIB}/astropy/stats/tests/test_spatial.pyc
${PYSITELIB}/astropy/stats/tests/test_spatial.pyo
${PYSITELIB}/astropy/table/__init__.py
${PYSITELIB}/astropy/table/__init__.pyc
${PYSITELIB}/astropy/table/__init__.pyo
${PYSITELIB}/astropy/table/_column_mixins.so
${PYSITELIB}/astropy/table/_np_utils.so
${PYSITELIB}/astropy/table/bst.py
${PYSITELIB}/astropy/table/bst.pyc
${PYSITELIB}/astropy/table/bst.pyo
${PYSITELIB}/astropy/table/column.py
${PYSITELIB}/astropy/table/column.pyc
${PYSITELIB}/astropy/table/column.pyo
${PYSITELIB}/astropy/table/connect.py
${PYSITELIB}/astropy/table/connect.pyc
${PYSITELIB}/astropy/table/connect.pyo
${PYSITELIB}/astropy/table/groups.py
${PYSITELIB}/astropy/table/groups.pyc
${PYSITELIB}/astropy/table/groups.pyo
${PYSITELIB}/astropy/table/index.py
${PYSITELIB}/astropy/table/index.pyc
${PYSITELIB}/astropy/table/index.pyo
${PYSITELIB}/astropy/table/info.py
${PYSITELIB}/astropy/table/info.pyc
${PYSITELIB}/astropy/table/info.pyo
${PYSITELIB}/astropy/table/jsviewer.py
${PYSITELIB}/astropy/table/jsviewer.pyc
${PYSITELIB}/astropy/table/jsviewer.pyo
${PYSITELIB}/astropy/table/meta.py
${PYSITELIB}/astropy/table/meta.pyc
${PYSITELIB}/astropy/table/meta.pyo
${PYSITELIB}/astropy/table/mixins/__init__.py
${PYSITELIB}/astropy/table/mixins/__init__.pyc
${PYSITELIB}/astropy/table/mixins/__init__.pyo
${PYSITELIB}/astropy/table/mixins/dask.py
${PYSITELIB}/astropy/table/mixins/dask.pyc
${PYSITELIB}/astropy/table/mixins/dask.pyo
${PYSITELIB}/astropy/table/mixins/registry.py
${PYSITELIB}/astropy/table/mixins/registry.pyc
${PYSITELIB}/astropy/table/mixins/registry.pyo
${PYSITELIB}/astropy/table/mixins/tests/__init__.py
${PYSITELIB}/astropy/table/mixins/tests/__init__.pyc
${PYSITELIB}/astropy/table/mixins/tests/__init__.pyo
${PYSITELIB}/astropy/table/mixins/tests/test_dask.py
${PYSITELIB}/astropy/table/mixins/tests/test_dask.pyc
${PYSITELIB}/astropy/table/mixins/tests/test_dask.pyo
${PYSITELIB}/astropy/table/mixins/tests/test_registry.py
${PYSITELIB}/astropy/table/mixins/tests/test_registry.pyc
${PYSITELIB}/astropy/table/mixins/tests/test_registry.pyo
${PYSITELIB}/astropy/table/ndarray_mixin.py
${PYSITELIB}/astropy/table/ndarray_mixin.pyc
${PYSITELIB}/astropy/table/ndarray_mixin.pyo
${PYSITELIB}/astropy/table/np_utils.py
${PYSITELIB}/astropy/table/np_utils.pyc
${PYSITELIB}/astropy/table/np_utils.pyo
${PYSITELIB}/astropy/table/operations.py
${PYSITELIB}/astropy/table/operations.pyc
${PYSITELIB}/astropy/table/operations.pyo
${PYSITELIB}/astropy/table/pandas.py
${PYSITELIB}/astropy/table/pandas.pyc
${PYSITELIB}/astropy/table/pandas.pyo
${PYSITELIB}/astropy/table/pprint.py
${PYSITELIB}/astropy/table/pprint.pyc
${PYSITELIB}/astropy/table/pprint.pyo
${PYSITELIB}/astropy/table/row.py
${PYSITELIB}/astropy/table/row.pyc
${PYSITELIB}/astropy/table/row.pyo
${PYSITELIB}/astropy/table/scripts/__init__.py
${PYSITELIB}/astropy/table/scripts/__init__.pyc
${PYSITELIB}/astropy/table/scripts/__init__.pyo
${PYSITELIB}/astropy/table/scripts/showtable.py
${PYSITELIB}/astropy/table/scripts/showtable.pyc
${PYSITELIB}/astropy/table/scripts/showtable.pyo
${PYSITELIB}/astropy/table/serialize.py
${PYSITELIB}/astropy/table/serialize.pyc
${PYSITELIB}/astropy/table/serialize.pyo
${PYSITELIB}/astropy/table/setup_package.py
${PYSITELIB}/astropy/table/setup_package.pyc
${PYSITELIB}/astropy/table/setup_package.pyo
${PYSITELIB}/astropy/table/soco.py
${PYSITELIB}/astropy/table/soco.pyc
${PYSITELIB}/astropy/table/soco.pyo
${PYSITELIB}/astropy/table/sorted_array.py
${PYSITELIB}/astropy/table/sorted_array.pyc
${PYSITELIB}/astropy/table/sorted_array.pyo
${PYSITELIB}/astropy/table/table.py
${PYSITELIB}/astropy/table/table.pyc
${PYSITELIB}/astropy/table/table.pyo
${PYSITELIB}/astropy/table/table_helpers.py
${PYSITELIB}/astropy/table/table_helpers.pyc
${PYSITELIB}/astropy/table/table_helpers.pyo
${PYSITELIB}/astropy/table/tests/__init__.py
${PYSITELIB}/astropy/table/tests/__init__.pyc
${PYSITELIB}/astropy/table/tests/__init__.pyo
${PYSITELIB}/astropy/table/tests/conftest.py
${PYSITELIB}/astropy/table/tests/conftest.pyc
${PYSITELIB}/astropy/table/tests/conftest.pyo
${PYSITELIB}/astropy/table/tests/test_array.py
${PYSITELIB}/astropy/table/tests/test_array.pyc
${PYSITELIB}/astropy/table/tests/test_array.pyo
${PYSITELIB}/astropy/table/tests/test_bst.py
${PYSITELIB}/astropy/table/tests/test_bst.pyc
${PYSITELIB}/astropy/table/tests/test_bst.pyo
${PYSITELIB}/astropy/table/tests/test_column.py
${PYSITELIB}/astropy/table/tests/test_column.pyc
${PYSITELIB}/astropy/table/tests/test_column.pyo
${PYSITELIB}/astropy/table/tests/test_groups.py
${PYSITELIB}/astropy/table/tests/test_groups.pyc
${PYSITELIB}/astropy/table/tests/test_groups.pyo
${PYSITELIB}/astropy/table/tests/test_index.py
${PYSITELIB}/astropy/table/tests/test_index.pyc
${PYSITELIB}/astropy/table/tests/test_index.pyo
${PYSITELIB}/astropy/table/tests/test_info.py
${PYSITELIB}/astropy/table/tests/test_info.pyc
${PYSITELIB}/astropy/table/tests/test_info.pyo
${PYSITELIB}/astropy/table/tests/test_init_table.py
${PYSITELIB}/astropy/table/tests/test_init_table.pyc
${PYSITELIB}/astropy/table/tests/test_init_table.pyo
${PYSITELIB}/astropy/table/tests/test_item_access.py
${PYSITELIB}/astropy/table/tests/test_item_access.pyc
${PYSITELIB}/astropy/table/tests/test_item_access.pyo
${PYSITELIB}/astropy/table/tests/test_jsviewer.py
${PYSITELIB}/astropy/table/tests/test_jsviewer.pyc
${PYSITELIB}/astropy/table/tests/test_jsviewer.pyo
${PYSITELIB}/astropy/table/tests/test_masked.py
${PYSITELIB}/astropy/table/tests/test_masked.pyc
${PYSITELIB}/astropy/table/tests/test_masked.pyo
${PYSITELIB}/astropy/table/tests/test_mixin.py
${PYSITELIB}/astropy/table/tests/test_mixin.pyc
${PYSITELIB}/astropy/table/tests/test_mixin.pyo
${PYSITELIB}/astropy/table/tests/test_np_utils.py
${PYSITELIB}/astropy/table/tests/test_np_utils.pyc
${PYSITELIB}/astropy/table/tests/test_np_utils.pyo
${PYSITELIB}/astropy/table/tests/test_operations.py
${PYSITELIB}/astropy/table/tests/test_operations.pyc
${PYSITELIB}/astropy/table/tests/test_operations.pyo
${PYSITELIB}/astropy/table/tests/test_pickle.py
${PYSITELIB}/astropy/table/tests/test_pickle.pyc
${PYSITELIB}/astropy/table/tests/test_pickle.pyo
${PYSITELIB}/astropy/table/tests/test_pprint.py
${PYSITELIB}/astropy/table/tests/test_pprint.pyc
${PYSITELIB}/astropy/table/tests/test_pprint.pyo
${PYSITELIB}/astropy/table/tests/test_row.py
${PYSITELIB}/astropy/table/tests/test_row.pyc
${PYSITELIB}/astropy/table/tests/test_row.pyo
${PYSITELIB}/astropy/table/tests/test_showtable.py
${PYSITELIB}/astropy/table/tests/test_showtable.pyc
${PYSITELIB}/astropy/table/tests/test_showtable.pyo
${PYSITELIB}/astropy/table/tests/test_subclass.py
${PYSITELIB}/astropy/table/tests/test_subclass.pyc
${PYSITELIB}/astropy/table/tests/test_subclass.pyo
${PYSITELIB}/astropy/table/tests/test_table.py
${PYSITELIB}/astropy/table/tests/test_table.pyc
${PYSITELIB}/astropy/table/tests/test_table.pyo
${PYSITELIB}/astropy/tests/__init__.py
${PYSITELIB}/astropy/tests/__init__.pyc
${PYSITELIB}/astropy/tests/__init__.pyo
${PYSITELIB}/astropy/tests/command.py
${PYSITELIB}/astropy/tests/command.pyc
${PYSITELIB}/astropy/tests/command.pyo
${PYSITELIB}/astropy/tests/disable_internet.py
${PYSITELIB}/astropy/tests/disable_internet.pyc
${PYSITELIB}/astropy/tests/disable_internet.pyo
${PYSITELIB}/astropy/tests/helper.py
${PYSITELIB}/astropy/tests/helper.pyc
${PYSITELIB}/astropy/tests/helper.pyo
${PYSITELIB}/astropy/tests/image_tests.py
${PYSITELIB}/astropy/tests/image_tests.pyc
${PYSITELIB}/astropy/tests/image_tests.pyo
${PYSITELIB}/astropy/tests/plugins/__init__.py
${PYSITELIB}/astropy/tests/plugins/__init__.pyc
${PYSITELIB}/astropy/tests/plugins/__init__.pyo
${PYSITELIB}/astropy/tests/plugins/display.py
${PYSITELIB}/astropy/tests/plugins/display.pyc
${PYSITELIB}/astropy/tests/plugins/display.pyo
${PYSITELIB}/astropy/tests/runner.py
${PYSITELIB}/astropy/tests/runner.pyc
${PYSITELIB}/astropy/tests/runner.pyo
${PYSITELIB}/astropy/tests/test_logger.py
${PYSITELIB}/astropy/tests/test_logger.pyc
${PYSITELIB}/astropy/tests/test_logger.pyo
${PYSITELIB}/astropy/tests/tests/__init__.py
${PYSITELIB}/astropy/tests/tests/__init__.pyc
${PYSITELIB}/astropy/tests/tests/__init__.pyo
${PYSITELIB}/astropy/tests/tests/test_imports.py
${PYSITELIB}/astropy/tests/tests/test_imports.pyc
${PYSITELIB}/astropy/tests/tests/test_imports.pyo
${PYSITELIB}/astropy/tests/tests/test_quantity_helpers.py
${PYSITELIB}/astropy/tests/tests/test_quantity_helpers.pyc
${PYSITELIB}/astropy/tests/tests/test_quantity_helpers.pyo
${PYSITELIB}/astropy/tests/tests/test_run_tests.py
${PYSITELIB}/astropy/tests/tests/test_run_tests.pyc
${PYSITELIB}/astropy/tests/tests/test_run_tests.pyo
${PYSITELIB}/astropy/tests/tests/test_runner.py
${PYSITELIB}/astropy/tests/tests/test_runner.pyc
${PYSITELIB}/astropy/tests/tests/test_runner.pyo
${PYSITELIB}/astropy/time/__init__.py
${PYSITELIB}/astropy/time/__init__.pyc
${PYSITELIB}/astropy/time/__init__.pyo
${PYSITELIB}/astropy/time/_parse_times.so
${PYSITELIB}/astropy/time/core.py
${PYSITELIB}/astropy/time/core.pyc
${PYSITELIB}/astropy/time/core.pyo
${PYSITELIB}/astropy/time/formats.py
${PYSITELIB}/astropy/time/formats.pyc
${PYSITELIB}/astropy/time/formats.pyo
${PYSITELIB}/astropy/time/setup_package.py
${PYSITELIB}/astropy/time/setup_package.pyc
${PYSITELIB}/astropy/time/setup_package.pyo
${PYSITELIB}/astropy/time/tests/__init__.py
${PYSITELIB}/astropy/time/tests/__init__.pyc
${PYSITELIB}/astropy/time/tests/__init__.pyo
${PYSITELIB}/astropy/time/tests/test_basic.py
${PYSITELIB}/astropy/time/tests/test_basic.pyc
${PYSITELIB}/astropy/time/tests/test_basic.pyo
${PYSITELIB}/astropy/time/tests/test_comparisons.py
${PYSITELIB}/astropy/time/tests/test_comparisons.pyc
${PYSITELIB}/astropy/time/tests/test_comparisons.pyo
${PYSITELIB}/astropy/time/tests/test_corrs.py
${PYSITELIB}/astropy/time/tests/test_corrs.pyc
${PYSITELIB}/astropy/time/tests/test_corrs.pyo
${PYSITELIB}/astropy/time/tests/test_custom_formats.py
${PYSITELIB}/astropy/time/tests/test_custom_formats.pyc
${PYSITELIB}/astropy/time/tests/test_custom_formats.pyo
${PYSITELIB}/astropy/time/tests/test_delta.py
${PYSITELIB}/astropy/time/tests/test_delta.pyc
${PYSITELIB}/astropy/time/tests/test_delta.pyo
${PYSITELIB}/astropy/time/tests/test_fast_parser.py
${PYSITELIB}/astropy/time/tests/test_fast_parser.pyc
${PYSITELIB}/astropy/time/tests/test_fast_parser.pyo
${PYSITELIB}/astropy/time/tests/test_functions.py
${PYSITELIB}/astropy/time/tests/test_functions.pyc
${PYSITELIB}/astropy/time/tests/test_functions.pyo
${PYSITELIB}/astropy/time/tests/test_guess.py
${PYSITELIB}/astropy/time/tests/test_guess.pyc
${PYSITELIB}/astropy/time/tests/test_guess.pyo
${PYSITELIB}/astropy/time/tests/test_mask.py
${PYSITELIB}/astropy/time/tests/test_mask.pyc
${PYSITELIB}/astropy/time/tests/test_mask.pyo
${PYSITELIB}/astropy/time/tests/test_methods.py
${PYSITELIB}/astropy/time/tests/test_methods.pyc
${PYSITELIB}/astropy/time/tests/test_methods.pyo
${PYSITELIB}/astropy/time/tests/test_pickle.py
${PYSITELIB}/astropy/time/tests/test_pickle.pyc
${PYSITELIB}/astropy/time/tests/test_pickle.pyo
${PYSITELIB}/astropy/time/tests/test_precision.py
${PYSITELIB}/astropy/time/tests/test_precision.pyc
${PYSITELIB}/astropy/time/tests/test_precision.pyo
${PYSITELIB}/astropy/time/tests/test_quantity_interaction.py
${PYSITELIB}/astropy/time/tests/test_quantity_interaction.pyc
${PYSITELIB}/astropy/time/tests/test_quantity_interaction.pyo
${PYSITELIB}/astropy/time/tests/test_sidereal.py
${PYSITELIB}/astropy/time/tests/test_sidereal.pyc
${PYSITELIB}/astropy/time/tests/test_sidereal.pyo
${PYSITELIB}/astropy/time/tests/test_update_leap_seconds.py
${PYSITELIB}/astropy/time/tests/test_update_leap_seconds.pyc
${PYSITELIB}/astropy/time/tests/test_update_leap_seconds.pyo
${PYSITELIB}/astropy/time/tests/test_ut1.py
${PYSITELIB}/astropy/time/tests/test_ut1.pyc
${PYSITELIB}/astropy/time/tests/test_ut1.pyo
${PYSITELIB}/astropy/time/utils.py
${PYSITELIB}/astropy/time/utils.pyc
${PYSITELIB}/astropy/time/utils.pyo
${PYSITELIB}/astropy/timeseries/__init__.py
${PYSITELIB}/astropy/timeseries/__init__.pyc
${PYSITELIB}/astropy/timeseries/__init__.pyo
${PYSITELIB}/astropy/timeseries/binned.py
${PYSITELIB}/astropy/timeseries/binned.pyc
${PYSITELIB}/astropy/timeseries/binned.pyo
${PYSITELIB}/astropy/timeseries/core.py
${PYSITELIB}/astropy/timeseries/core.pyc
${PYSITELIB}/astropy/timeseries/core.pyo
${PYSITELIB}/astropy/timeseries/downsample.py
${PYSITELIB}/astropy/timeseries/downsample.pyc
${PYSITELIB}/astropy/timeseries/downsample.pyo
${PYSITELIB}/astropy/timeseries/io/__init__.py
${PYSITELIB}/astropy/timeseries/io/__init__.pyc
${PYSITELIB}/astropy/timeseries/io/__init__.pyo
${PYSITELIB}/astropy/timeseries/io/kepler.py
${PYSITELIB}/astropy/timeseries/io/kepler.pyc
${PYSITELIB}/astropy/timeseries/io/kepler.pyo
${PYSITELIB}/astropy/timeseries/io/tests/__init__.py
${PYSITELIB}/astropy/timeseries/io/tests/__init__.pyc
${PYSITELIB}/astropy/timeseries/io/tests/__init__.pyo
${PYSITELIB}/astropy/timeseries/io/tests/test_kepler.py
${PYSITELIB}/astropy/timeseries/io/tests/test_kepler.pyc
${PYSITELIB}/astropy/timeseries/io/tests/test_kepler.pyo
${PYSITELIB}/astropy/timeseries/periodograms/__init__.py
${PYSITELIB}/astropy/timeseries/periodograms/__init__.pyc
${PYSITELIB}/astropy/timeseries/periodograms/__init__.pyo
${PYSITELIB}/astropy/timeseries/periodograms/base.py
${PYSITELIB}/astropy/timeseries/periodograms/base.pyc
${PYSITELIB}/astropy/timeseries/periodograms/base.pyo
${PYSITELIB}/astropy/timeseries/periodograms/bls/__init__.py
${PYSITELIB}/astropy/timeseries/periodograms/bls/__init__.pyc
${PYSITELIB}/astropy/timeseries/periodograms/bls/__init__.pyo
${PYSITELIB}/astropy/timeseries/periodograms/bls/_impl.so
${PYSITELIB}/astropy/timeseries/periodograms/bls/core.py
${PYSITELIB}/astropy/timeseries/periodograms/bls/core.pyc
${PYSITELIB}/astropy/timeseries/periodograms/bls/core.pyo
${PYSITELIB}/astropy/timeseries/periodograms/bls/methods.py
${PYSITELIB}/astropy/timeseries/periodograms/bls/methods.pyc
${PYSITELIB}/astropy/timeseries/periodograms/bls/methods.pyo
${PYSITELIB}/astropy/timeseries/periodograms/bls/setup_package.py
${PYSITELIB}/astropy/timeseries/periodograms/bls/setup_package.pyc
${PYSITELIB}/astropy/timeseries/periodograms/bls/setup_package.pyo
${PYSITELIB}/astropy/timeseries/periodograms/bls/tests/__init__.py
${PYSITELIB}/astropy/timeseries/periodograms/bls/tests/__init__.pyc
${PYSITELIB}/astropy/timeseries/periodograms/bls/tests/__init__.pyo
${PYSITELIB}/astropy/timeseries/periodograms/bls/tests/test_bls.py
${PYSITELIB}/astropy/timeseries/periodograms/bls/tests/test_bls.pyc
${PYSITELIB}/astropy/timeseries/periodograms/bls/tests/test_bls.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/__init__.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/__init__.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/__init__.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/_statistics.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/_statistics.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/_statistics.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/core.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/core.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/core.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/__init__.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/__init__.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/__init__.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/chi2_impl.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/chi2_impl.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/chi2_impl.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/cython_impl.so
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/fast_impl.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/fast_impl.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/fast_impl.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/fastchi2_impl.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/fastchi2_impl.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/fastchi2_impl.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/main.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/main.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/main.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/mle.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/mle.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/mle.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/scipy_impl.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/scipy_impl.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/scipy_impl.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/slow_impl.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/slow_impl.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/slow_impl.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/tests/__init__.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/tests/__init__.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/tests/__init__.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/tests/test_mle.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/tests/test_mle.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/tests/test_mle.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/tests/test_utils.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/tests/test_utils.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/tests/test_utils.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/utils.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/utils.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/implementations/utils.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/tests/__init__.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/tests/__init__.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/tests/__init__.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/tests/test_lombscargle.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/tests/test_lombscargle.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/tests/test_lombscargle.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/tests/test_statistics.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/tests/test_statistics.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/tests/test_statistics.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/tests/test_utils.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/tests/test_utils.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/tests/test_utils.pyo
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/utils.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/utils.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/utils.pyo
${PYSITELIB}/astropy/timeseries/sampled.py
${PYSITELIB}/astropy/timeseries/sampled.pyc
${PYSITELIB}/astropy/timeseries/sampled.pyo
${PYSITELIB}/astropy/timeseries/tests/__init__.py
${PYSITELIB}/astropy/timeseries/tests/__init__.pyc
${PYSITELIB}/astropy/timeseries/tests/__init__.pyo
${PYSITELIB}/astropy/timeseries/tests/data/binned.csv
${PYSITELIB}/astropy/timeseries/tests/data/sampled.csv
${PYSITELIB}/astropy/timeseries/tests/test_binned.py
${PYSITELIB}/astropy/timeseries/tests/test_binned.pyc
${PYSITELIB}/astropy/timeseries/tests/test_binned.pyo
${PYSITELIB}/astropy/timeseries/tests/test_common.py
${PYSITELIB}/astropy/timeseries/tests/test_common.pyc
${PYSITELIB}/astropy/timeseries/tests/test_common.pyo
${PYSITELIB}/astropy/timeseries/tests/test_downsample.py
${PYSITELIB}/astropy/timeseries/tests/test_downsample.pyc
${PYSITELIB}/astropy/timeseries/tests/test_downsample.pyo
${PYSITELIB}/astropy/timeseries/tests/test_sampled.py
${PYSITELIB}/astropy/timeseries/tests/test_sampled.pyc
${PYSITELIB}/astropy/timeseries/tests/test_sampled.pyo
${PYSITELIB}/astropy/uncertainty/__init__.py
${PYSITELIB}/astropy/uncertainty/__init__.pyc
${PYSITELIB}/astropy/uncertainty/__init__.pyo
${PYSITELIB}/astropy/uncertainty/core.py
${PYSITELIB}/astropy/uncertainty/core.pyc
${PYSITELIB}/astropy/uncertainty/core.pyo
${PYSITELIB}/astropy/uncertainty/distributions.py
${PYSITELIB}/astropy/uncertainty/distributions.pyc
${PYSITELIB}/astropy/uncertainty/distributions.pyo
${PYSITELIB}/astropy/uncertainty/tests/__init__.py
${PYSITELIB}/astropy/uncertainty/tests/__init__.pyc
${PYSITELIB}/astropy/uncertainty/tests/__init__.pyo
${PYSITELIB}/astropy/uncertainty/tests/test_distribution.py
${PYSITELIB}/astropy/uncertainty/tests/test_distribution.pyc
${PYSITELIB}/astropy/uncertainty/tests/test_distribution.pyo
${PYSITELIB}/astropy/units/__init__.py
${PYSITELIB}/astropy/units/__init__.pyc
${PYSITELIB}/astropy/units/__init__.pyo
${PYSITELIB}/astropy/units/_typing.py
${PYSITELIB}/astropy/units/_typing.pyc
${PYSITELIB}/astropy/units/_typing.pyo
${PYSITELIB}/astropy/units/astrophys.py
${PYSITELIB}/astropy/units/astrophys.pyc
${PYSITELIB}/astropy/units/astrophys.pyo
${PYSITELIB}/astropy/units/cds.py
${PYSITELIB}/astropy/units/cds.pyc
${PYSITELIB}/astropy/units/cds.pyo
${PYSITELIB}/astropy/units/cgs.py
${PYSITELIB}/astropy/units/cgs.pyc
${PYSITELIB}/astropy/units/cgs.pyo
${PYSITELIB}/astropy/units/core.py
${PYSITELIB}/astropy/units/core.pyc
${PYSITELIB}/astropy/units/core.pyo
${PYSITELIB}/astropy/units/decorators.py
${PYSITELIB}/astropy/units/decorators.pyc
${PYSITELIB}/astropy/units/decorators.pyo
${PYSITELIB}/astropy/units/deprecated.py
${PYSITELIB}/astropy/units/deprecated.pyc
${PYSITELIB}/astropy/units/deprecated.pyo
${PYSITELIB}/astropy/units/equivalencies.py
${PYSITELIB}/astropy/units/equivalencies.pyc
${PYSITELIB}/astropy/units/equivalencies.pyo
${PYSITELIB}/astropy/units/format/__init__.py
${PYSITELIB}/astropy/units/format/__init__.pyc
${PYSITELIB}/astropy/units/format/__init__.pyo
${PYSITELIB}/astropy/units/format/base.py
${PYSITELIB}/astropy/units/format/base.pyc
${PYSITELIB}/astropy/units/format/base.pyo
${PYSITELIB}/astropy/units/format/cds.py
${PYSITELIB}/astropy/units/format/cds.pyc
${PYSITELIB}/astropy/units/format/cds.pyo
${PYSITELIB}/astropy/units/format/cds_lextab.py
${PYSITELIB}/astropy/units/format/cds_lextab.pyc
${PYSITELIB}/astropy/units/format/cds_lextab.pyo
${PYSITELIB}/astropy/units/format/cds_parsetab.py
${PYSITELIB}/astropy/units/format/cds_parsetab.pyc
${PYSITELIB}/astropy/units/format/cds_parsetab.pyo
${PYSITELIB}/astropy/units/format/console.py
${PYSITELIB}/astropy/units/format/console.pyc
${PYSITELIB}/astropy/units/format/console.pyo
${PYSITELIB}/astropy/units/format/fits.py
${PYSITELIB}/astropy/units/format/fits.pyc
${PYSITELIB}/astropy/units/format/fits.pyo
${PYSITELIB}/astropy/units/format/generic.py
${PYSITELIB}/astropy/units/format/generic.pyc
${PYSITELIB}/astropy/units/format/generic.pyo
${PYSITELIB}/astropy/units/format/generic_lextab.py
${PYSITELIB}/astropy/units/format/generic_lextab.pyc
${PYSITELIB}/astropy/units/format/generic_lextab.pyo
${PYSITELIB}/astropy/units/format/generic_parsetab.py
${PYSITELIB}/astropy/units/format/generic_parsetab.pyc
${PYSITELIB}/astropy/units/format/generic_parsetab.pyo
${PYSITELIB}/astropy/units/format/latex.py
${PYSITELIB}/astropy/units/format/latex.pyc
${PYSITELIB}/astropy/units/format/latex.pyo
${PYSITELIB}/astropy/units/format/ogip.py
${PYSITELIB}/astropy/units/format/ogip.pyc
${PYSITELIB}/astropy/units/format/ogip.pyo
${PYSITELIB}/astropy/units/format/ogip_lextab.py
${PYSITELIB}/astropy/units/format/ogip_lextab.pyc
${PYSITELIB}/astropy/units/format/ogip_lextab.pyo
${PYSITELIB}/astropy/units/format/ogip_parsetab.py
${PYSITELIB}/astropy/units/format/ogip_parsetab.pyc
${PYSITELIB}/astropy/units/format/ogip_parsetab.pyo
${PYSITELIB}/astropy/units/format/unicode_format.py
${PYSITELIB}/astropy/units/format/unicode_format.pyc
${PYSITELIB}/astropy/units/format/unicode_format.pyo
${PYSITELIB}/astropy/units/format/utils.py
${PYSITELIB}/astropy/units/format/utils.pyc
${PYSITELIB}/astropy/units/format/utils.pyo
${PYSITELIB}/astropy/units/format/vounit.py
${PYSITELIB}/astropy/units/format/vounit.pyc
${PYSITELIB}/astropy/units/format/vounit.pyo
${PYSITELIB}/astropy/units/function/__init__.py
${PYSITELIB}/astropy/units/function/__init__.pyc
${PYSITELIB}/astropy/units/function/__init__.pyo
${PYSITELIB}/astropy/units/function/core.py
${PYSITELIB}/astropy/units/function/core.pyc
${PYSITELIB}/astropy/units/function/core.pyo
${PYSITELIB}/astropy/units/function/logarithmic.py
${PYSITELIB}/astropy/units/function/logarithmic.pyc
${PYSITELIB}/astropy/units/function/logarithmic.pyo
${PYSITELIB}/astropy/units/function/mixin.py
${PYSITELIB}/astropy/units/function/mixin.pyc
${PYSITELIB}/astropy/units/function/mixin.pyo
${PYSITELIB}/astropy/units/function/units.py
${PYSITELIB}/astropy/units/function/units.pyc
${PYSITELIB}/astropy/units/function/units.pyo
${PYSITELIB}/astropy/units/imperial.py
${PYSITELIB}/astropy/units/imperial.pyc
${PYSITELIB}/astropy/units/imperial.pyo
${PYSITELIB}/astropy/units/misc.py
${PYSITELIB}/astropy/units/misc.pyc
${PYSITELIB}/astropy/units/misc.pyo
${PYSITELIB}/astropy/units/photometric.py
${PYSITELIB}/astropy/units/photometric.pyc
${PYSITELIB}/astropy/units/photometric.pyo
${PYSITELIB}/astropy/units/physical.py
${PYSITELIB}/astropy/units/physical.pyc
${PYSITELIB}/astropy/units/physical.pyo
${PYSITELIB}/astropy/units/quantity.py
${PYSITELIB}/astropy/units/quantity.pyc
${PYSITELIB}/astropy/units/quantity.pyo
${PYSITELIB}/astropy/units/quantity_helper/__init__.py
${PYSITELIB}/astropy/units/quantity_helper/__init__.pyc
${PYSITELIB}/astropy/units/quantity_helper/__init__.pyo
${PYSITELIB}/astropy/units/quantity_helper/converters.py
${PYSITELIB}/astropy/units/quantity_helper/converters.pyc
${PYSITELIB}/astropy/units/quantity_helper/converters.pyo
${PYSITELIB}/astropy/units/quantity_helper/erfa.py
${PYSITELIB}/astropy/units/quantity_helper/erfa.pyc
${PYSITELIB}/astropy/units/quantity_helper/erfa.pyo
${PYSITELIB}/astropy/units/quantity_helper/function_helpers.py
${PYSITELIB}/astropy/units/quantity_helper/function_helpers.pyc
${PYSITELIB}/astropy/units/quantity_helper/function_helpers.pyo
${PYSITELIB}/astropy/units/quantity_helper/helpers.py
${PYSITELIB}/astropy/units/quantity_helper/helpers.pyc
${PYSITELIB}/astropy/units/quantity_helper/helpers.pyo
${PYSITELIB}/astropy/units/quantity_helper/scipy_special.py
${PYSITELIB}/astropy/units/quantity_helper/scipy_special.pyc
${PYSITELIB}/astropy/units/quantity_helper/scipy_special.pyo
${PYSITELIB}/astropy/units/required_by_vounit.py
${PYSITELIB}/astropy/units/required_by_vounit.pyc
${PYSITELIB}/astropy/units/required_by_vounit.pyo
${PYSITELIB}/astropy/units/si.py
${PYSITELIB}/astropy/units/si.pyc
${PYSITELIB}/astropy/units/si.pyo
${PYSITELIB}/astropy/units/structured.py
${PYSITELIB}/astropy/units/structured.pyc
${PYSITELIB}/astropy/units/structured.pyo
${PYSITELIB}/astropy/units/tests/__init__.py
${PYSITELIB}/astropy/units/tests/__init__.pyc
${PYSITELIB}/astropy/units/tests/__init__.pyo
${PYSITELIB}/astropy/units/tests/test_aliases.py
${PYSITELIB}/astropy/units/tests/test_aliases.pyc
${PYSITELIB}/astropy/units/tests/test_aliases.pyo
${PYSITELIB}/astropy/units/tests/test_deprecated.py
${PYSITELIB}/astropy/units/tests/test_deprecated.pyc
${PYSITELIB}/astropy/units/tests/test_deprecated.pyo
${PYSITELIB}/astropy/units/tests/test_equivalencies.py
${PYSITELIB}/astropy/units/tests/test_equivalencies.pyc
${PYSITELIB}/astropy/units/tests/test_equivalencies.pyo
${PYSITELIB}/astropy/units/tests/test_format.py
${PYSITELIB}/astropy/units/tests/test_format.pyc
${PYSITELIB}/astropy/units/tests/test_format.pyo
${PYSITELIB}/astropy/units/tests/test_logarithmic.py
${PYSITELIB}/astropy/units/tests/test_logarithmic.pyc
${PYSITELIB}/astropy/units/tests/test_logarithmic.pyo
${PYSITELIB}/astropy/units/tests/test_photometric.py
${PYSITELIB}/astropy/units/tests/test_photometric.pyc
${PYSITELIB}/astropy/units/tests/test_photometric.pyo
${PYSITELIB}/astropy/units/tests/test_physical.py
${PYSITELIB}/astropy/units/tests/test_physical.pyc
${PYSITELIB}/astropy/units/tests/test_physical.pyo
${PYSITELIB}/astropy/units/tests/test_quantity.py
${PYSITELIB}/astropy/units/tests/test_quantity.pyc
${PYSITELIB}/astropy/units/tests/test_quantity.pyo
${PYSITELIB}/astropy/units/tests/test_quantity_annotations.py
${PYSITELIB}/astropy/units/tests/test_quantity_annotations.pyc
${PYSITELIB}/astropy/units/tests/test_quantity_annotations.pyo
${PYSITELIB}/astropy/units/tests/test_quantity_array_methods.py
${PYSITELIB}/astropy/units/tests/test_quantity_array_methods.pyc
${PYSITELIB}/astropy/units/tests/test_quantity_array_methods.pyo
${PYSITELIB}/astropy/units/tests/test_quantity_decorator.py
${PYSITELIB}/astropy/units/tests/test_quantity_decorator.pyc
${PYSITELIB}/astropy/units/tests/test_quantity_decorator.pyo
${PYSITELIB}/astropy/units/tests/test_quantity_helpers.py
${PYSITELIB}/astropy/units/tests/test_quantity_helpers.pyc
${PYSITELIB}/astropy/units/tests/test_quantity_helpers.pyo
${PYSITELIB}/astropy/units/tests/test_quantity_non_ufuncs.py
${PYSITELIB}/astropy/units/tests/test_quantity_non_ufuncs.pyc
${PYSITELIB}/astropy/units/tests/test_quantity_non_ufuncs.pyo
${PYSITELIB}/astropy/units/tests/test_quantity_typing.py
${PYSITELIB}/astropy/units/tests/test_quantity_typing.pyc
${PYSITELIB}/astropy/units/tests/test_quantity_typing.pyo
${PYSITELIB}/astropy/units/tests/test_quantity_ufuncs.py
${PYSITELIB}/astropy/units/tests/test_quantity_ufuncs.pyc
${PYSITELIB}/astropy/units/tests/test_quantity_ufuncs.pyo
${PYSITELIB}/astropy/units/tests/test_structured.py
${PYSITELIB}/astropy/units/tests/test_structured.pyc
${PYSITELIB}/astropy/units/tests/test_structured.pyo
${PYSITELIB}/astropy/units/tests/test_structured_erfa_ufuncs.py
${PYSITELIB}/astropy/units/tests/test_structured_erfa_ufuncs.pyc
${PYSITELIB}/astropy/units/tests/test_structured_erfa_ufuncs.pyo
${PYSITELIB}/astropy/units/tests/test_units.py
${PYSITELIB}/astropy/units/tests/test_units.pyc
${PYSITELIB}/astropy/units/tests/test_units.pyo
${PYSITELIB}/astropy/units/tests/test_utils.py
${PYSITELIB}/astropy/units/tests/test_utils.pyc
${PYSITELIB}/astropy/units/tests/test_utils.pyo
${PYSITELIB}/astropy/units/utils.py
${PYSITELIB}/astropy/units/utils.pyc
${PYSITELIB}/astropy/units/utils.pyo
${PYSITELIB}/astropy/utils/__init__.py
${PYSITELIB}/astropy/utils/__init__.pyc
${PYSITELIB}/astropy/utils/__init__.pyo
${PYSITELIB}/astropy/utils/_compiler.so
${PYSITELIB}/astropy/utils/argparse.py
${PYSITELIB}/astropy/utils/argparse.pyc
${PYSITELIB}/astropy/utils/argparse.pyo
${PYSITELIB}/astropy/utils/codegen.py
${PYSITELIB}/astropy/utils/codegen.pyc
${PYSITELIB}/astropy/utils/codegen.pyo
${PYSITELIB}/astropy/utils/collections.py
${PYSITELIB}/astropy/utils/collections.pyc
${PYSITELIB}/astropy/utils/collections.pyo
${PYSITELIB}/astropy/utils/compat/__init__.py
${PYSITELIB}/astropy/utils/compat/__init__.pyc
${PYSITELIB}/astropy/utils/compat/__init__.pyo
${PYSITELIB}/astropy/utils/compat/misc.py
${PYSITELIB}/astropy/utils/compat/misc.pyc
${PYSITELIB}/astropy/utils/compat/misc.pyo
${PYSITELIB}/astropy/utils/compat/numpycompat.py
${PYSITELIB}/astropy/utils/compat/numpycompat.pyc
${PYSITELIB}/astropy/utils/compat/numpycompat.pyo
${PYSITELIB}/astropy/utils/compat/optional_deps.py
${PYSITELIB}/astropy/utils/compat/optional_deps.pyc
${PYSITELIB}/astropy/utils/compat/optional_deps.pyo
${PYSITELIB}/astropy/utils/console.py
${PYSITELIB}/astropy/utils/console.pyc
${PYSITELIB}/astropy/utils/console.pyo
${PYSITELIB}/astropy/utils/data.py
${PYSITELIB}/astropy/utils/data.pyc
${PYSITELIB}/astropy/utils/data.pyo
${PYSITELIB}/astropy/utils/data_info.py
${PYSITELIB}/astropy/utils/data_info.pyc
${PYSITELIB}/astropy/utils/data_info.pyo
${PYSITELIB}/astropy/utils/decorators.py
${PYSITELIB}/astropy/utils/decorators.pyc
${PYSITELIB}/astropy/utils/decorators.pyo
${PYSITELIB}/astropy/utils/diff.py
${PYSITELIB}/astropy/utils/diff.pyc
${PYSITELIB}/astropy/utils/diff.pyo
${PYSITELIB}/astropy/utils/exceptions.py
${PYSITELIB}/astropy/utils/exceptions.pyc
${PYSITELIB}/astropy/utils/exceptions.pyo
${PYSITELIB}/astropy/utils/iers/__init__.py
${PYSITELIB}/astropy/utils/iers/__init__.pyc
${PYSITELIB}/astropy/utils/iers/__init__.pyo
${PYSITELIB}/astropy/utils/iers/data/Leap_Second.dat
${PYSITELIB}/astropy/utils/iers/data/ReadMe.eopc04_IAU2000
${PYSITELIB}/astropy/utils/iers/data/ReadMe.finals2000A
${PYSITELIB}/astropy/utils/iers/data/eopc04_IAU2000.62-now
${PYSITELIB}/astropy/utils/iers/data/update_builtin_iers.sh
${PYSITELIB}/astropy/utils/iers/iers.py
${PYSITELIB}/astropy/utils/iers/iers.pyc
${PYSITELIB}/astropy/utils/iers/iers.pyo
${PYSITELIB}/astropy/utils/iers/tests/__init__.py
${PYSITELIB}/astropy/utils/iers/tests/__init__.pyc
${PYSITELIB}/astropy/utils/iers/tests/__init__.pyo
${PYSITELIB}/astropy/utils/iers/tests/data/finals2000A-2016-02-30-test
${PYSITELIB}/astropy/utils/iers/tests/data/finals2000A-2016-04-30-test
${PYSITELIB}/astropy/utils/iers/tests/data/iers_a_excerpt
${PYSITELIB}/astropy/utils/iers/tests/data/leap-seconds.list
${PYSITELIB}/astropy/utils/iers/tests/test_iers.py
${PYSITELIB}/astropy/utils/iers/tests/test_iers.pyc
${PYSITELIB}/astropy/utils/iers/tests/test_iers.pyo
${PYSITELIB}/astropy/utils/iers/tests/test_leap_second.py
${PYSITELIB}/astropy/utils/iers/tests/test_leap_second.pyc
${PYSITELIB}/astropy/utils/iers/tests/test_leap_second.pyo
${PYSITELIB}/astropy/utils/introspection.py
${PYSITELIB}/astropy/utils/introspection.pyc
${PYSITELIB}/astropy/utils/introspection.pyo
${PYSITELIB}/astropy/utils/masked/__init__.py
${PYSITELIB}/astropy/utils/masked/__init__.pyc
${PYSITELIB}/astropy/utils/masked/__init__.pyo
${PYSITELIB}/astropy/utils/masked/core.py
${PYSITELIB}/astropy/utils/masked/core.pyc
${PYSITELIB}/astropy/utils/masked/core.pyo
${PYSITELIB}/astropy/utils/masked/function_helpers.py
${PYSITELIB}/astropy/utils/masked/function_helpers.pyc
${PYSITELIB}/astropy/utils/masked/function_helpers.pyo
${PYSITELIB}/astropy/utils/masked/tests/__init__.py
${PYSITELIB}/astropy/utils/masked/tests/__init__.pyc
${PYSITELIB}/astropy/utils/masked/tests/__init__.pyo
${PYSITELIB}/astropy/utils/masked/tests/test_containers.py
${PYSITELIB}/astropy/utils/masked/tests/test_containers.pyc
${PYSITELIB}/astropy/utils/masked/tests/test_containers.pyo
${PYSITELIB}/astropy/utils/masked/tests/test_function_helpers.py
${PYSITELIB}/astropy/utils/masked/tests/test_function_helpers.pyc
${PYSITELIB}/astropy/utils/masked/tests/test_function_helpers.pyo
${PYSITELIB}/astropy/utils/masked/tests/test_functions.py
${PYSITELIB}/astropy/utils/masked/tests/test_functions.pyc
${PYSITELIB}/astropy/utils/masked/tests/test_functions.pyo
${PYSITELIB}/astropy/utils/masked/tests/test_masked.py
${PYSITELIB}/astropy/utils/masked/tests/test_masked.pyc
${PYSITELIB}/astropy/utils/masked/tests/test_masked.pyo
${PYSITELIB}/astropy/utils/masked/tests/test_table.py
${PYSITELIB}/astropy/utils/masked/tests/test_table.pyc
${PYSITELIB}/astropy/utils/masked/tests/test_table.pyo
${PYSITELIB}/astropy/utils/metadata.py
${PYSITELIB}/astropy/utils/metadata.pyc
${PYSITELIB}/astropy/utils/metadata.pyo
${PYSITELIB}/astropy/utils/misc.py
${PYSITELIB}/astropy/utils/misc.pyc
${PYSITELIB}/astropy/utils/misc.pyo
${PYSITELIB}/astropy/utils/parsing.py
${PYSITELIB}/astropy/utils/parsing.pyc
${PYSITELIB}/astropy/utils/parsing.pyo
${PYSITELIB}/astropy/utils/setup_package.py
${PYSITELIB}/astropy/utils/setup_package.pyc
${PYSITELIB}/astropy/utils/setup_package.pyo
${PYSITELIB}/astropy/utils/shapes.py
${PYSITELIB}/astropy/utils/shapes.pyc
${PYSITELIB}/astropy/utils/shapes.pyo
${PYSITELIB}/astropy/utils/state.py
${PYSITELIB}/astropy/utils/state.pyc
${PYSITELIB}/astropy/utils/state.pyo
${PYSITELIB}/astropy/utils/tests/__init__.py
${PYSITELIB}/astropy/utils/tests/__init__.pyc
${PYSITELIB}/astropy/utils/tests/__init__.pyo
${PYSITELIB}/astropy/utils/tests/data/.hidden_file.txt
${PYSITELIB}/astropy/utils/tests/data/alias.cfg
${PYSITELIB}/astropy/utils/tests/data/dataurl/index.html
${PYSITELIB}/astropy/utils/tests/data/dataurl_mirror/index.html
${PYSITELIB}/astropy/utils/tests/data/local.dat
${PYSITELIB}/astropy/utils/tests/data/local.dat.bz2
${PYSITELIB}/astropy/utils/tests/data/local.dat.gz
${PYSITELIB}/astropy/utils/tests/data/local.dat.xz
${PYSITELIB}/astropy/utils/tests/data/test_package/__init__.py
${PYSITELIB}/astropy/utils/tests/data/test_package/__init__.pyc
${PYSITELIB}/astropy/utils/tests/data/test_package/__init__.pyo
${PYSITELIB}/astropy/utils/tests/data/test_package/data/foo.txt
${PYSITELIB}/astropy/utils/tests/data/unicode.txt
${PYSITELIB}/astropy/utils/tests/data/unicode.txt.bz2
${PYSITELIB}/astropy/utils/tests/data/unicode.txt.gz
${PYSITELIB}/astropy/utils/tests/data/unicode.txt.xz
${PYSITELIB}/astropy/utils/tests/test_codegen.py
${PYSITELIB}/astropy/utils/tests/test_codegen.pyc
${PYSITELIB}/astropy/utils/tests/test_codegen.pyo
${PYSITELIB}/astropy/utils/tests/test_collections.py
${PYSITELIB}/astropy/utils/tests/test_collections.pyc
${PYSITELIB}/astropy/utils/tests/test_collections.pyo
${PYSITELIB}/astropy/utils/tests/test_console.py
${PYSITELIB}/astropy/utils/tests/test_console.pyc
${PYSITELIB}/astropy/utils/tests/test_console.pyo
${PYSITELIB}/astropy/utils/tests/test_data.py
${PYSITELIB}/astropy/utils/tests/test_data.pyc
${PYSITELIB}/astropy/utils/tests/test_data.pyo
${PYSITELIB}/astropy/utils/tests/test_data_info.py
${PYSITELIB}/astropy/utils/tests/test_data_info.pyc
${PYSITELIB}/astropy/utils/tests/test_data_info.pyo
${PYSITELIB}/astropy/utils/tests/test_decorators.py
${PYSITELIB}/astropy/utils/tests/test_decorators.pyc
${PYSITELIB}/astropy/utils/tests/test_decorators.pyo
${PYSITELIB}/astropy/utils/tests/test_diff.py
${PYSITELIB}/astropy/utils/tests/test_diff.pyc
${PYSITELIB}/astropy/utils/tests/test_diff.pyo
${PYSITELIB}/astropy/utils/tests/test_introspection.py
${PYSITELIB}/astropy/utils/tests/test_introspection.pyc
${PYSITELIB}/astropy/utils/tests/test_introspection.pyo
${PYSITELIB}/astropy/utils/tests/test_metadata.py
${PYSITELIB}/astropy/utils/tests/test_metadata.pyc
${PYSITELIB}/astropy/utils/tests/test_metadata.pyo
${PYSITELIB}/astropy/utils/tests/test_misc.py
${PYSITELIB}/astropy/utils/tests/test_misc.pyc
${PYSITELIB}/astropy/utils/tests/test_misc.pyo
${PYSITELIB}/astropy/utils/tests/test_parsing.py
${PYSITELIB}/astropy/utils/tests/test_parsing.pyc
${PYSITELIB}/astropy/utils/tests/test_parsing.pyo
${PYSITELIB}/astropy/utils/tests/test_progress_bar_func.py
${PYSITELIB}/astropy/utils/tests/test_progress_bar_func.pyc
${PYSITELIB}/astropy/utils/tests/test_progress_bar_func.pyo
${PYSITELIB}/astropy/utils/tests/test_shapes.py
${PYSITELIB}/astropy/utils/tests/test_shapes.pyc
${PYSITELIB}/astropy/utils/tests/test_shapes.pyo
${PYSITELIB}/astropy/utils/tests/test_state.py
${PYSITELIB}/astropy/utils/tests/test_state.pyc
${PYSITELIB}/astropy/utils/tests/test_state.pyo
${PYSITELIB}/astropy/utils/tests/test_xml.py
${PYSITELIB}/astropy/utils/tests/test_xml.pyc
${PYSITELIB}/astropy/utils/tests/test_xml.pyo
${PYSITELIB}/astropy/utils/xml/__init__.py
${PYSITELIB}/astropy/utils/xml/__init__.pyc
${PYSITELIB}/astropy/utils/xml/__init__.pyo
${PYSITELIB}/astropy/utils/xml/_iterparser.so
${PYSITELIB}/astropy/utils/xml/check.py
${PYSITELIB}/astropy/utils/xml/check.pyc
${PYSITELIB}/astropy/utils/xml/check.pyo
${PYSITELIB}/astropy/utils/xml/iterparser.py
${PYSITELIB}/astropy/utils/xml/iterparser.pyc
${PYSITELIB}/astropy/utils/xml/iterparser.pyo
${PYSITELIB}/astropy/utils/xml/setup_package.py
${PYSITELIB}/astropy/utils/xml/setup_package.pyc
${PYSITELIB}/astropy/utils/xml/setup_package.pyo
${PYSITELIB}/astropy/utils/xml/tests/__init__.py
${PYSITELIB}/astropy/utils/xml/tests/__init__.pyc
${PYSITELIB}/astropy/utils/xml/tests/__init__.pyo
${PYSITELIB}/astropy/utils/xml/tests/test_iterparse.py
${PYSITELIB}/astropy/utils/xml/tests/test_iterparse.pyc
${PYSITELIB}/astropy/utils/xml/tests/test_iterparse.pyo
${PYSITELIB}/astropy/utils/xml/unescaper.py
${PYSITELIB}/astropy/utils/xml/unescaper.pyc
${PYSITELIB}/astropy/utils/xml/unescaper.pyo
${PYSITELIB}/astropy/utils/xml/validate.py
${PYSITELIB}/astropy/utils/xml/validate.pyc
${PYSITELIB}/astropy/utils/xml/validate.pyo
${PYSITELIB}/astropy/utils/xml/writer.py
${PYSITELIB}/astropy/utils/xml/writer.pyc
${PYSITELIB}/astropy/utils/xml/writer.pyo
${PYSITELIB}/astropy/version.py
${PYSITELIB}/astropy/version.pyc
${PYSITELIB}/astropy/version.pyo
${PYSITELIB}/astropy/visualization/__init__.py
${PYSITELIB}/astropy/visualization/__init__.pyc
${PYSITELIB}/astropy/visualization/__init__.pyo
${PYSITELIB}/astropy/visualization/hist.py
${PYSITELIB}/astropy/visualization/hist.pyc
${PYSITELIB}/astropy/visualization/hist.pyo
${PYSITELIB}/astropy/visualization/interval.py
${PYSITELIB}/astropy/visualization/interval.pyc
${PYSITELIB}/astropy/visualization/interval.pyo
${PYSITELIB}/astropy/visualization/lupton_rgb.py
${PYSITELIB}/astropy/visualization/lupton_rgb.pyc
${PYSITELIB}/astropy/visualization/lupton_rgb.pyo
${PYSITELIB}/astropy/visualization/mpl_normalize.py
${PYSITELIB}/astropy/visualization/mpl_normalize.pyc
${PYSITELIB}/astropy/visualization/mpl_normalize.pyo
${PYSITELIB}/astropy/visualization/mpl_style.py
${PYSITELIB}/astropy/visualization/mpl_style.pyc
${PYSITELIB}/astropy/visualization/mpl_style.pyo
${PYSITELIB}/astropy/visualization/scripts/__init__.py
${PYSITELIB}/astropy/visualization/scripts/__init__.pyc
${PYSITELIB}/astropy/visualization/scripts/__init__.pyo
${PYSITELIB}/astropy/visualization/scripts/fits2bitmap.py
${PYSITELIB}/astropy/visualization/scripts/fits2bitmap.pyc
${PYSITELIB}/astropy/visualization/scripts/fits2bitmap.pyo
${PYSITELIB}/astropy/visualization/scripts/tests/__init__.py
${PYSITELIB}/astropy/visualization/scripts/tests/__init__.pyc
${PYSITELIB}/astropy/visualization/scripts/tests/__init__.pyo
${PYSITELIB}/astropy/visualization/scripts/tests/test_fits2bitmap.py
${PYSITELIB}/astropy/visualization/scripts/tests/test_fits2bitmap.pyc
${PYSITELIB}/astropy/visualization/scripts/tests/test_fits2bitmap.pyo
${PYSITELIB}/astropy/visualization/stretch.py
${PYSITELIB}/astropy/visualization/stretch.pyc
${PYSITELIB}/astropy/visualization/stretch.pyo
${PYSITELIB}/astropy/visualization/tests/__init__.py
${PYSITELIB}/astropy/visualization/tests/__init__.pyc
${PYSITELIB}/astropy/visualization/tests/__init__.pyo
${PYSITELIB}/astropy/visualization/tests/test_histogram.py
${PYSITELIB}/astropy/visualization/tests/test_histogram.pyc
${PYSITELIB}/astropy/visualization/tests/test_histogram.pyo
${PYSITELIB}/astropy/visualization/tests/test_interval.py
${PYSITELIB}/astropy/visualization/tests/test_interval.pyc
${PYSITELIB}/astropy/visualization/tests/test_interval.pyo
${PYSITELIB}/astropy/visualization/tests/test_lupton_rgb.py
${PYSITELIB}/astropy/visualization/tests/test_lupton_rgb.pyc
${PYSITELIB}/astropy/visualization/tests/test_lupton_rgb.pyo
${PYSITELIB}/astropy/visualization/tests/test_norm.py
${PYSITELIB}/astropy/visualization/tests/test_norm.pyc
${PYSITELIB}/astropy/visualization/tests/test_norm.pyo
${PYSITELIB}/astropy/visualization/tests/test_stretch.py
${PYSITELIB}/astropy/visualization/tests/test_stretch.pyc
${PYSITELIB}/astropy/visualization/tests/test_stretch.pyo
${PYSITELIB}/astropy/visualization/tests/test_time.py
${PYSITELIB}/astropy/visualization/tests/test_time.pyc
${PYSITELIB}/astropy/visualization/tests/test_time.pyo
${PYSITELIB}/astropy/visualization/tests/test_units.py
${PYSITELIB}/astropy/visualization/tests/test_units.pyc
${PYSITELIB}/astropy/visualization/tests/test_units.pyo
${PYSITELIB}/astropy/visualization/time.py
${PYSITELIB}/astropy/visualization/time.pyc
${PYSITELIB}/astropy/visualization/time.pyo
${PYSITELIB}/astropy/visualization/transform.py
${PYSITELIB}/astropy/visualization/transform.pyc
${PYSITELIB}/astropy/visualization/transform.pyo
${PYSITELIB}/astropy/visualization/units.py
${PYSITELIB}/astropy/visualization/units.pyc
${PYSITELIB}/astropy/visualization/units.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/__init__.py
${PYSITELIB}/astropy/visualization/wcsaxes/__init__.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/__init__.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/axislabels.py
${PYSITELIB}/astropy/visualization/wcsaxes/axislabels.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/axislabels.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/coordinate_helpers.py
${PYSITELIB}/astropy/visualization/wcsaxes/coordinate_helpers.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/coordinate_helpers.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/coordinate_range.py
${PYSITELIB}/astropy/visualization/wcsaxes/coordinate_range.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/coordinate_range.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/coordinates_map.py
${PYSITELIB}/astropy/visualization/wcsaxes/coordinates_map.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/coordinates_map.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/core.py
${PYSITELIB}/astropy/visualization/wcsaxes/core.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/core.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/formatter_locator.py
${PYSITELIB}/astropy/visualization/wcsaxes/formatter_locator.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/formatter_locator.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/frame.py
${PYSITELIB}/astropy/visualization/wcsaxes/frame.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/frame.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/grid_paths.py
${PYSITELIB}/astropy/visualization/wcsaxes/grid_paths.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/grid_paths.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/patches.py
${PYSITELIB}/astropy/visualization/wcsaxes/patches.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/patches.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/tests/__init__.py
${PYSITELIB}/astropy/visualization/wcsaxes/tests/__init__.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/tests/__init__.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/tests/data/2MASS_k_header
${PYSITELIB}/astropy/visualization/wcsaxes/tests/data/cube_header
${PYSITELIB}/astropy/visualization/wcsaxes/tests/data/msx_header
${PYSITELIB}/astropy/visualization/wcsaxes/tests/data/rosat_header
${PYSITELIB}/astropy/visualization/wcsaxes/tests/data/slice_header
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_coordinate_helpers.py
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_coordinate_helpers.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_coordinate_helpers.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_display_world_coordinates.py
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_display_world_coordinates.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_display_world_coordinates.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_formatter_locator.py
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_formatter_locator.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_formatter_locator.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_frame.py
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_frame.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_frame.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_grid_paths.py
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_grid_paths.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_grid_paths.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_images.py
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_images.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_images.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_misc.py
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_misc.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_misc.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_transform_coord_meta.py
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_transform_coord_meta.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_transform_coord_meta.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_transforms.py
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_transforms.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_transforms.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_utils.py
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_utils.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_utils.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_wcsapi.py
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_wcsapi.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/tests/test_wcsapi.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/ticklabels.py
${PYSITELIB}/astropy/visualization/wcsaxes/ticklabels.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/ticklabels.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/ticks.py
${PYSITELIB}/astropy/visualization/wcsaxes/ticks.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/ticks.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/transforms.py
${PYSITELIB}/astropy/visualization/wcsaxes/transforms.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/transforms.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/utils.py
${PYSITELIB}/astropy/visualization/wcsaxes/utils.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/utils.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/wcsapi.py
${PYSITELIB}/astropy/visualization/wcsaxes/wcsapi.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/wcsapi.pyo
${PYSITELIB}/astropy/wcs/__init__.py
${PYSITELIB}/astropy/wcs/__init__.pyc
${PYSITELIB}/astropy/wcs/__init__.pyo
${PYSITELIB}/astropy/wcs/_wcs.so
${PYSITELIB}/astropy/wcs/docstrings.py
${PYSITELIB}/astropy/wcs/docstrings.pyc
${PYSITELIB}/astropy/wcs/docstrings.pyo
${PYSITELIB}/astropy/wcs/include/astropy_wcs/astropy_wcs.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/astropy_wcs_api.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/distortion.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/distortion_wrap.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/docstrings.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/isnan.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/pipeline.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/pyutil.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/sip.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/sip_wrap.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/str_list_proxy.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/unit_list_proxy.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/util.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/wcsconfig.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/wcslib_auxprm_wrap.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/wcslib_tabprm_wrap.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/wcslib_units_wrap.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/wcslib_wrap.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/wcslib_wtbarr_wrap.h
${PYSITELIB}/astropy/wcs/include/wcslib/cel.h
${PYSITELIB}/astropy/wcs/include/wcslib/lin.h
${PYSITELIB}/astropy/wcs/include/wcslib/prj.h
${PYSITELIB}/astropy/wcs/include/wcslib/spc.h
${PYSITELIB}/astropy/wcs/include/wcslib/spx.h
${PYSITELIB}/astropy/wcs/include/wcslib/tab.h
${PYSITELIB}/astropy/wcs/include/wcslib/wcs.h
${PYSITELIB}/astropy/wcs/include/wcslib/wcserr.h
${PYSITELIB}/astropy/wcs/include/wcslib/wcsmath.h
${PYSITELIB}/astropy/wcs/include/wcslib/wcsprintf.h
${PYSITELIB}/astropy/wcs/setup_package.py
${PYSITELIB}/astropy/wcs/setup_package.pyc
${PYSITELIB}/astropy/wcs/setup_package.pyo
${PYSITELIB}/astropy/wcs/tests/__init__.py
${PYSITELIB}/astropy/wcs/tests/__init__.pyc
${PYSITELIB}/astropy/wcs/tests/__init__.pyo
${PYSITELIB}/astropy/wcs/tests/conftest.py
${PYSITELIB}/astropy/wcs/tests/conftest.pyc
${PYSITELIB}/astropy/wcs/tests/conftest.pyo
${PYSITELIB}/astropy/wcs/tests/data/2wcses.hdr
${PYSITELIB}/astropy/wcs/tests/data/3d_cd.hdr
${PYSITELIB}/astropy/wcs/tests/data/chandra-pixlist-wcs.hdr
${PYSITELIB}/astropy/wcs/tests/data/defunct_keywords.hdr
${PYSITELIB}/astropy/wcs/tests/data/dist.fits
${PYSITELIB}/astropy/wcs/tests/data/dist_lookup.fits.gz
${PYSITELIB}/astropy/wcs/tests/data/dss.14.29.56-62.41.05.fits.gz
${PYSITELIB}/astropy/wcs/tests/data/header_newlines.fits
${PYSITELIB}/astropy/wcs/tests/data/header_with_time.fits
${PYSITELIB}/astropy/wcs/tests/data/header_with_time_wcslib71.fits
${PYSITELIB}/astropy/wcs/tests/data/ie6d07ujq_wcs.fits
${PYSITELIB}/astropy/wcs/tests/data/invalid_header.hdr
${PYSITELIB}/astropy/wcs/tests/data/irac_sip.hdr
${PYSITELIB}/astropy/wcs/tests/data/j94f05bgq_flt.fits
${PYSITELIB}/astropy/wcs/tests/data/locale.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_AIR.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_AIT.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_ARC.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_AZP.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_BON.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_CAR.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_CEA.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_COD.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_COE.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_COO.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_COP.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_CSC.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_CYP.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_HPX.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_MER.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_MOL.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_NCP.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_PAR.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_PCO.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_QSC.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_SFL.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_SIN.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_STG.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_SZP.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_TAN.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_TSC.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_ZEA.hdr
${PYSITELIB}/astropy/wcs/tests/data/maps/1904-66_ZPN.hdr
${PYSITELIB}/astropy/wcs/tests/data/nonstandard_units.hdr
${PYSITELIB}/astropy/wcs/tests/data/outside_sky.hdr
${PYSITELIB}/astropy/wcs/tests/data/sip-broken.hdr
${PYSITELIB}/astropy/wcs/tests/data/sip.fits
${PYSITELIB}/astropy/wcs/tests/data/sip2.fits
${PYSITELIB}/astropy/wcs/tests/data/siponly.hdr
${PYSITELIB}/astropy/wcs/tests/data/spectra/orion-freq-1.hdr
${PYSITELIB}/astropy/wcs/tests/data/spectra/orion-freq-4.hdr
${PYSITELIB}/astropy/wcs/tests/data/spectra/orion-velo-1.hdr
${PYSITELIB}/astropy/wcs/tests/data/spectra/orion-velo-4.hdr
${PYSITELIB}/astropy/wcs/tests/data/spectra/orion-wave-1.hdr
${PYSITELIB}/astropy/wcs/tests/data/spectra/orion-wave-4.hdr
${PYSITELIB}/astropy/wcs/tests/data/sub-segfault.hdr
${PYSITELIB}/astropy/wcs/tests/data/tab-time-last-axis.fits
${PYSITELIB}/astropy/wcs/tests/data/too_many_pv.hdr
${PYSITELIB}/astropy/wcs/tests/data/tpvonly.hdr
${PYSITELIB}/astropy/wcs/tests/data/unit.hdr
${PYSITELIB}/astropy/wcs/tests/data/validate.5.0.txt
${PYSITELIB}/astropy/wcs/tests/data/validate.5.13.txt
${PYSITELIB}/astropy/wcs/tests/data/validate.6.txt
${PYSITELIB}/astropy/wcs/tests/data/validate.7.4.txt
${PYSITELIB}/astropy/wcs/tests/data/validate.7.6.txt
${PYSITELIB}/astropy/wcs/tests/data/validate.fits
${PYSITELIB}/astropy/wcs/tests/data/validate.txt
${PYSITELIB}/astropy/wcs/tests/data/zpn-hole.hdr
${PYSITELIB}/astropy/wcs/tests/helper.py
${PYSITELIB}/astropy/wcs/tests/helper.pyc
${PYSITELIB}/astropy/wcs/tests/helper.pyo
${PYSITELIB}/astropy/wcs/tests/test_auxprm.py
${PYSITELIB}/astropy/wcs/tests/test_auxprm.pyc
${PYSITELIB}/astropy/wcs/tests/test_auxprm.pyo
${PYSITELIB}/astropy/wcs/tests/test_pickle.py
${PYSITELIB}/astropy/wcs/tests/test_pickle.pyc
${PYSITELIB}/astropy/wcs/tests/test_pickle.pyo
${PYSITELIB}/astropy/wcs/tests/test_profiling.py
${PYSITELIB}/astropy/wcs/tests/test_profiling.pyc
${PYSITELIB}/astropy/wcs/tests/test_profiling.pyo
${PYSITELIB}/astropy/wcs/tests/test_tab.py
${PYSITELIB}/astropy/wcs/tests/test_tab.pyc
${PYSITELIB}/astropy/wcs/tests/test_tab.pyo
${PYSITELIB}/astropy/wcs/tests/test_tabprm.py
${PYSITELIB}/astropy/wcs/tests/test_tabprm.pyc
${PYSITELIB}/astropy/wcs/tests/test_tabprm.pyo
${PYSITELIB}/astropy/wcs/tests/test_utils.py
${PYSITELIB}/astropy/wcs/tests/test_utils.pyc
${PYSITELIB}/astropy/wcs/tests/test_utils.pyo
${PYSITELIB}/astropy/wcs/tests/test_wcs.py
${PYSITELIB}/astropy/wcs/tests/test_wcs.pyc
${PYSITELIB}/astropy/wcs/tests/test_wcs.pyo
${PYSITELIB}/astropy/wcs/tests/test_wcsprm.py
${PYSITELIB}/astropy/wcs/tests/test_wcsprm.pyc
${PYSITELIB}/astropy/wcs/tests/test_wcsprm.pyo
${PYSITELIB}/astropy/wcs/tests/test_wtbarr.py
${PYSITELIB}/astropy/wcs/tests/test_wtbarr.pyc
${PYSITELIB}/astropy/wcs/tests/test_wtbarr.pyo
${PYSITELIB}/astropy/wcs/utils.py
${PYSITELIB}/astropy/wcs/utils.pyc
${PYSITELIB}/astropy/wcs/utils.pyo
${PYSITELIB}/astropy/wcs/wcs.py
${PYSITELIB}/astropy/wcs/wcs.pyc
${PYSITELIB}/astropy/wcs/wcs.pyo
${PYSITELIB}/astropy/wcs/wcsapi/__init__.py
${PYSITELIB}/astropy/wcs/wcsapi/__init__.pyc
${PYSITELIB}/astropy/wcs/wcsapi/__init__.pyo
${PYSITELIB}/astropy/wcs/wcsapi/conftest.py
${PYSITELIB}/astropy/wcs/wcsapi/conftest.pyc
${PYSITELIB}/astropy/wcs/wcsapi/conftest.pyo
${PYSITELIB}/astropy/wcs/wcsapi/data/ucds.txt
${PYSITELIB}/astropy/wcs/wcsapi/fitswcs.py
${PYSITELIB}/astropy/wcs/wcsapi/fitswcs.pyc
${PYSITELIB}/astropy/wcs/wcsapi/fitswcs.pyo
${PYSITELIB}/astropy/wcs/wcsapi/high_level_api.py
${PYSITELIB}/astropy/wcs/wcsapi/high_level_api.pyc
${PYSITELIB}/astropy/wcs/wcsapi/high_level_api.pyo
${PYSITELIB}/astropy/wcs/wcsapi/high_level_wcs_wrapper.py
${PYSITELIB}/astropy/wcs/wcsapi/high_level_wcs_wrapper.pyc
${PYSITELIB}/astropy/wcs/wcsapi/high_level_wcs_wrapper.pyo
${PYSITELIB}/astropy/wcs/wcsapi/low_level_api.py
${PYSITELIB}/astropy/wcs/wcsapi/low_level_api.pyc
${PYSITELIB}/astropy/wcs/wcsapi/low_level_api.pyo
${PYSITELIB}/astropy/wcs/wcsapi/sliced_low_level_wcs.py
${PYSITELIB}/astropy/wcs/wcsapi/sliced_low_level_wcs.pyc
${PYSITELIB}/astropy/wcs/wcsapi/sliced_low_level_wcs.pyo
${PYSITELIB}/astropy/wcs/wcsapi/tests/__init__.py
${PYSITELIB}/astropy/wcs/wcsapi/tests/__init__.pyc
${PYSITELIB}/astropy/wcs/wcsapi/tests/__init__.pyo
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_fitswcs.py
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_fitswcs.pyc
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_fitswcs.pyo
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_high_level_api.py
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_high_level_api.pyc
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_high_level_api.pyo
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_high_level_wcs_wrapper.py
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_high_level_wcs_wrapper.pyc
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_high_level_wcs_wrapper.pyo
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_low_level_api.py
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_low_level_api.pyc
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_low_level_api.pyo
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_utils.py
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_utils.pyc
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_utils.pyo
${PYSITELIB}/astropy/wcs/wcsapi/utils.py
${PYSITELIB}/astropy/wcs/wcsapi/utils.pyc
${PYSITELIB}/astropy/wcs/wcsapi/utils.pyo
${PYSITELIB}/astropy/wcs/wcsapi/wrappers/__init__.py
${PYSITELIB}/astropy/wcs/wcsapi/wrappers/__init__.pyc
${PYSITELIB}/astropy/wcs/wcsapi/wrappers/__init__.pyo
${PYSITELIB}/astropy/wcs/wcsapi/wrappers/base.py
${PYSITELIB}/astropy/wcs/wcsapi/wrappers/base.pyc
${PYSITELIB}/astropy/wcs/wcsapi/wrappers/base.pyo
${PYSITELIB}/astropy/wcs/wcsapi/wrappers/sliced_wcs.py
${PYSITELIB}/astropy/wcs/wcsapi/wrappers/sliced_wcs.pyc
${PYSITELIB}/astropy/wcs/wcsapi/wrappers/sliced_wcs.pyo
${PYSITELIB}/astropy/wcs/wcsapi/wrappers/tests/__init__.py
${PYSITELIB}/astropy/wcs/wcsapi/wrappers/tests/__init__.pyc
${PYSITELIB}/astropy/wcs/wcsapi/wrappers/tests/__init__.pyo
${PYSITELIB}/astropy/wcs/wcsapi/wrappers/tests/test_sliced_wcs.py
${PYSITELIB}/astropy/wcs/wcsapi/wrappers/tests/test_sliced_wcs.pyc
${PYSITELIB}/astropy/wcs/wcsapi/wrappers/tests/test_sliced_wcs.pyo
${PYSITELIB}/astropy/wcs/wcslint.py
${PYSITELIB}/astropy/wcs/wcslint.pyc
${PYSITELIB}/astropy/wcs/wcslint.pyo