summaryrefslogtreecommitdiff
path: root/math/py-pandas/PLIST
blob: b5fc2cf69d57d79d1ff991bb2af538fe773cf3cd (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
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
@comment $NetBSD: PLIST,v 1.19 2021/05/06 04:39:03 adam Exp $
${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}/pandas/__init__.py
${PYSITELIB}/pandas/__init__.pyc
${PYSITELIB}/pandas/__init__.pyo
${PYSITELIB}/pandas/_config/__init__.py
${PYSITELIB}/pandas/_config/__init__.pyc
${PYSITELIB}/pandas/_config/__init__.pyo
${PYSITELIB}/pandas/_config/config.py
${PYSITELIB}/pandas/_config/config.pyc
${PYSITELIB}/pandas/_config/config.pyo
${PYSITELIB}/pandas/_config/dates.py
${PYSITELIB}/pandas/_config/dates.pyc
${PYSITELIB}/pandas/_config/dates.pyo
${PYSITELIB}/pandas/_config/display.py
${PYSITELIB}/pandas/_config/display.pyc
${PYSITELIB}/pandas/_config/display.pyo
${PYSITELIB}/pandas/_config/localization.py
${PYSITELIB}/pandas/_config/localization.pyc
${PYSITELIB}/pandas/_config/localization.pyo
${PYSITELIB}/pandas/_libs/__init__.py
${PYSITELIB}/pandas/_libs/__init__.pyc
${PYSITELIB}/pandas/_libs/__init__.pyo
${PYSITELIB}/pandas/_libs/algos.so
${PYSITELIB}/pandas/_libs/groupby.so
${PYSITELIB}/pandas/_libs/hashing.so
${PYSITELIB}/pandas/_libs/hashtable.so
${PYSITELIB}/pandas/_libs/index.so
${PYSITELIB}/pandas/_libs/indexing.so
${PYSITELIB}/pandas/_libs/internals.so
${PYSITELIB}/pandas/_libs/interval.so
${PYSITELIB}/pandas/_libs/join.so
${PYSITELIB}/pandas/_libs/json.so
${PYSITELIB}/pandas/_libs/lib.so
${PYSITELIB}/pandas/_libs/missing.so
${PYSITELIB}/pandas/_libs/ops.so
${PYSITELIB}/pandas/_libs/ops_dispatch.so
${PYSITELIB}/pandas/_libs/parsers.so
${PYSITELIB}/pandas/_libs/properties.so
${PYSITELIB}/pandas/_libs/reduction.so
${PYSITELIB}/pandas/_libs/reshape.so
${PYSITELIB}/pandas/_libs/sparse.so
${PYSITELIB}/pandas/_libs/testing.so
${PYSITELIB}/pandas/_libs/tslib.so
${PYSITELIB}/pandas/_libs/tslibs/__init__.py
${PYSITELIB}/pandas/_libs/tslibs/__init__.pyc
${PYSITELIB}/pandas/_libs/tslibs/__init__.pyo
${PYSITELIB}/pandas/_libs/tslibs/base.so
${PYSITELIB}/pandas/_libs/tslibs/ccalendar.so
${PYSITELIB}/pandas/_libs/tslibs/conversion.so
${PYSITELIB}/pandas/_libs/tslibs/dtypes.so
${PYSITELIB}/pandas/_libs/tslibs/fields.so
${PYSITELIB}/pandas/_libs/tslibs/nattype.so
${PYSITELIB}/pandas/_libs/tslibs/np_datetime.so
${PYSITELIB}/pandas/_libs/tslibs/offsets.so
${PYSITELIB}/pandas/_libs/tslibs/parsing.so
${PYSITELIB}/pandas/_libs/tslibs/period.so
${PYSITELIB}/pandas/_libs/tslibs/strptime.so
${PYSITELIB}/pandas/_libs/tslibs/timedeltas.so
${PYSITELIB}/pandas/_libs/tslibs/timestamps.so
${PYSITELIB}/pandas/_libs/tslibs/timezones.so
${PYSITELIB}/pandas/_libs/tslibs/tzconversion.so
${PYSITELIB}/pandas/_libs/tslibs/vectorized.so
${PYSITELIB}/pandas/_libs/window/__init__.py
${PYSITELIB}/pandas/_libs/window/__init__.pyc
${PYSITELIB}/pandas/_libs/window/__init__.pyo
${PYSITELIB}/pandas/_libs/window/aggregations.so
${PYSITELIB}/pandas/_libs/window/indexers.so
${PYSITELIB}/pandas/_libs/writers.so
${PYSITELIB}/pandas/_testing.py
${PYSITELIB}/pandas/_testing.pyc
${PYSITELIB}/pandas/_testing.pyo
${PYSITELIB}/pandas/_typing.py
${PYSITELIB}/pandas/_typing.pyc
${PYSITELIB}/pandas/_typing.pyo
${PYSITELIB}/pandas/_version.py
${PYSITELIB}/pandas/_version.pyc
${PYSITELIB}/pandas/_version.pyo
${PYSITELIB}/pandas/api/__init__.py
${PYSITELIB}/pandas/api/__init__.pyc
${PYSITELIB}/pandas/api/__init__.pyo
${PYSITELIB}/pandas/api/extensions/__init__.py
${PYSITELIB}/pandas/api/extensions/__init__.pyc
${PYSITELIB}/pandas/api/extensions/__init__.pyo
${PYSITELIB}/pandas/api/indexers/__init__.py
${PYSITELIB}/pandas/api/indexers/__init__.pyc
${PYSITELIB}/pandas/api/indexers/__init__.pyo
${PYSITELIB}/pandas/api/types/__init__.py
${PYSITELIB}/pandas/api/types/__init__.pyc
${PYSITELIB}/pandas/api/types/__init__.pyo
${PYSITELIB}/pandas/arrays/__init__.py
${PYSITELIB}/pandas/arrays/__init__.pyc
${PYSITELIB}/pandas/arrays/__init__.pyo
${PYSITELIB}/pandas/compat/__init__.py
${PYSITELIB}/pandas/compat/__init__.pyc
${PYSITELIB}/pandas/compat/__init__.pyo
${PYSITELIB}/pandas/compat/_optional.py
${PYSITELIB}/pandas/compat/_optional.pyc
${PYSITELIB}/pandas/compat/_optional.pyo
${PYSITELIB}/pandas/compat/chainmap.py
${PYSITELIB}/pandas/compat/chainmap.pyc
${PYSITELIB}/pandas/compat/chainmap.pyo
${PYSITELIB}/pandas/compat/numpy/__init__.py
${PYSITELIB}/pandas/compat/numpy/__init__.pyc
${PYSITELIB}/pandas/compat/numpy/__init__.pyo
${PYSITELIB}/pandas/compat/numpy/function.py
${PYSITELIB}/pandas/compat/numpy/function.pyc
${PYSITELIB}/pandas/compat/numpy/function.pyo
${PYSITELIB}/pandas/compat/pickle_compat.py
${PYSITELIB}/pandas/compat/pickle_compat.pyc
${PYSITELIB}/pandas/compat/pickle_compat.pyo
${PYSITELIB}/pandas/conftest.py
${PYSITELIB}/pandas/conftest.pyc
${PYSITELIB}/pandas/conftest.pyo
${PYSITELIB}/pandas/core/__init__.py
${PYSITELIB}/pandas/core/__init__.pyc
${PYSITELIB}/pandas/core/__init__.pyo
${PYSITELIB}/pandas/core/accessor.py
${PYSITELIB}/pandas/core/accessor.pyc
${PYSITELIB}/pandas/core/accessor.pyo
${PYSITELIB}/pandas/core/aggregation.py
${PYSITELIB}/pandas/core/aggregation.pyc
${PYSITELIB}/pandas/core/aggregation.pyo
${PYSITELIB}/pandas/core/algorithms.py
${PYSITELIB}/pandas/core/algorithms.pyc
${PYSITELIB}/pandas/core/algorithms.pyo
${PYSITELIB}/pandas/core/api.py
${PYSITELIB}/pandas/core/api.pyc
${PYSITELIB}/pandas/core/api.pyo
${PYSITELIB}/pandas/core/apply.py
${PYSITELIB}/pandas/core/apply.pyc
${PYSITELIB}/pandas/core/apply.pyo
${PYSITELIB}/pandas/core/array_algos/__init__.py
${PYSITELIB}/pandas/core/array_algos/__init__.pyc
${PYSITELIB}/pandas/core/array_algos/__init__.pyo
${PYSITELIB}/pandas/core/array_algos/masked_reductions.py
${PYSITELIB}/pandas/core/array_algos/masked_reductions.pyc
${PYSITELIB}/pandas/core/array_algos/masked_reductions.pyo
${PYSITELIB}/pandas/core/array_algos/replace.py
${PYSITELIB}/pandas/core/array_algos/replace.pyc
${PYSITELIB}/pandas/core/array_algos/replace.pyo
${PYSITELIB}/pandas/core/array_algos/transforms.py
${PYSITELIB}/pandas/core/array_algos/transforms.pyc
${PYSITELIB}/pandas/core/array_algos/transforms.pyo
${PYSITELIB}/pandas/core/arraylike.py
${PYSITELIB}/pandas/core/arraylike.pyc
${PYSITELIB}/pandas/core/arraylike.pyo
${PYSITELIB}/pandas/core/arrays/__init__.py
${PYSITELIB}/pandas/core/arrays/__init__.pyc
${PYSITELIB}/pandas/core/arrays/__init__.pyo
${PYSITELIB}/pandas/core/arrays/_arrow_utils.py
${PYSITELIB}/pandas/core/arrays/_arrow_utils.pyc
${PYSITELIB}/pandas/core/arrays/_arrow_utils.pyo
${PYSITELIB}/pandas/core/arrays/_mixins.py
${PYSITELIB}/pandas/core/arrays/_mixins.pyc
${PYSITELIB}/pandas/core/arrays/_mixins.pyo
${PYSITELIB}/pandas/core/arrays/_ranges.py
${PYSITELIB}/pandas/core/arrays/_ranges.pyc
${PYSITELIB}/pandas/core/arrays/_ranges.pyo
${PYSITELIB}/pandas/core/arrays/base.py
${PYSITELIB}/pandas/core/arrays/base.pyc
${PYSITELIB}/pandas/core/arrays/base.pyo
${PYSITELIB}/pandas/core/arrays/boolean.py
${PYSITELIB}/pandas/core/arrays/boolean.pyc
${PYSITELIB}/pandas/core/arrays/boolean.pyo
${PYSITELIB}/pandas/core/arrays/categorical.py
${PYSITELIB}/pandas/core/arrays/categorical.pyc
${PYSITELIB}/pandas/core/arrays/categorical.pyo
${PYSITELIB}/pandas/core/arrays/datetimelike.py
${PYSITELIB}/pandas/core/arrays/datetimelike.pyc
${PYSITELIB}/pandas/core/arrays/datetimelike.pyo
${PYSITELIB}/pandas/core/arrays/datetimes.py
${PYSITELIB}/pandas/core/arrays/datetimes.pyc
${PYSITELIB}/pandas/core/arrays/datetimes.pyo
${PYSITELIB}/pandas/core/arrays/floating.py
${PYSITELIB}/pandas/core/arrays/floating.pyc
${PYSITELIB}/pandas/core/arrays/floating.pyo
${PYSITELIB}/pandas/core/arrays/integer.py
${PYSITELIB}/pandas/core/arrays/integer.pyc
${PYSITELIB}/pandas/core/arrays/integer.pyo
${PYSITELIB}/pandas/core/arrays/interval.py
${PYSITELIB}/pandas/core/arrays/interval.pyc
${PYSITELIB}/pandas/core/arrays/interval.pyo
${PYSITELIB}/pandas/core/arrays/masked.py
${PYSITELIB}/pandas/core/arrays/masked.pyc
${PYSITELIB}/pandas/core/arrays/masked.pyo
${PYSITELIB}/pandas/core/arrays/numeric.py
${PYSITELIB}/pandas/core/arrays/numeric.pyc
${PYSITELIB}/pandas/core/arrays/numeric.pyo
${PYSITELIB}/pandas/core/arrays/numpy_.py
${PYSITELIB}/pandas/core/arrays/numpy_.pyc
${PYSITELIB}/pandas/core/arrays/numpy_.pyo
${PYSITELIB}/pandas/core/arrays/period.py
${PYSITELIB}/pandas/core/arrays/period.pyc
${PYSITELIB}/pandas/core/arrays/period.pyo
${PYSITELIB}/pandas/core/arrays/sparse/__init__.py
${PYSITELIB}/pandas/core/arrays/sparse/__init__.pyc
${PYSITELIB}/pandas/core/arrays/sparse/__init__.pyo
${PYSITELIB}/pandas/core/arrays/sparse/accessor.py
${PYSITELIB}/pandas/core/arrays/sparse/accessor.pyc
${PYSITELIB}/pandas/core/arrays/sparse/accessor.pyo
${PYSITELIB}/pandas/core/arrays/sparse/array.py
${PYSITELIB}/pandas/core/arrays/sparse/array.pyc
${PYSITELIB}/pandas/core/arrays/sparse/array.pyo
${PYSITELIB}/pandas/core/arrays/sparse/dtype.py
${PYSITELIB}/pandas/core/arrays/sparse/dtype.pyc
${PYSITELIB}/pandas/core/arrays/sparse/dtype.pyo
${PYSITELIB}/pandas/core/arrays/sparse/scipy_sparse.py
${PYSITELIB}/pandas/core/arrays/sparse/scipy_sparse.pyc
${PYSITELIB}/pandas/core/arrays/sparse/scipy_sparse.pyo
${PYSITELIB}/pandas/core/arrays/string_.py
${PYSITELIB}/pandas/core/arrays/string_.pyc
${PYSITELIB}/pandas/core/arrays/string_.pyo
${PYSITELIB}/pandas/core/arrays/string_arrow.py
${PYSITELIB}/pandas/core/arrays/string_arrow.pyc
${PYSITELIB}/pandas/core/arrays/string_arrow.pyo
${PYSITELIB}/pandas/core/arrays/timedeltas.py
${PYSITELIB}/pandas/core/arrays/timedeltas.pyc
${PYSITELIB}/pandas/core/arrays/timedeltas.pyo
${PYSITELIB}/pandas/core/base.py
${PYSITELIB}/pandas/core/base.pyc
${PYSITELIB}/pandas/core/base.pyo
${PYSITELIB}/pandas/core/common.py
${PYSITELIB}/pandas/core/common.pyc
${PYSITELIB}/pandas/core/common.pyo
${PYSITELIB}/pandas/core/computation/__init__.py
${PYSITELIB}/pandas/core/computation/__init__.pyc
${PYSITELIB}/pandas/core/computation/__init__.pyo
${PYSITELIB}/pandas/core/computation/align.py
${PYSITELIB}/pandas/core/computation/align.pyc
${PYSITELIB}/pandas/core/computation/align.pyo
${PYSITELIB}/pandas/core/computation/api.py
${PYSITELIB}/pandas/core/computation/api.pyc
${PYSITELIB}/pandas/core/computation/api.pyo
${PYSITELIB}/pandas/core/computation/check.py
${PYSITELIB}/pandas/core/computation/check.pyc
${PYSITELIB}/pandas/core/computation/check.pyo
${PYSITELIB}/pandas/core/computation/common.py
${PYSITELIB}/pandas/core/computation/common.pyc
${PYSITELIB}/pandas/core/computation/common.pyo
${PYSITELIB}/pandas/core/computation/engines.py
${PYSITELIB}/pandas/core/computation/engines.pyc
${PYSITELIB}/pandas/core/computation/engines.pyo
${PYSITELIB}/pandas/core/computation/eval.py
${PYSITELIB}/pandas/core/computation/eval.pyc
${PYSITELIB}/pandas/core/computation/eval.pyo
${PYSITELIB}/pandas/core/computation/expr.py
${PYSITELIB}/pandas/core/computation/expr.pyc
${PYSITELIB}/pandas/core/computation/expr.pyo
${PYSITELIB}/pandas/core/computation/expressions.py
${PYSITELIB}/pandas/core/computation/expressions.pyc
${PYSITELIB}/pandas/core/computation/expressions.pyo
${PYSITELIB}/pandas/core/computation/ops.py
${PYSITELIB}/pandas/core/computation/ops.pyc
${PYSITELIB}/pandas/core/computation/ops.pyo
${PYSITELIB}/pandas/core/computation/parsing.py
${PYSITELIB}/pandas/core/computation/parsing.pyc
${PYSITELIB}/pandas/core/computation/parsing.pyo
${PYSITELIB}/pandas/core/computation/pytables.py
${PYSITELIB}/pandas/core/computation/pytables.pyc
${PYSITELIB}/pandas/core/computation/pytables.pyo
${PYSITELIB}/pandas/core/computation/scope.py
${PYSITELIB}/pandas/core/computation/scope.pyc
${PYSITELIB}/pandas/core/computation/scope.pyo
${PYSITELIB}/pandas/core/config_init.py
${PYSITELIB}/pandas/core/config_init.pyc
${PYSITELIB}/pandas/core/config_init.pyo
${PYSITELIB}/pandas/core/construction.py
${PYSITELIB}/pandas/core/construction.pyc
${PYSITELIB}/pandas/core/construction.pyo
${PYSITELIB}/pandas/core/dtypes/__init__.py
${PYSITELIB}/pandas/core/dtypes/__init__.pyc
${PYSITELIB}/pandas/core/dtypes/__init__.pyo
${PYSITELIB}/pandas/core/dtypes/api.py
${PYSITELIB}/pandas/core/dtypes/api.pyc
${PYSITELIB}/pandas/core/dtypes/api.pyo
${PYSITELIB}/pandas/core/dtypes/base.py
${PYSITELIB}/pandas/core/dtypes/base.pyc
${PYSITELIB}/pandas/core/dtypes/base.pyo
${PYSITELIB}/pandas/core/dtypes/cast.py
${PYSITELIB}/pandas/core/dtypes/cast.pyc
${PYSITELIB}/pandas/core/dtypes/cast.pyo
${PYSITELIB}/pandas/core/dtypes/common.py
${PYSITELIB}/pandas/core/dtypes/common.pyc
${PYSITELIB}/pandas/core/dtypes/common.pyo
${PYSITELIB}/pandas/core/dtypes/concat.py
${PYSITELIB}/pandas/core/dtypes/concat.pyc
${PYSITELIB}/pandas/core/dtypes/concat.pyo
${PYSITELIB}/pandas/core/dtypes/dtypes.py
${PYSITELIB}/pandas/core/dtypes/dtypes.pyc
${PYSITELIB}/pandas/core/dtypes/dtypes.pyo
${PYSITELIB}/pandas/core/dtypes/generic.py
${PYSITELIB}/pandas/core/dtypes/generic.pyc
${PYSITELIB}/pandas/core/dtypes/generic.pyo
${PYSITELIB}/pandas/core/dtypes/inference.py
${PYSITELIB}/pandas/core/dtypes/inference.pyc
${PYSITELIB}/pandas/core/dtypes/inference.pyo
${PYSITELIB}/pandas/core/dtypes/missing.py
${PYSITELIB}/pandas/core/dtypes/missing.pyc
${PYSITELIB}/pandas/core/dtypes/missing.pyo
${PYSITELIB}/pandas/core/flags.py
${PYSITELIB}/pandas/core/flags.pyc
${PYSITELIB}/pandas/core/flags.pyo
${PYSITELIB}/pandas/core/frame.py
${PYSITELIB}/pandas/core/frame.pyc
${PYSITELIB}/pandas/core/frame.pyo
${PYSITELIB}/pandas/core/generic.py
${PYSITELIB}/pandas/core/generic.pyc
${PYSITELIB}/pandas/core/generic.pyo
${PYSITELIB}/pandas/core/groupby/__init__.py
${PYSITELIB}/pandas/core/groupby/__init__.pyc
${PYSITELIB}/pandas/core/groupby/__init__.pyo
${PYSITELIB}/pandas/core/groupby/base.py
${PYSITELIB}/pandas/core/groupby/base.pyc
${PYSITELIB}/pandas/core/groupby/base.pyo
${PYSITELIB}/pandas/core/groupby/categorical.py
${PYSITELIB}/pandas/core/groupby/categorical.pyc
${PYSITELIB}/pandas/core/groupby/categorical.pyo
${PYSITELIB}/pandas/core/groupby/generic.py
${PYSITELIB}/pandas/core/groupby/generic.pyc
${PYSITELIB}/pandas/core/groupby/generic.pyo
${PYSITELIB}/pandas/core/groupby/groupby.py
${PYSITELIB}/pandas/core/groupby/groupby.pyc
${PYSITELIB}/pandas/core/groupby/groupby.pyo
${PYSITELIB}/pandas/core/groupby/grouper.py
${PYSITELIB}/pandas/core/groupby/grouper.pyc
${PYSITELIB}/pandas/core/groupby/grouper.pyo
${PYSITELIB}/pandas/core/groupby/numba_.py
${PYSITELIB}/pandas/core/groupby/numba_.pyc
${PYSITELIB}/pandas/core/groupby/numba_.pyo
${PYSITELIB}/pandas/core/groupby/ops.py
${PYSITELIB}/pandas/core/groupby/ops.pyc
${PYSITELIB}/pandas/core/groupby/ops.pyo
${PYSITELIB}/pandas/core/index.py
${PYSITELIB}/pandas/core/index.pyc
${PYSITELIB}/pandas/core/index.pyo
${PYSITELIB}/pandas/core/indexers.py
${PYSITELIB}/pandas/core/indexers.pyc
${PYSITELIB}/pandas/core/indexers.pyo
${PYSITELIB}/pandas/core/indexes/__init__.py
${PYSITELIB}/pandas/core/indexes/__init__.pyc
${PYSITELIB}/pandas/core/indexes/__init__.pyo
${PYSITELIB}/pandas/core/indexes/accessors.py
${PYSITELIB}/pandas/core/indexes/accessors.pyc
${PYSITELIB}/pandas/core/indexes/accessors.pyo
${PYSITELIB}/pandas/core/indexes/api.py
${PYSITELIB}/pandas/core/indexes/api.pyc
${PYSITELIB}/pandas/core/indexes/api.pyo
${PYSITELIB}/pandas/core/indexes/base.py
${PYSITELIB}/pandas/core/indexes/base.pyc
${PYSITELIB}/pandas/core/indexes/base.pyo
${PYSITELIB}/pandas/core/indexes/category.py
${PYSITELIB}/pandas/core/indexes/category.pyc
${PYSITELIB}/pandas/core/indexes/category.pyo
${PYSITELIB}/pandas/core/indexes/datetimelike.py
${PYSITELIB}/pandas/core/indexes/datetimelike.pyc
${PYSITELIB}/pandas/core/indexes/datetimelike.pyo
${PYSITELIB}/pandas/core/indexes/datetimes.py
${PYSITELIB}/pandas/core/indexes/datetimes.pyc
${PYSITELIB}/pandas/core/indexes/datetimes.pyo
${PYSITELIB}/pandas/core/indexes/extension.py
${PYSITELIB}/pandas/core/indexes/extension.pyc
${PYSITELIB}/pandas/core/indexes/extension.pyo
${PYSITELIB}/pandas/core/indexes/frozen.py
${PYSITELIB}/pandas/core/indexes/frozen.pyc
${PYSITELIB}/pandas/core/indexes/frozen.pyo
${PYSITELIB}/pandas/core/indexes/interval.py
${PYSITELIB}/pandas/core/indexes/interval.pyc
${PYSITELIB}/pandas/core/indexes/interval.pyo
${PYSITELIB}/pandas/core/indexes/multi.py
${PYSITELIB}/pandas/core/indexes/multi.pyc
${PYSITELIB}/pandas/core/indexes/multi.pyo
${PYSITELIB}/pandas/core/indexes/numeric.py
${PYSITELIB}/pandas/core/indexes/numeric.pyc
${PYSITELIB}/pandas/core/indexes/numeric.pyo
${PYSITELIB}/pandas/core/indexes/period.py
${PYSITELIB}/pandas/core/indexes/period.pyc
${PYSITELIB}/pandas/core/indexes/period.pyo
${PYSITELIB}/pandas/core/indexes/range.py
${PYSITELIB}/pandas/core/indexes/range.pyc
${PYSITELIB}/pandas/core/indexes/range.pyo
${PYSITELIB}/pandas/core/indexes/timedeltas.py
${PYSITELIB}/pandas/core/indexes/timedeltas.pyc
${PYSITELIB}/pandas/core/indexes/timedeltas.pyo
${PYSITELIB}/pandas/core/indexing.py
${PYSITELIB}/pandas/core/indexing.pyc
${PYSITELIB}/pandas/core/indexing.pyo
${PYSITELIB}/pandas/core/internals/__init__.py
${PYSITELIB}/pandas/core/internals/__init__.pyc
${PYSITELIB}/pandas/core/internals/__init__.pyo
${PYSITELIB}/pandas/core/internals/blocks.py
${PYSITELIB}/pandas/core/internals/blocks.pyc
${PYSITELIB}/pandas/core/internals/blocks.pyo
${PYSITELIB}/pandas/core/internals/concat.py
${PYSITELIB}/pandas/core/internals/concat.pyc
${PYSITELIB}/pandas/core/internals/concat.pyo
${PYSITELIB}/pandas/core/internals/construction.py
${PYSITELIB}/pandas/core/internals/construction.pyc
${PYSITELIB}/pandas/core/internals/construction.pyo
${PYSITELIB}/pandas/core/internals/managers.py
${PYSITELIB}/pandas/core/internals/managers.pyc
${PYSITELIB}/pandas/core/internals/managers.pyo
${PYSITELIB}/pandas/core/internals/ops.py
${PYSITELIB}/pandas/core/internals/ops.pyc
${PYSITELIB}/pandas/core/internals/ops.pyo
${PYSITELIB}/pandas/core/missing.py
${PYSITELIB}/pandas/core/missing.pyc
${PYSITELIB}/pandas/core/missing.pyo
${PYSITELIB}/pandas/core/nanops.py
${PYSITELIB}/pandas/core/nanops.pyc
${PYSITELIB}/pandas/core/nanops.pyo
${PYSITELIB}/pandas/core/ops/__init__.py
${PYSITELIB}/pandas/core/ops/__init__.pyc
${PYSITELIB}/pandas/core/ops/__init__.pyo
${PYSITELIB}/pandas/core/ops/array_ops.py
${PYSITELIB}/pandas/core/ops/array_ops.pyc
${PYSITELIB}/pandas/core/ops/array_ops.pyo
${PYSITELIB}/pandas/core/ops/common.py
${PYSITELIB}/pandas/core/ops/common.pyc
${PYSITELIB}/pandas/core/ops/common.pyo
${PYSITELIB}/pandas/core/ops/dispatch.py
${PYSITELIB}/pandas/core/ops/dispatch.pyc
${PYSITELIB}/pandas/core/ops/dispatch.pyo
${PYSITELIB}/pandas/core/ops/docstrings.py
${PYSITELIB}/pandas/core/ops/docstrings.pyc
${PYSITELIB}/pandas/core/ops/docstrings.pyo
${PYSITELIB}/pandas/core/ops/invalid.py
${PYSITELIB}/pandas/core/ops/invalid.pyc
${PYSITELIB}/pandas/core/ops/invalid.pyo
${PYSITELIB}/pandas/core/ops/mask_ops.py
${PYSITELIB}/pandas/core/ops/mask_ops.pyc
${PYSITELIB}/pandas/core/ops/mask_ops.pyo
${PYSITELIB}/pandas/core/ops/methods.py
${PYSITELIB}/pandas/core/ops/methods.pyc
${PYSITELIB}/pandas/core/ops/methods.pyo
${PYSITELIB}/pandas/core/ops/missing.py
${PYSITELIB}/pandas/core/ops/missing.pyc
${PYSITELIB}/pandas/core/ops/missing.pyo
${PYSITELIB}/pandas/core/ops/roperator.py
${PYSITELIB}/pandas/core/ops/roperator.pyc
${PYSITELIB}/pandas/core/ops/roperator.pyo
${PYSITELIB}/pandas/core/resample.py
${PYSITELIB}/pandas/core/resample.pyc
${PYSITELIB}/pandas/core/resample.pyo
${PYSITELIB}/pandas/core/reshape/__init__.py
${PYSITELIB}/pandas/core/reshape/__init__.pyc
${PYSITELIB}/pandas/core/reshape/__init__.pyo
${PYSITELIB}/pandas/core/reshape/api.py
${PYSITELIB}/pandas/core/reshape/api.pyc
${PYSITELIB}/pandas/core/reshape/api.pyo
${PYSITELIB}/pandas/core/reshape/concat.py
${PYSITELIB}/pandas/core/reshape/concat.pyc
${PYSITELIB}/pandas/core/reshape/concat.pyo
${PYSITELIB}/pandas/core/reshape/melt.py
${PYSITELIB}/pandas/core/reshape/melt.pyc
${PYSITELIB}/pandas/core/reshape/melt.pyo
${PYSITELIB}/pandas/core/reshape/merge.py
${PYSITELIB}/pandas/core/reshape/merge.pyc
${PYSITELIB}/pandas/core/reshape/merge.pyo
${PYSITELIB}/pandas/core/reshape/pivot.py
${PYSITELIB}/pandas/core/reshape/pivot.pyc
${PYSITELIB}/pandas/core/reshape/pivot.pyo
${PYSITELIB}/pandas/core/reshape/reshape.py
${PYSITELIB}/pandas/core/reshape/reshape.pyc
${PYSITELIB}/pandas/core/reshape/reshape.pyo
${PYSITELIB}/pandas/core/reshape/tile.py
${PYSITELIB}/pandas/core/reshape/tile.pyc
${PYSITELIB}/pandas/core/reshape/tile.pyo
${PYSITELIB}/pandas/core/reshape/util.py
${PYSITELIB}/pandas/core/reshape/util.pyc
${PYSITELIB}/pandas/core/reshape/util.pyo
${PYSITELIB}/pandas/core/series.py
${PYSITELIB}/pandas/core/series.pyc
${PYSITELIB}/pandas/core/series.pyo
${PYSITELIB}/pandas/core/shared_docs.py
${PYSITELIB}/pandas/core/shared_docs.pyc
${PYSITELIB}/pandas/core/shared_docs.pyo
${PYSITELIB}/pandas/core/sorting.py
${PYSITELIB}/pandas/core/sorting.pyc
${PYSITELIB}/pandas/core/sorting.pyo
${PYSITELIB}/pandas/core/sparse/__init__.py
${PYSITELIB}/pandas/core/sparse/__init__.pyc
${PYSITELIB}/pandas/core/sparse/__init__.pyo
${PYSITELIB}/pandas/core/sparse/api.py
${PYSITELIB}/pandas/core/sparse/api.pyc
${PYSITELIB}/pandas/core/sparse/api.pyo
${PYSITELIB}/pandas/core/strings/__init__.py
${PYSITELIB}/pandas/core/strings/__init__.pyc
${PYSITELIB}/pandas/core/strings/__init__.pyo
${PYSITELIB}/pandas/core/strings/accessor.py
${PYSITELIB}/pandas/core/strings/accessor.pyc
${PYSITELIB}/pandas/core/strings/accessor.pyo
${PYSITELIB}/pandas/core/strings/base.py
${PYSITELIB}/pandas/core/strings/base.pyc
${PYSITELIB}/pandas/core/strings/base.pyo
${PYSITELIB}/pandas/core/strings/object_array.py
${PYSITELIB}/pandas/core/strings/object_array.pyc
${PYSITELIB}/pandas/core/strings/object_array.pyo
${PYSITELIB}/pandas/core/tools/__init__.py
${PYSITELIB}/pandas/core/tools/__init__.pyc
${PYSITELIB}/pandas/core/tools/__init__.pyo
${PYSITELIB}/pandas/core/tools/datetimes.py
${PYSITELIB}/pandas/core/tools/datetimes.pyc
${PYSITELIB}/pandas/core/tools/datetimes.pyo
${PYSITELIB}/pandas/core/tools/numeric.py
${PYSITELIB}/pandas/core/tools/numeric.pyc
${PYSITELIB}/pandas/core/tools/numeric.pyo
${PYSITELIB}/pandas/core/tools/timedeltas.py
${PYSITELIB}/pandas/core/tools/timedeltas.pyc
${PYSITELIB}/pandas/core/tools/timedeltas.pyo
${PYSITELIB}/pandas/core/tools/times.py
${PYSITELIB}/pandas/core/tools/times.pyc
${PYSITELIB}/pandas/core/tools/times.pyo
${PYSITELIB}/pandas/core/util/__init__.py
${PYSITELIB}/pandas/core/util/__init__.pyc
${PYSITELIB}/pandas/core/util/__init__.pyo
${PYSITELIB}/pandas/core/util/hashing.py
${PYSITELIB}/pandas/core/util/hashing.pyc
${PYSITELIB}/pandas/core/util/hashing.pyo
${PYSITELIB}/pandas/core/util/numba_.py
${PYSITELIB}/pandas/core/util/numba_.pyc
${PYSITELIB}/pandas/core/util/numba_.pyo
${PYSITELIB}/pandas/core/window/__init__.py
${PYSITELIB}/pandas/core/window/__init__.pyc
${PYSITELIB}/pandas/core/window/__init__.pyo
${PYSITELIB}/pandas/core/window/common.py
${PYSITELIB}/pandas/core/window/common.pyc
${PYSITELIB}/pandas/core/window/common.pyo
${PYSITELIB}/pandas/core/window/ewm.py
${PYSITELIB}/pandas/core/window/ewm.pyc
${PYSITELIB}/pandas/core/window/ewm.pyo
${PYSITELIB}/pandas/core/window/expanding.py
${PYSITELIB}/pandas/core/window/expanding.pyc
${PYSITELIB}/pandas/core/window/expanding.pyo
${PYSITELIB}/pandas/core/window/indexers.py
${PYSITELIB}/pandas/core/window/indexers.pyc
${PYSITELIB}/pandas/core/window/indexers.pyo
${PYSITELIB}/pandas/core/window/numba_.py
${PYSITELIB}/pandas/core/window/numba_.pyc
${PYSITELIB}/pandas/core/window/numba_.pyo
${PYSITELIB}/pandas/core/window/rolling.py
${PYSITELIB}/pandas/core/window/rolling.pyc
${PYSITELIB}/pandas/core/window/rolling.pyo
${PYSITELIB}/pandas/errors/__init__.py
${PYSITELIB}/pandas/errors/__init__.pyc
${PYSITELIB}/pandas/errors/__init__.pyo
${PYSITELIB}/pandas/io/__init__.py
${PYSITELIB}/pandas/io/__init__.pyc
${PYSITELIB}/pandas/io/__init__.pyo
${PYSITELIB}/pandas/io/api.py
${PYSITELIB}/pandas/io/api.pyc
${PYSITELIB}/pandas/io/api.pyo
${PYSITELIB}/pandas/io/clipboard/__init__.py
${PYSITELIB}/pandas/io/clipboard/__init__.pyc
${PYSITELIB}/pandas/io/clipboard/__init__.pyo
${PYSITELIB}/pandas/io/clipboards.py
${PYSITELIB}/pandas/io/clipboards.pyc
${PYSITELIB}/pandas/io/clipboards.pyo
${PYSITELIB}/pandas/io/common.py
${PYSITELIB}/pandas/io/common.pyc
${PYSITELIB}/pandas/io/common.pyo
${PYSITELIB}/pandas/io/date_converters.py
${PYSITELIB}/pandas/io/date_converters.pyc
${PYSITELIB}/pandas/io/date_converters.pyo
${PYSITELIB}/pandas/io/excel/__init__.py
${PYSITELIB}/pandas/io/excel/__init__.pyc
${PYSITELIB}/pandas/io/excel/__init__.pyo
${PYSITELIB}/pandas/io/excel/_base.py
${PYSITELIB}/pandas/io/excel/_base.pyc
${PYSITELIB}/pandas/io/excel/_base.pyo
${PYSITELIB}/pandas/io/excel/_odfreader.py
${PYSITELIB}/pandas/io/excel/_odfreader.pyc
${PYSITELIB}/pandas/io/excel/_odfreader.pyo
${PYSITELIB}/pandas/io/excel/_odswriter.py
${PYSITELIB}/pandas/io/excel/_odswriter.pyc
${PYSITELIB}/pandas/io/excel/_odswriter.pyo
${PYSITELIB}/pandas/io/excel/_openpyxl.py
${PYSITELIB}/pandas/io/excel/_openpyxl.pyc
${PYSITELIB}/pandas/io/excel/_openpyxl.pyo
${PYSITELIB}/pandas/io/excel/_pyxlsb.py
${PYSITELIB}/pandas/io/excel/_pyxlsb.pyc
${PYSITELIB}/pandas/io/excel/_pyxlsb.pyo
${PYSITELIB}/pandas/io/excel/_util.py
${PYSITELIB}/pandas/io/excel/_util.pyc
${PYSITELIB}/pandas/io/excel/_util.pyo
${PYSITELIB}/pandas/io/excel/_xlrd.py
${PYSITELIB}/pandas/io/excel/_xlrd.pyc
${PYSITELIB}/pandas/io/excel/_xlrd.pyo
${PYSITELIB}/pandas/io/excel/_xlsxwriter.py
${PYSITELIB}/pandas/io/excel/_xlsxwriter.pyc
${PYSITELIB}/pandas/io/excel/_xlsxwriter.pyo
${PYSITELIB}/pandas/io/excel/_xlwt.py
${PYSITELIB}/pandas/io/excel/_xlwt.pyc
${PYSITELIB}/pandas/io/excel/_xlwt.pyo
${PYSITELIB}/pandas/io/feather_format.py
${PYSITELIB}/pandas/io/feather_format.pyc
${PYSITELIB}/pandas/io/feather_format.pyo
${PYSITELIB}/pandas/io/formats/__init__.py
${PYSITELIB}/pandas/io/formats/__init__.pyc
${PYSITELIB}/pandas/io/formats/__init__.pyo
${PYSITELIB}/pandas/io/formats/_color_data.py
${PYSITELIB}/pandas/io/formats/_color_data.pyc
${PYSITELIB}/pandas/io/formats/_color_data.pyo
${PYSITELIB}/pandas/io/formats/console.py
${PYSITELIB}/pandas/io/formats/console.pyc
${PYSITELIB}/pandas/io/formats/console.pyo
${PYSITELIB}/pandas/io/formats/css.py
${PYSITELIB}/pandas/io/formats/css.pyc
${PYSITELIB}/pandas/io/formats/css.pyo
${PYSITELIB}/pandas/io/formats/csvs.py
${PYSITELIB}/pandas/io/formats/csvs.pyc
${PYSITELIB}/pandas/io/formats/csvs.pyo
${PYSITELIB}/pandas/io/formats/excel.py
${PYSITELIB}/pandas/io/formats/excel.pyc
${PYSITELIB}/pandas/io/formats/excel.pyo
${PYSITELIB}/pandas/io/formats/format.py
${PYSITELIB}/pandas/io/formats/format.pyc
${PYSITELIB}/pandas/io/formats/format.pyo
${PYSITELIB}/pandas/io/formats/html.py
${PYSITELIB}/pandas/io/formats/html.pyc
${PYSITELIB}/pandas/io/formats/html.pyo
${PYSITELIB}/pandas/io/formats/info.py
${PYSITELIB}/pandas/io/formats/info.pyc
${PYSITELIB}/pandas/io/formats/info.pyo
${PYSITELIB}/pandas/io/formats/latex.py
${PYSITELIB}/pandas/io/formats/latex.pyc
${PYSITELIB}/pandas/io/formats/latex.pyo
${PYSITELIB}/pandas/io/formats/printing.py
${PYSITELIB}/pandas/io/formats/printing.pyc
${PYSITELIB}/pandas/io/formats/printing.pyo
${PYSITELIB}/pandas/io/formats/string.py
${PYSITELIB}/pandas/io/formats/string.pyc
${PYSITELIB}/pandas/io/formats/string.pyo
${PYSITELIB}/pandas/io/formats/style.py
${PYSITELIB}/pandas/io/formats/style.pyc
${PYSITELIB}/pandas/io/formats/style.pyo
${PYSITELIB}/pandas/io/formats/templates/html.tpl
${PYSITELIB}/pandas/io/gbq.py
${PYSITELIB}/pandas/io/gbq.pyc
${PYSITELIB}/pandas/io/gbq.pyo
${PYSITELIB}/pandas/io/html.py
${PYSITELIB}/pandas/io/html.pyc
${PYSITELIB}/pandas/io/html.pyo
${PYSITELIB}/pandas/io/json/__init__.py
${PYSITELIB}/pandas/io/json/__init__.pyc
${PYSITELIB}/pandas/io/json/__init__.pyo
${PYSITELIB}/pandas/io/json/_json.py
${PYSITELIB}/pandas/io/json/_json.pyc
${PYSITELIB}/pandas/io/json/_json.pyo
${PYSITELIB}/pandas/io/json/_normalize.py
${PYSITELIB}/pandas/io/json/_normalize.pyc
${PYSITELIB}/pandas/io/json/_normalize.pyo
${PYSITELIB}/pandas/io/json/_table_schema.py
${PYSITELIB}/pandas/io/json/_table_schema.pyc
${PYSITELIB}/pandas/io/json/_table_schema.pyo
${PYSITELIB}/pandas/io/orc.py
${PYSITELIB}/pandas/io/orc.pyc
${PYSITELIB}/pandas/io/orc.pyo
${PYSITELIB}/pandas/io/parquet.py
${PYSITELIB}/pandas/io/parquet.pyc
${PYSITELIB}/pandas/io/parquet.pyo
${PYSITELIB}/pandas/io/parsers.py
${PYSITELIB}/pandas/io/parsers.pyc
${PYSITELIB}/pandas/io/parsers.pyo
${PYSITELIB}/pandas/io/pickle.py
${PYSITELIB}/pandas/io/pickle.pyc
${PYSITELIB}/pandas/io/pickle.pyo
${PYSITELIB}/pandas/io/pytables.py
${PYSITELIB}/pandas/io/pytables.pyc
${PYSITELIB}/pandas/io/pytables.pyo
${PYSITELIB}/pandas/io/sas/__init__.py
${PYSITELIB}/pandas/io/sas/__init__.pyc
${PYSITELIB}/pandas/io/sas/__init__.pyo
${PYSITELIB}/pandas/io/sas/_sas.so
${PYSITELIB}/pandas/io/sas/sas7bdat.py
${PYSITELIB}/pandas/io/sas/sas7bdat.pyc
${PYSITELIB}/pandas/io/sas/sas7bdat.pyo
${PYSITELIB}/pandas/io/sas/sas_constants.py
${PYSITELIB}/pandas/io/sas/sas_constants.pyc
${PYSITELIB}/pandas/io/sas/sas_constants.pyo
${PYSITELIB}/pandas/io/sas/sas_xport.py
${PYSITELIB}/pandas/io/sas/sas_xport.pyc
${PYSITELIB}/pandas/io/sas/sas_xport.pyo
${PYSITELIB}/pandas/io/sas/sasreader.py
${PYSITELIB}/pandas/io/sas/sasreader.pyc
${PYSITELIB}/pandas/io/sas/sasreader.pyo
${PYSITELIB}/pandas/io/spss.py
${PYSITELIB}/pandas/io/spss.pyc
${PYSITELIB}/pandas/io/spss.pyo
${PYSITELIB}/pandas/io/sql.py
${PYSITELIB}/pandas/io/sql.pyc
${PYSITELIB}/pandas/io/sql.pyo
${PYSITELIB}/pandas/io/stata.py
${PYSITELIB}/pandas/io/stata.pyc
${PYSITELIB}/pandas/io/stata.pyo
${PYSITELIB}/pandas/plotting/__init__.py
${PYSITELIB}/pandas/plotting/__init__.pyc
${PYSITELIB}/pandas/plotting/__init__.pyo
${PYSITELIB}/pandas/plotting/_core.py
${PYSITELIB}/pandas/plotting/_core.pyc
${PYSITELIB}/pandas/plotting/_core.pyo
${PYSITELIB}/pandas/plotting/_matplotlib/__init__.py
${PYSITELIB}/pandas/plotting/_matplotlib/__init__.pyc
${PYSITELIB}/pandas/plotting/_matplotlib/__init__.pyo
${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.py
${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.pyc
${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.pyo
${PYSITELIB}/pandas/plotting/_matplotlib/compat.py
${PYSITELIB}/pandas/plotting/_matplotlib/compat.pyc
${PYSITELIB}/pandas/plotting/_matplotlib/compat.pyo
${PYSITELIB}/pandas/plotting/_matplotlib/converter.py
${PYSITELIB}/pandas/plotting/_matplotlib/converter.pyc
${PYSITELIB}/pandas/plotting/_matplotlib/converter.pyo
${PYSITELIB}/pandas/plotting/_matplotlib/core.py
${PYSITELIB}/pandas/plotting/_matplotlib/core.pyc
${PYSITELIB}/pandas/plotting/_matplotlib/core.pyo
${PYSITELIB}/pandas/plotting/_matplotlib/hist.py
${PYSITELIB}/pandas/plotting/_matplotlib/hist.pyc
${PYSITELIB}/pandas/plotting/_matplotlib/hist.pyo
${PYSITELIB}/pandas/plotting/_matplotlib/misc.py
${PYSITELIB}/pandas/plotting/_matplotlib/misc.pyc
${PYSITELIB}/pandas/plotting/_matplotlib/misc.pyo
${PYSITELIB}/pandas/plotting/_matplotlib/style.py
${PYSITELIB}/pandas/plotting/_matplotlib/style.pyc
${PYSITELIB}/pandas/plotting/_matplotlib/style.pyo
${PYSITELIB}/pandas/plotting/_matplotlib/timeseries.py
${PYSITELIB}/pandas/plotting/_matplotlib/timeseries.pyc
${PYSITELIB}/pandas/plotting/_matplotlib/timeseries.pyo
${PYSITELIB}/pandas/plotting/_matplotlib/tools.py
${PYSITELIB}/pandas/plotting/_matplotlib/tools.pyc
${PYSITELIB}/pandas/plotting/_matplotlib/tools.pyo
${PYSITELIB}/pandas/plotting/_misc.py
${PYSITELIB}/pandas/plotting/_misc.pyc
${PYSITELIB}/pandas/plotting/_misc.pyo
${PYSITELIB}/pandas/testing.py
${PYSITELIB}/pandas/testing.pyc
${PYSITELIB}/pandas/testing.pyo
${PYSITELIB}/pandas/tests/__init__.py
${PYSITELIB}/pandas/tests/__init__.pyc
${PYSITELIB}/pandas/tests/__init__.pyo
${PYSITELIB}/pandas/tests/api/__init__.py
${PYSITELIB}/pandas/tests/api/__init__.pyc
${PYSITELIB}/pandas/tests/api/__init__.pyo
${PYSITELIB}/pandas/tests/api/test_api.py
${PYSITELIB}/pandas/tests/api/test_api.pyc
${PYSITELIB}/pandas/tests/api/test_api.pyo
${PYSITELIB}/pandas/tests/api/test_types.py
${PYSITELIB}/pandas/tests/api/test_types.pyc
${PYSITELIB}/pandas/tests/api/test_types.pyo
${PYSITELIB}/pandas/tests/arithmetic/__init__.py
${PYSITELIB}/pandas/tests/arithmetic/__init__.pyc
${PYSITELIB}/pandas/tests/arithmetic/__init__.pyo
${PYSITELIB}/pandas/tests/arithmetic/common.py
${PYSITELIB}/pandas/tests/arithmetic/common.pyc
${PYSITELIB}/pandas/tests/arithmetic/common.pyo
${PYSITELIB}/pandas/tests/arithmetic/conftest.py
${PYSITELIB}/pandas/tests/arithmetic/conftest.pyc
${PYSITELIB}/pandas/tests/arithmetic/conftest.pyo
${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.py
${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.pyc
${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.pyo
${PYSITELIB}/pandas/tests/arithmetic/test_categorical.py
${PYSITELIB}/pandas/tests/arithmetic/test_categorical.pyc
${PYSITELIB}/pandas/tests/arithmetic/test_categorical.pyo
${PYSITELIB}/pandas/tests/arithmetic/test_datetime64.py
${PYSITELIB}/pandas/tests/arithmetic/test_datetime64.pyc
${PYSITELIB}/pandas/tests/arithmetic/test_datetime64.pyo
${PYSITELIB}/pandas/tests/arithmetic/test_interval.py
${PYSITELIB}/pandas/tests/arithmetic/test_interval.pyc
${PYSITELIB}/pandas/tests/arithmetic/test_interval.pyo
${PYSITELIB}/pandas/tests/arithmetic/test_numeric.py
${PYSITELIB}/pandas/tests/arithmetic/test_numeric.pyc
${PYSITELIB}/pandas/tests/arithmetic/test_numeric.pyo
${PYSITELIB}/pandas/tests/arithmetic/test_object.py
${PYSITELIB}/pandas/tests/arithmetic/test_object.pyc
${PYSITELIB}/pandas/tests/arithmetic/test_object.pyo
${PYSITELIB}/pandas/tests/arithmetic/test_period.py
${PYSITELIB}/pandas/tests/arithmetic/test_period.pyc
${PYSITELIB}/pandas/tests/arithmetic/test_period.pyo
${PYSITELIB}/pandas/tests/arithmetic/test_timedelta64.py
${PYSITELIB}/pandas/tests/arithmetic/test_timedelta64.pyc
${PYSITELIB}/pandas/tests/arithmetic/test_timedelta64.pyo
${PYSITELIB}/pandas/tests/arrays/__init__.py
${PYSITELIB}/pandas/tests/arrays/__init__.pyc
${PYSITELIB}/pandas/tests/arrays/__init__.pyo
${PYSITELIB}/pandas/tests/arrays/boolean/__init__.py
${PYSITELIB}/pandas/tests/arrays/boolean/__init__.pyc
${PYSITELIB}/pandas/tests/arrays/boolean/__init__.pyo
${PYSITELIB}/pandas/tests/arrays/boolean/test_arithmetic.py
${PYSITELIB}/pandas/tests/arrays/boolean/test_arithmetic.pyc
${PYSITELIB}/pandas/tests/arrays/boolean/test_arithmetic.pyo
${PYSITELIB}/pandas/tests/arrays/boolean/test_astype.py
${PYSITELIB}/pandas/tests/arrays/boolean/test_astype.pyc
${PYSITELIB}/pandas/tests/arrays/boolean/test_astype.pyo
${PYSITELIB}/pandas/tests/arrays/boolean/test_comparison.py
${PYSITELIB}/pandas/tests/arrays/boolean/test_comparison.pyc
${PYSITELIB}/pandas/tests/arrays/boolean/test_comparison.pyo
${PYSITELIB}/pandas/tests/arrays/boolean/test_construction.py
${PYSITELIB}/pandas/tests/arrays/boolean/test_construction.pyc
${PYSITELIB}/pandas/tests/arrays/boolean/test_construction.pyo
${PYSITELIB}/pandas/tests/arrays/boolean/test_function.py
${PYSITELIB}/pandas/tests/arrays/boolean/test_function.pyc
${PYSITELIB}/pandas/tests/arrays/boolean/test_function.pyo
${PYSITELIB}/pandas/tests/arrays/boolean/test_indexing.py
${PYSITELIB}/pandas/tests/arrays/boolean/test_indexing.pyc
${PYSITELIB}/pandas/tests/arrays/boolean/test_indexing.pyo
${PYSITELIB}/pandas/tests/arrays/boolean/test_logical.py
${PYSITELIB}/pandas/tests/arrays/boolean/test_logical.pyc
${PYSITELIB}/pandas/tests/arrays/boolean/test_logical.pyo
${PYSITELIB}/pandas/tests/arrays/boolean/test_ops.py
${PYSITELIB}/pandas/tests/arrays/boolean/test_ops.pyc
${PYSITELIB}/pandas/tests/arrays/boolean/test_ops.pyo
${PYSITELIB}/pandas/tests/arrays/boolean/test_reduction.py
${PYSITELIB}/pandas/tests/arrays/boolean/test_reduction.pyc
${PYSITELIB}/pandas/tests/arrays/boolean/test_reduction.pyo
${PYSITELIB}/pandas/tests/arrays/boolean/test_repr.py
${PYSITELIB}/pandas/tests/arrays/boolean/test_repr.pyc
${PYSITELIB}/pandas/tests/arrays/boolean/test_repr.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/__init__.py
${PYSITELIB}/pandas/tests/arrays/categorical/__init__.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/__init__.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/common.py
${PYSITELIB}/pandas/tests/arrays/categorical/common.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/common.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/conftest.py
${PYSITELIB}/pandas/tests/arrays/categorical/conftest.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/conftest.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/test_algos.py
${PYSITELIB}/pandas/tests/arrays/categorical/test_algos.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/test_algos.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/test_analytics.py
${PYSITELIB}/pandas/tests/arrays/categorical/test_analytics.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/test_analytics.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/test_api.py
${PYSITELIB}/pandas/tests/arrays/categorical/test_api.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/test_api.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/test_constructors.py
${PYSITELIB}/pandas/tests/arrays/categorical/test_constructors.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/test_constructors.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/test_dtypes.py
${PYSITELIB}/pandas/tests/arrays/categorical/test_dtypes.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/test_dtypes.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/test_indexing.py
${PYSITELIB}/pandas/tests/arrays/categorical/test_indexing.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/test_indexing.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/test_missing.py
${PYSITELIB}/pandas/tests/arrays/categorical/test_missing.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/test_missing.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/test_operators.py
${PYSITELIB}/pandas/tests/arrays/categorical/test_operators.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/test_operators.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/test_replace.py
${PYSITELIB}/pandas/tests/arrays/categorical/test_replace.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/test_replace.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/test_repr.py
${PYSITELIB}/pandas/tests/arrays/categorical/test_repr.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/test_repr.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/test_sorting.py
${PYSITELIB}/pandas/tests/arrays/categorical/test_sorting.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/test_sorting.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/test_subclass.py
${PYSITELIB}/pandas/tests/arrays/categorical/test_subclass.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/test_subclass.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/test_take.py
${PYSITELIB}/pandas/tests/arrays/categorical/test_take.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/test_take.pyo
${PYSITELIB}/pandas/tests/arrays/categorical/test_warnings.py
${PYSITELIB}/pandas/tests/arrays/categorical/test_warnings.pyc
${PYSITELIB}/pandas/tests/arrays/categorical/test_warnings.pyo
${PYSITELIB}/pandas/tests/arrays/floating/__init__.py
${PYSITELIB}/pandas/tests/arrays/floating/__init__.pyc
${PYSITELIB}/pandas/tests/arrays/floating/__init__.pyo
${PYSITELIB}/pandas/tests/arrays/floating/conftest.py
${PYSITELIB}/pandas/tests/arrays/floating/conftest.pyc
${PYSITELIB}/pandas/tests/arrays/floating/conftest.pyo
${PYSITELIB}/pandas/tests/arrays/floating/test_arithmetic.py
${PYSITELIB}/pandas/tests/arrays/floating/test_arithmetic.pyc
${PYSITELIB}/pandas/tests/arrays/floating/test_arithmetic.pyo
${PYSITELIB}/pandas/tests/arrays/floating/test_astype.py
${PYSITELIB}/pandas/tests/arrays/floating/test_astype.pyc
${PYSITELIB}/pandas/tests/arrays/floating/test_astype.pyo
${PYSITELIB}/pandas/tests/arrays/floating/test_comparison.py
${PYSITELIB}/pandas/tests/arrays/floating/test_comparison.pyc
${PYSITELIB}/pandas/tests/arrays/floating/test_comparison.pyo
${PYSITELIB}/pandas/tests/arrays/floating/test_concat.py
${PYSITELIB}/pandas/tests/arrays/floating/test_concat.pyc
${PYSITELIB}/pandas/tests/arrays/floating/test_concat.pyo
${PYSITELIB}/pandas/tests/arrays/floating/test_construction.py
${PYSITELIB}/pandas/tests/arrays/floating/test_construction.pyc
${PYSITELIB}/pandas/tests/arrays/floating/test_construction.pyo
${PYSITELIB}/pandas/tests/arrays/floating/test_function.py
${PYSITELIB}/pandas/tests/arrays/floating/test_function.pyc
${PYSITELIB}/pandas/tests/arrays/floating/test_function.pyo
${PYSITELIB}/pandas/tests/arrays/floating/test_repr.py
${PYSITELIB}/pandas/tests/arrays/floating/test_repr.pyc
${PYSITELIB}/pandas/tests/arrays/floating/test_repr.pyo
${PYSITELIB}/pandas/tests/arrays/floating/test_to_numpy.py
${PYSITELIB}/pandas/tests/arrays/floating/test_to_numpy.pyc
${PYSITELIB}/pandas/tests/arrays/floating/test_to_numpy.pyo
${PYSITELIB}/pandas/tests/arrays/integer/__init__.py
${PYSITELIB}/pandas/tests/arrays/integer/__init__.pyc
${PYSITELIB}/pandas/tests/arrays/integer/__init__.pyo
${PYSITELIB}/pandas/tests/arrays/integer/conftest.py
${PYSITELIB}/pandas/tests/arrays/integer/conftest.pyc
${PYSITELIB}/pandas/tests/arrays/integer/conftest.pyo
${PYSITELIB}/pandas/tests/arrays/integer/test_arithmetic.py
${PYSITELIB}/pandas/tests/arrays/integer/test_arithmetic.pyc
${PYSITELIB}/pandas/tests/arrays/integer/test_arithmetic.pyo
${PYSITELIB}/pandas/tests/arrays/integer/test_comparison.py
${PYSITELIB}/pandas/tests/arrays/integer/test_comparison.pyc
${PYSITELIB}/pandas/tests/arrays/integer/test_comparison.pyo
${PYSITELIB}/pandas/tests/arrays/integer/test_concat.py
${PYSITELIB}/pandas/tests/arrays/integer/test_concat.pyc
${PYSITELIB}/pandas/tests/arrays/integer/test_concat.pyo
${PYSITELIB}/pandas/tests/arrays/integer/test_construction.py
${PYSITELIB}/pandas/tests/arrays/integer/test_construction.pyc
${PYSITELIB}/pandas/tests/arrays/integer/test_construction.pyo
${PYSITELIB}/pandas/tests/arrays/integer/test_dtypes.py
${PYSITELIB}/pandas/tests/arrays/integer/test_dtypes.pyc
${PYSITELIB}/pandas/tests/arrays/integer/test_dtypes.pyo
${PYSITELIB}/pandas/tests/arrays/integer/test_function.py
${PYSITELIB}/pandas/tests/arrays/integer/test_function.pyc
${PYSITELIB}/pandas/tests/arrays/integer/test_function.pyo
${PYSITELIB}/pandas/tests/arrays/integer/test_indexing.py
${PYSITELIB}/pandas/tests/arrays/integer/test_indexing.pyc
${PYSITELIB}/pandas/tests/arrays/integer/test_indexing.pyo
${PYSITELIB}/pandas/tests/arrays/integer/test_repr.py
${PYSITELIB}/pandas/tests/arrays/integer/test_repr.pyc
${PYSITELIB}/pandas/tests/arrays/integer/test_repr.pyo
${PYSITELIB}/pandas/tests/arrays/interval/__init__.py
${PYSITELIB}/pandas/tests/arrays/interval/__init__.pyc
${PYSITELIB}/pandas/tests/arrays/interval/__init__.pyo
${PYSITELIB}/pandas/tests/arrays/interval/test_astype.py
${PYSITELIB}/pandas/tests/arrays/interval/test_astype.pyc
${PYSITELIB}/pandas/tests/arrays/interval/test_astype.pyo
${PYSITELIB}/pandas/tests/arrays/interval/test_interval.py
${PYSITELIB}/pandas/tests/arrays/interval/test_interval.pyc
${PYSITELIB}/pandas/tests/arrays/interval/test_interval.pyo
${PYSITELIB}/pandas/tests/arrays/interval/test_ops.py
${PYSITELIB}/pandas/tests/arrays/interval/test_ops.pyc
${PYSITELIB}/pandas/tests/arrays/interval/test_ops.pyo
${PYSITELIB}/pandas/tests/arrays/masked/__init__.py
${PYSITELIB}/pandas/tests/arrays/masked/__init__.pyc
${PYSITELIB}/pandas/tests/arrays/masked/__init__.pyo
${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.py
${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.pyc
${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.pyo
${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.py
${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.pyc
${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.pyo
${PYSITELIB}/pandas/tests/arrays/sparse/__init__.py
${PYSITELIB}/pandas/tests/arrays/sparse/__init__.pyc
${PYSITELIB}/pandas/tests/arrays/sparse/__init__.pyo
${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.py
${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.pyc
${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.pyo
${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.py
${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.pyc
${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.pyo
${PYSITELIB}/pandas/tests/arrays/sparse/test_array.py
${PYSITELIB}/pandas/tests/arrays/sparse/test_array.pyc
${PYSITELIB}/pandas/tests/arrays/sparse/test_array.pyo
${PYSITELIB}/pandas/tests/arrays/sparse/test_combine_concat.py
${PYSITELIB}/pandas/tests/arrays/sparse/test_combine_concat.pyc
${PYSITELIB}/pandas/tests/arrays/sparse/test_combine_concat.pyo
${PYSITELIB}/pandas/tests/arrays/sparse/test_dtype.py
${PYSITELIB}/pandas/tests/arrays/sparse/test_dtype.pyc
${PYSITELIB}/pandas/tests/arrays/sparse/test_dtype.pyo
${PYSITELIB}/pandas/tests/arrays/sparse/test_libsparse.py
${PYSITELIB}/pandas/tests/arrays/sparse/test_libsparse.pyc
${PYSITELIB}/pandas/tests/arrays/sparse/test_libsparse.pyo
${PYSITELIB}/pandas/tests/arrays/string_/__init__.py
${PYSITELIB}/pandas/tests/arrays/string_/__init__.pyc
${PYSITELIB}/pandas/tests/arrays/string_/__init__.pyo
${PYSITELIB}/pandas/tests/arrays/string_/test_string.py
${PYSITELIB}/pandas/tests/arrays/string_/test_string.pyc
${PYSITELIB}/pandas/tests/arrays/string_/test_string.pyo
${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.py
${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.pyc
${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.pyo
${PYSITELIB}/pandas/tests/arrays/test_array.py
${PYSITELIB}/pandas/tests/arrays/test_array.pyc
${PYSITELIB}/pandas/tests/arrays/test_array.pyo
${PYSITELIB}/pandas/tests/arrays/test_datetimelike.py
${PYSITELIB}/pandas/tests/arrays/test_datetimelike.pyc
${PYSITELIB}/pandas/tests/arrays/test_datetimelike.pyo
${PYSITELIB}/pandas/tests/arrays/test_datetimes.py
${PYSITELIB}/pandas/tests/arrays/test_datetimes.pyc
${PYSITELIB}/pandas/tests/arrays/test_datetimes.pyo
${PYSITELIB}/pandas/tests/arrays/test_numpy.py
${PYSITELIB}/pandas/tests/arrays/test_numpy.pyc
${PYSITELIB}/pandas/tests/arrays/test_numpy.pyo
${PYSITELIB}/pandas/tests/arrays/test_period.py
${PYSITELIB}/pandas/tests/arrays/test_period.pyc
${PYSITELIB}/pandas/tests/arrays/test_period.pyo
${PYSITELIB}/pandas/tests/arrays/test_timedeltas.py
${PYSITELIB}/pandas/tests/arrays/test_timedeltas.pyc
${PYSITELIB}/pandas/tests/arrays/test_timedeltas.pyo
${PYSITELIB}/pandas/tests/base/__init__.py
${PYSITELIB}/pandas/tests/base/__init__.pyc
${PYSITELIB}/pandas/tests/base/__init__.pyo
${PYSITELIB}/pandas/tests/base/common.py
${PYSITELIB}/pandas/tests/base/common.pyc
${PYSITELIB}/pandas/tests/base/common.pyo
${PYSITELIB}/pandas/tests/base/test_constructors.py
${PYSITELIB}/pandas/tests/base/test_constructors.pyc
${PYSITELIB}/pandas/tests/base/test_constructors.pyo
${PYSITELIB}/pandas/tests/base/test_conversion.py
${PYSITELIB}/pandas/tests/base/test_conversion.pyc
${PYSITELIB}/pandas/tests/base/test_conversion.pyo
${PYSITELIB}/pandas/tests/base/test_fillna.py
${PYSITELIB}/pandas/tests/base/test_fillna.pyc
${PYSITELIB}/pandas/tests/base/test_fillna.pyo
${PYSITELIB}/pandas/tests/base/test_misc.py
${PYSITELIB}/pandas/tests/base/test_misc.pyc
${PYSITELIB}/pandas/tests/base/test_misc.pyo
${PYSITELIB}/pandas/tests/base/test_transpose.py
${PYSITELIB}/pandas/tests/base/test_transpose.pyc
${PYSITELIB}/pandas/tests/base/test_transpose.pyo
${PYSITELIB}/pandas/tests/base/test_unique.py
${PYSITELIB}/pandas/tests/base/test_unique.pyc
${PYSITELIB}/pandas/tests/base/test_unique.pyo
${PYSITELIB}/pandas/tests/base/test_value_counts.py
${PYSITELIB}/pandas/tests/base/test_value_counts.pyc
${PYSITELIB}/pandas/tests/base/test_value_counts.pyo
${PYSITELIB}/pandas/tests/computation/__init__.py
${PYSITELIB}/pandas/tests/computation/__init__.pyc
${PYSITELIB}/pandas/tests/computation/__init__.pyo
${PYSITELIB}/pandas/tests/computation/test_compat.py
${PYSITELIB}/pandas/tests/computation/test_compat.pyc
${PYSITELIB}/pandas/tests/computation/test_compat.pyo
${PYSITELIB}/pandas/tests/computation/test_eval.py
${PYSITELIB}/pandas/tests/computation/test_eval.pyc
${PYSITELIB}/pandas/tests/computation/test_eval.pyo
${PYSITELIB}/pandas/tests/config/__init__.py
${PYSITELIB}/pandas/tests/config/__init__.pyc
${PYSITELIB}/pandas/tests/config/__init__.pyo
${PYSITELIB}/pandas/tests/config/test_config.py
${PYSITELIB}/pandas/tests/config/test_config.pyc
${PYSITELIB}/pandas/tests/config/test_config.pyo
${PYSITELIB}/pandas/tests/config/test_localization.py
${PYSITELIB}/pandas/tests/config/test_localization.pyc
${PYSITELIB}/pandas/tests/config/test_localization.pyo
${PYSITELIB}/pandas/tests/dtypes/__init__.py
${PYSITELIB}/pandas/tests/dtypes/__init__.pyc
${PYSITELIB}/pandas/tests/dtypes/__init__.pyo
${PYSITELIB}/pandas/tests/dtypes/cast/__init__.py
${PYSITELIB}/pandas/tests/dtypes/cast/__init__.pyc
${PYSITELIB}/pandas/tests/dtypes/cast/__init__.pyo
${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.py
${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.pyc
${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.pyo
${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.py
${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.pyc
${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.pyo
${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_object_arr.py
${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_object_arr.pyc
${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_object_arr.pyo
${PYSITELIB}/pandas/tests/dtypes/cast/test_dict_compat.py
${PYSITELIB}/pandas/tests/dtypes/cast/test_dict_compat.pyc
${PYSITELIB}/pandas/tests/dtypes/cast/test_dict_compat.pyo
${PYSITELIB}/pandas/tests/dtypes/cast/test_downcast.py
${PYSITELIB}/pandas/tests/dtypes/cast/test_downcast.pyc
${PYSITELIB}/pandas/tests/dtypes/cast/test_downcast.pyo
${PYSITELIB}/pandas/tests/dtypes/cast/test_find_common_type.py
${PYSITELIB}/pandas/tests/dtypes/cast/test_find_common_type.pyc
${PYSITELIB}/pandas/tests/dtypes/cast/test_find_common_type.pyo
${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_datetimelike.py
${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_datetimelike.pyc
${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_datetimelike.pyo
${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_dtype.py
${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_dtype.pyc
${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_dtype.pyo
${PYSITELIB}/pandas/tests/dtypes/cast/test_promote.py
${PYSITELIB}/pandas/tests/dtypes/cast/test_promote.pyc
${PYSITELIB}/pandas/tests/dtypes/cast/test_promote.pyo
${PYSITELIB}/pandas/tests/dtypes/cast/test_upcast.py
${PYSITELIB}/pandas/tests/dtypes/cast/test_upcast.pyc
${PYSITELIB}/pandas/tests/dtypes/cast/test_upcast.pyo
${PYSITELIB}/pandas/tests/dtypes/test_common.py
${PYSITELIB}/pandas/tests/dtypes/test_common.pyc
${PYSITELIB}/pandas/tests/dtypes/test_common.pyo
${PYSITELIB}/pandas/tests/dtypes/test_concat.py
${PYSITELIB}/pandas/tests/dtypes/test_concat.pyc
${PYSITELIB}/pandas/tests/dtypes/test_concat.pyo
${PYSITELIB}/pandas/tests/dtypes/test_dtypes.py
${PYSITELIB}/pandas/tests/dtypes/test_dtypes.pyc
${PYSITELIB}/pandas/tests/dtypes/test_dtypes.pyo
${PYSITELIB}/pandas/tests/dtypes/test_generic.py
${PYSITELIB}/pandas/tests/dtypes/test_generic.pyc
${PYSITELIB}/pandas/tests/dtypes/test_generic.pyo
${PYSITELIB}/pandas/tests/dtypes/test_inference.py
${PYSITELIB}/pandas/tests/dtypes/test_inference.pyc
${PYSITELIB}/pandas/tests/dtypes/test_inference.pyo
${PYSITELIB}/pandas/tests/dtypes/test_missing.py
${PYSITELIB}/pandas/tests/dtypes/test_missing.pyc
${PYSITELIB}/pandas/tests/dtypes/test_missing.pyo
${PYSITELIB}/pandas/tests/extension/__init__.py
${PYSITELIB}/pandas/tests/extension/__init__.pyc
${PYSITELIB}/pandas/tests/extension/__init__.pyo
${PYSITELIB}/pandas/tests/extension/arrow/__init__.py
${PYSITELIB}/pandas/tests/extension/arrow/__init__.pyc
${PYSITELIB}/pandas/tests/extension/arrow/__init__.pyo
${PYSITELIB}/pandas/tests/extension/arrow/arrays.py
${PYSITELIB}/pandas/tests/extension/arrow/arrays.pyc
${PYSITELIB}/pandas/tests/extension/arrow/arrays.pyo
${PYSITELIB}/pandas/tests/extension/arrow/test_bool.py
${PYSITELIB}/pandas/tests/extension/arrow/test_bool.pyc
${PYSITELIB}/pandas/tests/extension/arrow/test_bool.pyo
${PYSITELIB}/pandas/tests/extension/arrow/test_string.py
${PYSITELIB}/pandas/tests/extension/arrow/test_string.pyc
${PYSITELIB}/pandas/tests/extension/arrow/test_string.pyo
${PYSITELIB}/pandas/tests/extension/base/__init__.py
${PYSITELIB}/pandas/tests/extension/base/__init__.pyc
${PYSITELIB}/pandas/tests/extension/base/__init__.pyo
${PYSITELIB}/pandas/tests/extension/base/base.py
${PYSITELIB}/pandas/tests/extension/base/base.pyc
${PYSITELIB}/pandas/tests/extension/base/base.pyo
${PYSITELIB}/pandas/tests/extension/base/casting.py
${PYSITELIB}/pandas/tests/extension/base/casting.pyc
${PYSITELIB}/pandas/tests/extension/base/casting.pyo
${PYSITELIB}/pandas/tests/extension/base/constructors.py
${PYSITELIB}/pandas/tests/extension/base/constructors.pyc
${PYSITELIB}/pandas/tests/extension/base/constructors.pyo
${PYSITELIB}/pandas/tests/extension/base/dtype.py
${PYSITELIB}/pandas/tests/extension/base/dtype.pyc
${PYSITELIB}/pandas/tests/extension/base/dtype.pyo
${PYSITELIB}/pandas/tests/extension/base/getitem.py
${PYSITELIB}/pandas/tests/extension/base/getitem.pyc
${PYSITELIB}/pandas/tests/extension/base/getitem.pyo
${PYSITELIB}/pandas/tests/extension/base/groupby.py
${PYSITELIB}/pandas/tests/extension/base/groupby.pyc
${PYSITELIB}/pandas/tests/extension/base/groupby.pyo
${PYSITELIB}/pandas/tests/extension/base/interface.py
${PYSITELIB}/pandas/tests/extension/base/interface.pyc
${PYSITELIB}/pandas/tests/extension/base/interface.pyo
${PYSITELIB}/pandas/tests/extension/base/io.py
${PYSITELIB}/pandas/tests/extension/base/io.pyc
${PYSITELIB}/pandas/tests/extension/base/io.pyo
${PYSITELIB}/pandas/tests/extension/base/methods.py
${PYSITELIB}/pandas/tests/extension/base/methods.pyc
${PYSITELIB}/pandas/tests/extension/base/methods.pyo
${PYSITELIB}/pandas/tests/extension/base/missing.py
${PYSITELIB}/pandas/tests/extension/base/missing.pyc
${PYSITELIB}/pandas/tests/extension/base/missing.pyo
${PYSITELIB}/pandas/tests/extension/base/ops.py
${PYSITELIB}/pandas/tests/extension/base/ops.pyc
${PYSITELIB}/pandas/tests/extension/base/ops.pyo
${PYSITELIB}/pandas/tests/extension/base/printing.py
${PYSITELIB}/pandas/tests/extension/base/printing.pyc
${PYSITELIB}/pandas/tests/extension/base/printing.pyo
${PYSITELIB}/pandas/tests/extension/base/reduce.py
${PYSITELIB}/pandas/tests/extension/base/reduce.pyc
${PYSITELIB}/pandas/tests/extension/base/reduce.pyo
${PYSITELIB}/pandas/tests/extension/base/reshaping.py
${PYSITELIB}/pandas/tests/extension/base/reshaping.pyc
${PYSITELIB}/pandas/tests/extension/base/reshaping.pyo
${PYSITELIB}/pandas/tests/extension/base/setitem.py
${PYSITELIB}/pandas/tests/extension/base/setitem.pyc
${PYSITELIB}/pandas/tests/extension/base/setitem.pyo
${PYSITELIB}/pandas/tests/extension/conftest.py
${PYSITELIB}/pandas/tests/extension/conftest.pyc
${PYSITELIB}/pandas/tests/extension/conftest.pyo
${PYSITELIB}/pandas/tests/extension/decimal/__init__.py
${PYSITELIB}/pandas/tests/extension/decimal/__init__.pyc
${PYSITELIB}/pandas/tests/extension/decimal/__init__.pyo
${PYSITELIB}/pandas/tests/extension/decimal/array.py
${PYSITELIB}/pandas/tests/extension/decimal/array.pyc
${PYSITELIB}/pandas/tests/extension/decimal/array.pyo
${PYSITELIB}/pandas/tests/extension/decimal/test_decimal.py
${PYSITELIB}/pandas/tests/extension/decimal/test_decimal.pyc
${PYSITELIB}/pandas/tests/extension/decimal/test_decimal.pyo
${PYSITELIB}/pandas/tests/extension/json/__init__.py
${PYSITELIB}/pandas/tests/extension/json/__init__.pyc
${PYSITELIB}/pandas/tests/extension/json/__init__.pyo
${PYSITELIB}/pandas/tests/extension/json/array.py
${PYSITELIB}/pandas/tests/extension/json/array.pyc
${PYSITELIB}/pandas/tests/extension/json/array.pyo
${PYSITELIB}/pandas/tests/extension/json/test_json.py
${PYSITELIB}/pandas/tests/extension/json/test_json.pyc
${PYSITELIB}/pandas/tests/extension/json/test_json.pyo
${PYSITELIB}/pandas/tests/extension/list/__init__.py
${PYSITELIB}/pandas/tests/extension/list/__init__.pyc
${PYSITELIB}/pandas/tests/extension/list/__init__.pyo
${PYSITELIB}/pandas/tests/extension/list/array.py
${PYSITELIB}/pandas/tests/extension/list/array.pyc
${PYSITELIB}/pandas/tests/extension/list/array.pyo
${PYSITELIB}/pandas/tests/extension/list/test_list.py
${PYSITELIB}/pandas/tests/extension/list/test_list.pyc
${PYSITELIB}/pandas/tests/extension/list/test_list.pyo
${PYSITELIB}/pandas/tests/extension/test_boolean.py
${PYSITELIB}/pandas/tests/extension/test_boolean.pyc
${PYSITELIB}/pandas/tests/extension/test_boolean.pyo
${PYSITELIB}/pandas/tests/extension/test_categorical.py
${PYSITELIB}/pandas/tests/extension/test_categorical.pyc
${PYSITELIB}/pandas/tests/extension/test_categorical.pyo
${PYSITELIB}/pandas/tests/extension/test_common.py
${PYSITELIB}/pandas/tests/extension/test_common.pyc
${PYSITELIB}/pandas/tests/extension/test_common.pyo
${PYSITELIB}/pandas/tests/extension/test_datetime.py
${PYSITELIB}/pandas/tests/extension/test_datetime.pyc
${PYSITELIB}/pandas/tests/extension/test_datetime.pyo
${PYSITELIB}/pandas/tests/extension/test_external_block.py
${PYSITELIB}/pandas/tests/extension/test_external_block.pyc
${PYSITELIB}/pandas/tests/extension/test_external_block.pyo
${PYSITELIB}/pandas/tests/extension/test_floating.py
${PYSITELIB}/pandas/tests/extension/test_floating.pyc
${PYSITELIB}/pandas/tests/extension/test_floating.pyo
${PYSITELIB}/pandas/tests/extension/test_integer.py
${PYSITELIB}/pandas/tests/extension/test_integer.pyc
${PYSITELIB}/pandas/tests/extension/test_integer.pyo
${PYSITELIB}/pandas/tests/extension/test_interval.py
${PYSITELIB}/pandas/tests/extension/test_interval.pyc
${PYSITELIB}/pandas/tests/extension/test_interval.pyo
${PYSITELIB}/pandas/tests/extension/test_numpy.py
${PYSITELIB}/pandas/tests/extension/test_numpy.pyc
${PYSITELIB}/pandas/tests/extension/test_numpy.pyo
${PYSITELIB}/pandas/tests/extension/test_period.py
${PYSITELIB}/pandas/tests/extension/test_period.pyc
${PYSITELIB}/pandas/tests/extension/test_period.pyo
${PYSITELIB}/pandas/tests/extension/test_sparse.py
${PYSITELIB}/pandas/tests/extension/test_sparse.pyc
${PYSITELIB}/pandas/tests/extension/test_sparse.pyo
${PYSITELIB}/pandas/tests/extension/test_string.py
${PYSITELIB}/pandas/tests/extension/test_string.pyc
${PYSITELIB}/pandas/tests/extension/test_string.pyo
${PYSITELIB}/pandas/tests/frame/__init__.py
${PYSITELIB}/pandas/tests/frame/__init__.pyc
${PYSITELIB}/pandas/tests/frame/__init__.pyo
${PYSITELIB}/pandas/tests/frame/apply/__init__.py
${PYSITELIB}/pandas/tests/frame/apply/__init__.pyc
${PYSITELIB}/pandas/tests/frame/apply/__init__.pyo
${PYSITELIB}/pandas/tests/frame/apply/test_apply_relabeling.py
${PYSITELIB}/pandas/tests/frame/apply/test_apply_relabeling.pyc
${PYSITELIB}/pandas/tests/frame/apply/test_apply_relabeling.pyo
${PYSITELIB}/pandas/tests/frame/apply/test_frame_apply.py
${PYSITELIB}/pandas/tests/frame/apply/test_frame_apply.pyc
${PYSITELIB}/pandas/tests/frame/apply/test_frame_apply.pyo
${PYSITELIB}/pandas/tests/frame/apply/test_frame_transform.py
${PYSITELIB}/pandas/tests/frame/apply/test_frame_transform.pyc
${PYSITELIB}/pandas/tests/frame/apply/test_frame_transform.pyo
${PYSITELIB}/pandas/tests/frame/common.py
${PYSITELIB}/pandas/tests/frame/common.pyc
${PYSITELIB}/pandas/tests/frame/common.pyo
${PYSITELIB}/pandas/tests/frame/conftest.py
${PYSITELIB}/pandas/tests/frame/conftest.pyc
${PYSITELIB}/pandas/tests/frame/conftest.pyo
${PYSITELIB}/pandas/tests/frame/indexing/__init__.py
${PYSITELIB}/pandas/tests/frame/indexing/__init__.pyc
${PYSITELIB}/pandas/tests/frame/indexing/__init__.pyo
${PYSITELIB}/pandas/tests/frame/indexing/test_categorical.py
${PYSITELIB}/pandas/tests/frame/indexing/test_categorical.pyc
${PYSITELIB}/pandas/tests/frame/indexing/test_categorical.pyo
${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.py
${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.pyc
${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.pyo
${PYSITELIB}/pandas/tests/frame/indexing/test_get.py
${PYSITELIB}/pandas/tests/frame/indexing/test_get.pyc
${PYSITELIB}/pandas/tests/frame/indexing/test_get.pyo
${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.py
${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.pyc
${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.pyo
${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.py
${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.pyc
${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.pyo
${PYSITELIB}/pandas/tests/frame/indexing/test_indexing.py
${PYSITELIB}/pandas/tests/frame/indexing/test_indexing.pyc
${PYSITELIB}/pandas/tests/frame/indexing/test_indexing.pyo
${PYSITELIB}/pandas/tests/frame/indexing/test_insert.py
${PYSITELIB}/pandas/tests/frame/indexing/test_insert.pyc
${PYSITELIB}/pandas/tests/frame/indexing/test_insert.pyo
${PYSITELIB}/pandas/tests/frame/indexing/test_lookup.py
${PYSITELIB}/pandas/tests/frame/indexing/test_lookup.pyc
${PYSITELIB}/pandas/tests/frame/indexing/test_lookup.pyo
${PYSITELIB}/pandas/tests/frame/indexing/test_mask.py
${PYSITELIB}/pandas/tests/frame/indexing/test_mask.pyc
${PYSITELIB}/pandas/tests/frame/indexing/test_mask.pyo
${PYSITELIB}/pandas/tests/frame/indexing/test_set_value.py
${PYSITELIB}/pandas/tests/frame/indexing/test_set_value.pyc
${PYSITELIB}/pandas/tests/frame/indexing/test_set_value.pyo
${PYSITELIB}/pandas/tests/frame/indexing/test_setitem.py
${PYSITELIB}/pandas/tests/frame/indexing/test_setitem.pyc
${PYSITELIB}/pandas/tests/frame/indexing/test_setitem.pyo
${PYSITELIB}/pandas/tests/frame/indexing/test_take.py
${PYSITELIB}/pandas/tests/frame/indexing/test_take.pyc
${PYSITELIB}/pandas/tests/frame/indexing/test_take.pyo
${PYSITELIB}/pandas/tests/frame/indexing/test_where.py
${PYSITELIB}/pandas/tests/frame/indexing/test_where.pyc
${PYSITELIB}/pandas/tests/frame/indexing/test_where.pyo
${PYSITELIB}/pandas/tests/frame/indexing/test_xs.py
${PYSITELIB}/pandas/tests/frame/indexing/test_xs.pyc
${PYSITELIB}/pandas/tests/frame/indexing/test_xs.pyo
${PYSITELIB}/pandas/tests/frame/methods/__init__.py
${PYSITELIB}/pandas/tests/frame/methods/__init__.pyc
${PYSITELIB}/pandas/tests/frame/methods/__init__.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_add_prefix_suffix.py
${PYSITELIB}/pandas/tests/frame/methods/test_add_prefix_suffix.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_add_prefix_suffix.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_align.py
${PYSITELIB}/pandas/tests/frame/methods/test_align.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_align.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_append.py
${PYSITELIB}/pandas/tests/frame/methods/test_append.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_append.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_asfreq.py
${PYSITELIB}/pandas/tests/frame/methods/test_asfreq.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_asfreq.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_asof.py
${PYSITELIB}/pandas/tests/frame/methods/test_asof.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_asof.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_assign.py
${PYSITELIB}/pandas/tests/frame/methods/test_assign.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_assign.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_astype.py
${PYSITELIB}/pandas/tests/frame/methods/test_astype.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_astype.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_at_time.py
${PYSITELIB}/pandas/tests/frame/methods/test_at_time.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_at_time.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_between_time.py
${PYSITELIB}/pandas/tests/frame/methods/test_between_time.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_between_time.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_clip.py
${PYSITELIB}/pandas/tests/frame/methods/test_clip.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_clip.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_combine.py
${PYSITELIB}/pandas/tests/frame/methods/test_combine.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_combine.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_combine_first.py
${PYSITELIB}/pandas/tests/frame/methods/test_combine_first.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_combine_first.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_compare.py
${PYSITELIB}/pandas/tests/frame/methods/test_compare.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_compare.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_convert.py
${PYSITELIB}/pandas/tests/frame/methods/test_convert.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_convert.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_convert_dtypes.py
${PYSITELIB}/pandas/tests/frame/methods/test_convert_dtypes.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_convert_dtypes.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_copy.py
${PYSITELIB}/pandas/tests/frame/methods/test_copy.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_copy.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_count.py
${PYSITELIB}/pandas/tests/frame/methods/test_count.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_count.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_cov_corr.py
${PYSITELIB}/pandas/tests/frame/methods/test_cov_corr.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_cov_corr.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_describe.py
${PYSITELIB}/pandas/tests/frame/methods/test_describe.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_describe.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_diff.py
${PYSITELIB}/pandas/tests/frame/methods/test_diff.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_diff.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_drop.py
${PYSITELIB}/pandas/tests/frame/methods/test_drop.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_drop.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_drop_duplicates.py
${PYSITELIB}/pandas/tests/frame/methods/test_drop_duplicates.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_drop_duplicates.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_droplevel.py
${PYSITELIB}/pandas/tests/frame/methods/test_droplevel.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_droplevel.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_dropna.py
${PYSITELIB}/pandas/tests/frame/methods/test_dropna.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_dropna.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_dtypes.py
${PYSITELIB}/pandas/tests/frame/methods/test_dtypes.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_dtypes.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_duplicated.py
${PYSITELIB}/pandas/tests/frame/methods/test_duplicated.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_duplicated.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_equals.py
${PYSITELIB}/pandas/tests/frame/methods/test_equals.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_equals.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_explode.py
${PYSITELIB}/pandas/tests/frame/methods/test_explode.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_explode.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_fillna.py
${PYSITELIB}/pandas/tests/frame/methods/test_fillna.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_fillna.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_filter.py
${PYSITELIB}/pandas/tests/frame/methods/test_filter.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_filter.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_first_and_last.py
${PYSITELIB}/pandas/tests/frame/methods/test_first_and_last.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_first_and_last.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_get_numeric_data.py
${PYSITELIB}/pandas/tests/frame/methods/test_get_numeric_data.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_get_numeric_data.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_head_tail.py
${PYSITELIB}/pandas/tests/frame/methods/test_head_tail.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_head_tail.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_infer_objects.py
${PYSITELIB}/pandas/tests/frame/methods/test_infer_objects.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_infer_objects.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_interpolate.py
${PYSITELIB}/pandas/tests/frame/methods/test_interpolate.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_interpolate.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_is_homogeneous_dtype.py
${PYSITELIB}/pandas/tests/frame/methods/test_is_homogeneous_dtype.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_is_homogeneous_dtype.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_isin.py
${PYSITELIB}/pandas/tests/frame/methods/test_isin.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_isin.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_join.py
${PYSITELIB}/pandas/tests/frame/methods/test_join.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_join.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_matmul.py
${PYSITELIB}/pandas/tests/frame/methods/test_matmul.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_matmul.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_nlargest.py
${PYSITELIB}/pandas/tests/frame/methods/test_nlargest.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_nlargest.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_pct_change.py
${PYSITELIB}/pandas/tests/frame/methods/test_pct_change.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_pct_change.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_pop.py
${PYSITELIB}/pandas/tests/frame/methods/test_pop.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_pop.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_quantile.py
${PYSITELIB}/pandas/tests/frame/methods/test_quantile.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_quantile.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_rank.py
${PYSITELIB}/pandas/tests/frame/methods/test_rank.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_rank.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_reindex.py
${PYSITELIB}/pandas/tests/frame/methods/test_reindex.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_reindex.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_reindex_like.py
${PYSITELIB}/pandas/tests/frame/methods/test_reindex_like.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_reindex_like.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_rename.py
${PYSITELIB}/pandas/tests/frame/methods/test_rename.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_rename.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_rename_axis.py
${PYSITELIB}/pandas/tests/frame/methods/test_rename_axis.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_rename_axis.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_replace.py
${PYSITELIB}/pandas/tests/frame/methods/test_replace.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_replace.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_reset_index.py
${PYSITELIB}/pandas/tests/frame/methods/test_reset_index.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_reset_index.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_round.py
${PYSITELIB}/pandas/tests/frame/methods/test_round.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_round.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_select_dtypes.py
${PYSITELIB}/pandas/tests/frame/methods/test_select_dtypes.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_select_dtypes.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_set_index.py
${PYSITELIB}/pandas/tests/frame/methods/test_set_index.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_set_index.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_shift.py
${PYSITELIB}/pandas/tests/frame/methods/test_shift.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_shift.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_sort_index.py
${PYSITELIB}/pandas/tests/frame/methods/test_sort_index.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_sort_index.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_sort_values.py
${PYSITELIB}/pandas/tests/frame/methods/test_sort_values.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_sort_values.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_swapaxes.py
${PYSITELIB}/pandas/tests/frame/methods/test_swapaxes.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_swapaxes.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_swaplevel.py
${PYSITELIB}/pandas/tests/frame/methods/test_swaplevel.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_swaplevel.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_to_csv.py
${PYSITELIB}/pandas/tests/frame/methods/test_to_csv.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_to_csv.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_to_dict.py
${PYSITELIB}/pandas/tests/frame/methods/test_to_dict.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_to_dict.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_to_dict_of_blocks.py
${PYSITELIB}/pandas/tests/frame/methods/test_to_dict_of_blocks.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_to_dict_of_blocks.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_to_numpy.py
${PYSITELIB}/pandas/tests/frame/methods/test_to_numpy.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_to_numpy.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_to_period.py
${PYSITELIB}/pandas/tests/frame/methods/test_to_period.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_to_period.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_to_records.py
${PYSITELIB}/pandas/tests/frame/methods/test_to_records.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_to_records.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_to_timestamp.py
${PYSITELIB}/pandas/tests/frame/methods/test_to_timestamp.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_to_timestamp.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_transpose.py
${PYSITELIB}/pandas/tests/frame/methods/test_transpose.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_transpose.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_truncate.py
${PYSITELIB}/pandas/tests/frame/methods/test_truncate.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_truncate.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_tz_convert.py
${PYSITELIB}/pandas/tests/frame/methods/test_tz_convert.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_tz_convert.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_tz_localize.py
${PYSITELIB}/pandas/tests/frame/methods/test_tz_localize.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_tz_localize.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_update.py
${PYSITELIB}/pandas/tests/frame/methods/test_update.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_update.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_value_counts.py
${PYSITELIB}/pandas/tests/frame/methods/test_value_counts.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_value_counts.pyo
${PYSITELIB}/pandas/tests/frame/methods/test_values.py
${PYSITELIB}/pandas/tests/frame/methods/test_values.pyc
${PYSITELIB}/pandas/tests/frame/methods/test_values.pyo
${PYSITELIB}/pandas/tests/frame/test_alter_axes.py
${PYSITELIB}/pandas/tests/frame/test_alter_axes.pyc
${PYSITELIB}/pandas/tests/frame/test_alter_axes.pyo
${PYSITELIB}/pandas/tests/frame/test_api.py
${PYSITELIB}/pandas/tests/frame/test_api.pyc
${PYSITELIB}/pandas/tests/frame/test_api.pyo
${PYSITELIB}/pandas/tests/frame/test_arithmetic.py
${PYSITELIB}/pandas/tests/frame/test_arithmetic.pyc
${PYSITELIB}/pandas/tests/frame/test_arithmetic.pyo
${PYSITELIB}/pandas/tests/frame/test_block_internals.py
${PYSITELIB}/pandas/tests/frame/test_block_internals.pyc
${PYSITELIB}/pandas/tests/frame/test_block_internals.pyo
${PYSITELIB}/pandas/tests/frame/test_constructors.py
${PYSITELIB}/pandas/tests/frame/test_constructors.pyc
${PYSITELIB}/pandas/tests/frame/test_constructors.pyo
${PYSITELIB}/pandas/tests/frame/test_cumulative.py
${PYSITELIB}/pandas/tests/frame/test_cumulative.pyc
${PYSITELIB}/pandas/tests/frame/test_cumulative.pyo
${PYSITELIB}/pandas/tests/frame/test_iteration.py
${PYSITELIB}/pandas/tests/frame/test_iteration.pyc
${PYSITELIB}/pandas/tests/frame/test_iteration.pyo
${PYSITELIB}/pandas/tests/frame/test_logical_ops.py
${PYSITELIB}/pandas/tests/frame/test_logical_ops.pyc
${PYSITELIB}/pandas/tests/frame/test_logical_ops.pyo
${PYSITELIB}/pandas/tests/frame/test_nonunique_indexes.py
${PYSITELIB}/pandas/tests/frame/test_nonunique_indexes.pyc
${PYSITELIB}/pandas/tests/frame/test_nonunique_indexes.pyo
${PYSITELIB}/pandas/tests/frame/test_npfuncs.py
${PYSITELIB}/pandas/tests/frame/test_npfuncs.pyc
${PYSITELIB}/pandas/tests/frame/test_npfuncs.pyo
${PYSITELIB}/pandas/tests/frame/test_query_eval.py
${PYSITELIB}/pandas/tests/frame/test_query_eval.pyc
${PYSITELIB}/pandas/tests/frame/test_query_eval.pyo
${PYSITELIB}/pandas/tests/frame/test_reductions.py
${PYSITELIB}/pandas/tests/frame/test_reductions.pyc
${PYSITELIB}/pandas/tests/frame/test_reductions.pyo
${PYSITELIB}/pandas/tests/frame/test_repr_info.py
${PYSITELIB}/pandas/tests/frame/test_repr_info.pyc
${PYSITELIB}/pandas/tests/frame/test_repr_info.pyo
${PYSITELIB}/pandas/tests/frame/test_stack_unstack.py
${PYSITELIB}/pandas/tests/frame/test_stack_unstack.pyc
${PYSITELIB}/pandas/tests/frame/test_stack_unstack.pyo
${PYSITELIB}/pandas/tests/frame/test_subclass.py
${PYSITELIB}/pandas/tests/frame/test_subclass.pyc
${PYSITELIB}/pandas/tests/frame/test_subclass.pyo
${PYSITELIB}/pandas/tests/frame/test_ufunc.py
${PYSITELIB}/pandas/tests/frame/test_ufunc.pyc
${PYSITELIB}/pandas/tests/frame/test_ufunc.pyo
${PYSITELIB}/pandas/tests/frame/test_unary.py
${PYSITELIB}/pandas/tests/frame/test_unary.pyc
${PYSITELIB}/pandas/tests/frame/test_unary.pyo
${PYSITELIB}/pandas/tests/frame/test_validate.py
${PYSITELIB}/pandas/tests/frame/test_validate.pyc
${PYSITELIB}/pandas/tests/frame/test_validate.pyo
${PYSITELIB}/pandas/tests/generic/__init__.py
${PYSITELIB}/pandas/tests/generic/__init__.pyc
${PYSITELIB}/pandas/tests/generic/__init__.pyo
${PYSITELIB}/pandas/tests/generic/methods/__init__.py
${PYSITELIB}/pandas/tests/generic/methods/__init__.pyc
${PYSITELIB}/pandas/tests/generic/methods/__init__.pyo
${PYSITELIB}/pandas/tests/generic/methods/test_dot.py
${PYSITELIB}/pandas/tests/generic/methods/test_dot.pyc
${PYSITELIB}/pandas/tests/generic/methods/test_dot.pyo
${PYSITELIB}/pandas/tests/generic/methods/test_first_valid_index.py
${PYSITELIB}/pandas/tests/generic/methods/test_first_valid_index.pyc
${PYSITELIB}/pandas/tests/generic/methods/test_first_valid_index.pyo
${PYSITELIB}/pandas/tests/generic/methods/test_pipe.py
${PYSITELIB}/pandas/tests/generic/methods/test_pipe.pyc
${PYSITELIB}/pandas/tests/generic/methods/test_pipe.pyo
${PYSITELIB}/pandas/tests/generic/methods/test_reorder_levels.py
${PYSITELIB}/pandas/tests/generic/methods/test_reorder_levels.pyc
${PYSITELIB}/pandas/tests/generic/methods/test_reorder_levels.pyo
${PYSITELIB}/pandas/tests/generic/methods/test_sample.py
${PYSITELIB}/pandas/tests/generic/methods/test_sample.pyc
${PYSITELIB}/pandas/tests/generic/methods/test_sample.pyo
${PYSITELIB}/pandas/tests/generic/methods/test_set_axis.py
${PYSITELIB}/pandas/tests/generic/methods/test_set_axis.pyc
${PYSITELIB}/pandas/tests/generic/methods/test_set_axis.pyo
${PYSITELIB}/pandas/tests/generic/test_duplicate_labels.py
${PYSITELIB}/pandas/tests/generic/test_duplicate_labels.pyc
${PYSITELIB}/pandas/tests/generic/test_duplicate_labels.pyo
${PYSITELIB}/pandas/tests/generic/test_finalize.py
${PYSITELIB}/pandas/tests/generic/test_finalize.pyc
${PYSITELIB}/pandas/tests/generic/test_finalize.pyo
${PYSITELIB}/pandas/tests/generic/test_frame.py
${PYSITELIB}/pandas/tests/generic/test_frame.pyc
${PYSITELIB}/pandas/tests/generic/test_frame.pyo
${PYSITELIB}/pandas/tests/generic/test_generic.py
${PYSITELIB}/pandas/tests/generic/test_generic.pyc
${PYSITELIB}/pandas/tests/generic/test_generic.pyo
${PYSITELIB}/pandas/tests/generic/test_label_or_level_utils.py
${PYSITELIB}/pandas/tests/generic/test_label_or_level_utils.pyc
${PYSITELIB}/pandas/tests/generic/test_label_or_level_utils.pyo
${PYSITELIB}/pandas/tests/generic/test_series.py
${PYSITELIB}/pandas/tests/generic/test_series.pyc
${PYSITELIB}/pandas/tests/generic/test_series.pyo
${PYSITELIB}/pandas/tests/generic/test_to_xarray.py
${PYSITELIB}/pandas/tests/generic/test_to_xarray.pyc
${PYSITELIB}/pandas/tests/generic/test_to_xarray.pyo
${PYSITELIB}/pandas/tests/groupby/__init__.py
${PYSITELIB}/pandas/tests/groupby/__init__.pyc
${PYSITELIB}/pandas/tests/groupby/__init__.pyo
${PYSITELIB}/pandas/tests/groupby/aggregate/__init__.py
${PYSITELIB}/pandas/tests/groupby/aggregate/__init__.pyc
${PYSITELIB}/pandas/tests/groupby/aggregate/__init__.pyo
${PYSITELIB}/pandas/tests/groupby/aggregate/test_aggregate.py
${PYSITELIB}/pandas/tests/groupby/aggregate/test_aggregate.pyc
${PYSITELIB}/pandas/tests/groupby/aggregate/test_aggregate.pyo
${PYSITELIB}/pandas/tests/groupby/aggregate/test_cython.py
${PYSITELIB}/pandas/tests/groupby/aggregate/test_cython.pyc
${PYSITELIB}/pandas/tests/groupby/aggregate/test_cython.pyo
${PYSITELIB}/pandas/tests/groupby/aggregate/test_numba.py
${PYSITELIB}/pandas/tests/groupby/aggregate/test_numba.pyc
${PYSITELIB}/pandas/tests/groupby/aggregate/test_numba.pyo
${PYSITELIB}/pandas/tests/groupby/aggregate/test_other.py
${PYSITELIB}/pandas/tests/groupby/aggregate/test_other.pyc
${PYSITELIB}/pandas/tests/groupby/aggregate/test_other.pyo
${PYSITELIB}/pandas/tests/groupby/conftest.py
${PYSITELIB}/pandas/tests/groupby/conftest.pyc
${PYSITELIB}/pandas/tests/groupby/conftest.pyo
${PYSITELIB}/pandas/tests/groupby/test_allowlist.py
${PYSITELIB}/pandas/tests/groupby/test_allowlist.pyc
${PYSITELIB}/pandas/tests/groupby/test_allowlist.pyo
${PYSITELIB}/pandas/tests/groupby/test_apply.py
${PYSITELIB}/pandas/tests/groupby/test_apply.pyc
${PYSITELIB}/pandas/tests/groupby/test_apply.pyo
${PYSITELIB}/pandas/tests/groupby/test_apply_mutate.py
${PYSITELIB}/pandas/tests/groupby/test_apply_mutate.pyc
${PYSITELIB}/pandas/tests/groupby/test_apply_mutate.pyo
${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.py
${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.pyc
${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.pyo
${PYSITELIB}/pandas/tests/groupby/test_categorical.py
${PYSITELIB}/pandas/tests/groupby/test_categorical.pyc
${PYSITELIB}/pandas/tests/groupby/test_categorical.pyo
${PYSITELIB}/pandas/tests/groupby/test_counting.py
${PYSITELIB}/pandas/tests/groupby/test_counting.pyc
${PYSITELIB}/pandas/tests/groupby/test_counting.pyo
${PYSITELIB}/pandas/tests/groupby/test_filters.py
${PYSITELIB}/pandas/tests/groupby/test_filters.pyc
${PYSITELIB}/pandas/tests/groupby/test_filters.pyo
${PYSITELIB}/pandas/tests/groupby/test_function.py
${PYSITELIB}/pandas/tests/groupby/test_function.pyc
${PYSITELIB}/pandas/tests/groupby/test_function.pyo
${PYSITELIB}/pandas/tests/groupby/test_groupby.py
${PYSITELIB}/pandas/tests/groupby/test_groupby.pyc
${PYSITELIB}/pandas/tests/groupby/test_groupby.pyo
${PYSITELIB}/pandas/tests/groupby/test_groupby_dropna.py
${PYSITELIB}/pandas/tests/groupby/test_groupby_dropna.pyc
${PYSITELIB}/pandas/tests/groupby/test_groupby_dropna.pyo
${PYSITELIB}/pandas/tests/groupby/test_groupby_shift_diff.py
${PYSITELIB}/pandas/tests/groupby/test_groupby_shift_diff.pyc
${PYSITELIB}/pandas/tests/groupby/test_groupby_shift_diff.pyo
${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.py
${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.pyc
${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.pyo
${PYSITELIB}/pandas/tests/groupby/test_grouping.py
${PYSITELIB}/pandas/tests/groupby/test_grouping.pyc
${PYSITELIB}/pandas/tests/groupby/test_grouping.pyo
${PYSITELIB}/pandas/tests/groupby/test_index_as_string.py
${PYSITELIB}/pandas/tests/groupby/test_index_as_string.pyc
${PYSITELIB}/pandas/tests/groupby/test_index_as_string.pyo
${PYSITELIB}/pandas/tests/groupby/test_libgroupby.py
${PYSITELIB}/pandas/tests/groupby/test_libgroupby.pyc
${PYSITELIB}/pandas/tests/groupby/test_libgroupby.pyo
${PYSITELIB}/pandas/tests/groupby/test_missing.py
${PYSITELIB}/pandas/tests/groupby/test_missing.pyc
${PYSITELIB}/pandas/tests/groupby/test_missing.pyo
${PYSITELIB}/pandas/tests/groupby/test_nth.py
${PYSITELIB}/pandas/tests/groupby/test_nth.pyc
${PYSITELIB}/pandas/tests/groupby/test_nth.pyo
${PYSITELIB}/pandas/tests/groupby/test_nunique.py
${PYSITELIB}/pandas/tests/groupby/test_nunique.pyc
${PYSITELIB}/pandas/tests/groupby/test_nunique.pyo
${PYSITELIB}/pandas/tests/groupby/test_pipe.py
${PYSITELIB}/pandas/tests/groupby/test_pipe.pyc
${PYSITELIB}/pandas/tests/groupby/test_pipe.pyo
${PYSITELIB}/pandas/tests/groupby/test_quantile.py
${PYSITELIB}/pandas/tests/groupby/test_quantile.pyc
${PYSITELIB}/pandas/tests/groupby/test_quantile.pyo
${PYSITELIB}/pandas/tests/groupby/test_rank.py
${PYSITELIB}/pandas/tests/groupby/test_rank.pyc
${PYSITELIB}/pandas/tests/groupby/test_rank.pyo
${PYSITELIB}/pandas/tests/groupby/test_sample.py
${PYSITELIB}/pandas/tests/groupby/test_sample.pyc
${PYSITELIB}/pandas/tests/groupby/test_sample.pyo
${PYSITELIB}/pandas/tests/groupby/test_size.py
${PYSITELIB}/pandas/tests/groupby/test_size.pyc
${PYSITELIB}/pandas/tests/groupby/test_size.pyo
${PYSITELIB}/pandas/tests/groupby/test_timegrouper.py
${PYSITELIB}/pandas/tests/groupby/test_timegrouper.pyc
${PYSITELIB}/pandas/tests/groupby/test_timegrouper.pyo
${PYSITELIB}/pandas/tests/groupby/test_value_counts.py
${PYSITELIB}/pandas/tests/groupby/test_value_counts.pyc
${PYSITELIB}/pandas/tests/groupby/test_value_counts.pyo
${PYSITELIB}/pandas/tests/groupby/transform/__init__.py
${PYSITELIB}/pandas/tests/groupby/transform/__init__.pyc
${PYSITELIB}/pandas/tests/groupby/transform/__init__.pyo
${PYSITELIB}/pandas/tests/groupby/transform/test_numba.py
${PYSITELIB}/pandas/tests/groupby/transform/test_numba.pyc
${PYSITELIB}/pandas/tests/groupby/transform/test_numba.pyo
${PYSITELIB}/pandas/tests/groupby/transform/test_transform.py
${PYSITELIB}/pandas/tests/groupby/transform/test_transform.pyc
${PYSITELIB}/pandas/tests/groupby/transform/test_transform.pyo
${PYSITELIB}/pandas/tests/indexes/__init__.py
${PYSITELIB}/pandas/tests/indexes/__init__.pyc
${PYSITELIB}/pandas/tests/indexes/__init__.pyo
${PYSITELIB}/pandas/tests/indexes/base_class/__init__.py
${PYSITELIB}/pandas/tests/indexes/base_class/__init__.pyc
${PYSITELIB}/pandas/tests/indexes/base_class/__init__.pyo
${PYSITELIB}/pandas/tests/indexes/base_class/test_constructors.py
${PYSITELIB}/pandas/tests/indexes/base_class/test_constructors.pyc
${PYSITELIB}/pandas/tests/indexes/base_class/test_constructors.pyo
${PYSITELIB}/pandas/tests/indexes/base_class/test_formats.py
${PYSITELIB}/pandas/tests/indexes/base_class/test_formats.pyc
${PYSITELIB}/pandas/tests/indexes/base_class/test_formats.pyo
${PYSITELIB}/pandas/tests/indexes/base_class/test_indexing.py
${PYSITELIB}/pandas/tests/indexes/base_class/test_indexing.pyc
${PYSITELIB}/pandas/tests/indexes/base_class/test_indexing.pyo
${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.py
${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.pyc
${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.pyo
${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.py
${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.pyc
${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.pyo
${PYSITELIB}/pandas/tests/indexes/base_class/test_where.py
${PYSITELIB}/pandas/tests/indexes/base_class/test_where.pyc
${PYSITELIB}/pandas/tests/indexes/base_class/test_where.pyo
${PYSITELIB}/pandas/tests/indexes/categorical/__init__.py
${PYSITELIB}/pandas/tests/indexes/categorical/__init__.pyc
${PYSITELIB}/pandas/tests/indexes/categorical/__init__.pyo
${PYSITELIB}/pandas/tests/indexes/categorical/test_astype.py
${PYSITELIB}/pandas/tests/indexes/categorical/test_astype.pyc
${PYSITELIB}/pandas/tests/indexes/categorical/test_astype.pyo
${PYSITELIB}/pandas/tests/indexes/categorical/test_category.py
${PYSITELIB}/pandas/tests/indexes/categorical/test_category.pyc
${PYSITELIB}/pandas/tests/indexes/categorical/test_category.pyo
${PYSITELIB}/pandas/tests/indexes/categorical/test_constructors.py
${PYSITELIB}/pandas/tests/indexes/categorical/test_constructors.pyc
${PYSITELIB}/pandas/tests/indexes/categorical/test_constructors.pyo
${PYSITELIB}/pandas/tests/indexes/categorical/test_equals.py
${PYSITELIB}/pandas/tests/indexes/categorical/test_equals.pyc
${PYSITELIB}/pandas/tests/indexes/categorical/test_equals.pyo
${PYSITELIB}/pandas/tests/indexes/categorical/test_fillna.py
${PYSITELIB}/pandas/tests/indexes/categorical/test_fillna.pyc
${PYSITELIB}/pandas/tests/indexes/categorical/test_fillna.pyo
${PYSITELIB}/pandas/tests/indexes/categorical/test_formats.py
${PYSITELIB}/pandas/tests/indexes/categorical/test_formats.pyc
${PYSITELIB}/pandas/tests/indexes/categorical/test_formats.pyo
${PYSITELIB}/pandas/tests/indexes/categorical/test_indexing.py
${PYSITELIB}/pandas/tests/indexes/categorical/test_indexing.pyc
${PYSITELIB}/pandas/tests/indexes/categorical/test_indexing.pyo
${PYSITELIB}/pandas/tests/indexes/categorical/test_map.py
${PYSITELIB}/pandas/tests/indexes/categorical/test_map.pyc
${PYSITELIB}/pandas/tests/indexes/categorical/test_map.pyo
${PYSITELIB}/pandas/tests/indexes/categorical/test_reindex.py
${PYSITELIB}/pandas/tests/indexes/categorical/test_reindex.pyc
${PYSITELIB}/pandas/tests/indexes/categorical/test_reindex.pyo
${PYSITELIB}/pandas/tests/indexes/common.py
${PYSITELIB}/pandas/tests/indexes/common.pyc
${PYSITELIB}/pandas/tests/indexes/common.pyo
${PYSITELIB}/pandas/tests/indexes/conftest.py
${PYSITELIB}/pandas/tests/indexes/conftest.pyc
${PYSITELIB}/pandas/tests/indexes/conftest.pyo
${PYSITELIB}/pandas/tests/indexes/datetimelike.py
${PYSITELIB}/pandas/tests/indexes/datetimelike.pyc
${PYSITELIB}/pandas/tests/indexes/datetimelike.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.py
${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_astype.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_astype.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_astype.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_constructors.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_constructors.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_constructors.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_fillna.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_fillna.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_fillna.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_insert.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_insert.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_insert.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_ops.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_ops.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_ops.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_partial_slicing.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_partial_slicing.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_partial_slicing.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_pickle.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_pickle.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_pickle.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_scalar_compat.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_scalar_compat.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_scalar_compat.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_setops.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_setops.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_setops.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_shift.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_shift.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_shift.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_snap.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_snap.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_snap.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_timezones.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_timezones.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_timezones.pyo
${PYSITELIB}/pandas/tests/indexes/datetimes/test_to_period.py
${PYSITELIB}/pandas/tests/indexes/datetimes/test_to_period.pyc
${PYSITELIB}/pandas/tests/indexes/datetimes/test_to_period.pyo
${PYSITELIB}/pandas/tests/indexes/interval/__init__.py
${PYSITELIB}/pandas/tests/indexes/interval/__init__.pyc
${PYSITELIB}/pandas/tests/indexes/interval/__init__.pyo
${PYSITELIB}/pandas/tests/indexes/interval/test_astype.py
${PYSITELIB}/pandas/tests/indexes/interval/test_astype.pyc
${PYSITELIB}/pandas/tests/indexes/interval/test_astype.pyo
${PYSITELIB}/pandas/tests/indexes/interval/test_base.py
${PYSITELIB}/pandas/tests/indexes/interval/test_base.pyc
${PYSITELIB}/pandas/tests/indexes/interval/test_base.pyo
${PYSITELIB}/pandas/tests/indexes/interval/test_constructors.py
${PYSITELIB}/pandas/tests/indexes/interval/test_constructors.pyc
${PYSITELIB}/pandas/tests/indexes/interval/test_constructors.pyo
${PYSITELIB}/pandas/tests/indexes/interval/test_equals.py
${PYSITELIB}/pandas/tests/indexes/interval/test_equals.pyc
${PYSITELIB}/pandas/tests/indexes/interval/test_equals.pyo
${PYSITELIB}/pandas/tests/indexes/interval/test_formats.py
${PYSITELIB}/pandas/tests/indexes/interval/test_formats.pyc
${PYSITELIB}/pandas/tests/indexes/interval/test_formats.pyo
${PYSITELIB}/pandas/tests/indexes/interval/test_indexing.py
${PYSITELIB}/pandas/tests/indexes/interval/test_indexing.pyc
${PYSITELIB}/pandas/tests/indexes/interval/test_indexing.pyo
${PYSITELIB}/pandas/tests/indexes/interval/test_interval.py
${PYSITELIB}/pandas/tests/indexes/interval/test_interval.pyc
${PYSITELIB}/pandas/tests/indexes/interval/test_interval.pyo
${PYSITELIB}/pandas/tests/indexes/interval/test_interval_range.py
${PYSITELIB}/pandas/tests/indexes/interval/test_interval_range.pyc
${PYSITELIB}/pandas/tests/indexes/interval/test_interval_range.pyo
${PYSITELIB}/pandas/tests/indexes/interval/test_interval_tree.py
${PYSITELIB}/pandas/tests/indexes/interval/test_interval_tree.pyc
${PYSITELIB}/pandas/tests/indexes/interval/test_interval_tree.pyo
${PYSITELIB}/pandas/tests/indexes/interval/test_setops.py
${PYSITELIB}/pandas/tests/indexes/interval/test_setops.pyc
${PYSITELIB}/pandas/tests/indexes/interval/test_setops.pyo
${PYSITELIB}/pandas/tests/indexes/multi/__init__.py
${PYSITELIB}/pandas/tests/indexes/multi/__init__.pyc
${PYSITELIB}/pandas/tests/indexes/multi/__init__.pyo
${PYSITELIB}/pandas/tests/indexes/multi/conftest.py
${PYSITELIB}/pandas/tests/indexes/multi/conftest.pyc
${PYSITELIB}/pandas/tests/indexes/multi/conftest.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_analytics.py
${PYSITELIB}/pandas/tests/indexes/multi/test_analytics.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_analytics.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_astype.py
${PYSITELIB}/pandas/tests/indexes/multi/test_astype.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_astype.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_compat.py
${PYSITELIB}/pandas/tests/indexes/multi/test_compat.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_compat.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_constructors.py
${PYSITELIB}/pandas/tests/indexes/multi/test_constructors.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_constructors.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_conversion.py
${PYSITELIB}/pandas/tests/indexes/multi/test_conversion.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_conversion.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_copy.py
${PYSITELIB}/pandas/tests/indexes/multi/test_copy.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_copy.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_drop.py
${PYSITELIB}/pandas/tests/indexes/multi/test_drop.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_drop.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_duplicates.py
${PYSITELIB}/pandas/tests/indexes/multi/test_duplicates.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_duplicates.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_equivalence.py
${PYSITELIB}/pandas/tests/indexes/multi/test_equivalence.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_equivalence.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_formats.py
${PYSITELIB}/pandas/tests/indexes/multi/test_formats.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_formats.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_get_level_values.py
${PYSITELIB}/pandas/tests/indexes/multi/test_get_level_values.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_get_level_values.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_get_set.py
${PYSITELIB}/pandas/tests/indexes/multi/test_get_set.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_get_set.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_indexing.py
${PYSITELIB}/pandas/tests/indexes/multi/test_indexing.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_indexing.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_integrity.py
${PYSITELIB}/pandas/tests/indexes/multi/test_integrity.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_integrity.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_isin.py
${PYSITELIB}/pandas/tests/indexes/multi/test_isin.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_isin.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_join.py
${PYSITELIB}/pandas/tests/indexes/multi/test_join.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_join.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_lexsort.py
${PYSITELIB}/pandas/tests/indexes/multi/test_lexsort.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_lexsort.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_missing.py
${PYSITELIB}/pandas/tests/indexes/multi/test_missing.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_missing.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_monotonic.py
${PYSITELIB}/pandas/tests/indexes/multi/test_monotonic.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_monotonic.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_names.py
${PYSITELIB}/pandas/tests/indexes/multi/test_names.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_names.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_partial_indexing.py
${PYSITELIB}/pandas/tests/indexes/multi/test_partial_indexing.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_partial_indexing.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_reindex.py
${PYSITELIB}/pandas/tests/indexes/multi/test_reindex.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_reindex.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_reshape.py
${PYSITELIB}/pandas/tests/indexes/multi/test_reshape.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_reshape.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_setops.py
${PYSITELIB}/pandas/tests/indexes/multi/test_setops.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_setops.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_sorting.py
${PYSITELIB}/pandas/tests/indexes/multi/test_sorting.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_sorting.pyo
${PYSITELIB}/pandas/tests/indexes/multi/test_take.py
${PYSITELIB}/pandas/tests/indexes/multi/test_take.pyc
${PYSITELIB}/pandas/tests/indexes/multi/test_take.pyo
${PYSITELIB}/pandas/tests/indexes/numeric/__init__.py
${PYSITELIB}/pandas/tests/indexes/numeric/__init__.pyc
${PYSITELIB}/pandas/tests/indexes/numeric/__init__.pyo
${PYSITELIB}/pandas/tests/indexes/numeric/test_astype.py
${PYSITELIB}/pandas/tests/indexes/numeric/test_astype.pyc
${PYSITELIB}/pandas/tests/indexes/numeric/test_astype.pyo
${PYSITELIB}/pandas/tests/indexes/numeric/test_indexing.py
${PYSITELIB}/pandas/tests/indexes/numeric/test_indexing.pyc
${PYSITELIB}/pandas/tests/indexes/numeric/test_indexing.pyo
${PYSITELIB}/pandas/tests/indexes/numeric/test_join.py
${PYSITELIB}/pandas/tests/indexes/numeric/test_join.pyc
${PYSITELIB}/pandas/tests/indexes/numeric/test_join.pyo
${PYSITELIB}/pandas/tests/indexes/numeric/test_setops.py
${PYSITELIB}/pandas/tests/indexes/numeric/test_setops.pyc
${PYSITELIB}/pandas/tests/indexes/numeric/test_setops.pyo
${PYSITELIB}/pandas/tests/indexes/period/__init__.py
${PYSITELIB}/pandas/tests/indexes/period/__init__.pyc
${PYSITELIB}/pandas/tests/indexes/period/__init__.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_asfreq.py
${PYSITELIB}/pandas/tests/indexes/period/test_asfreq.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_asfreq.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_astype.py
${PYSITELIB}/pandas/tests/indexes/period/test_astype.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_astype.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_constructors.py
${PYSITELIB}/pandas/tests/indexes/period/test_constructors.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_constructors.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_factorize.py
${PYSITELIB}/pandas/tests/indexes/period/test_factorize.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_factorize.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_fillna.py
${PYSITELIB}/pandas/tests/indexes/period/test_fillna.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_fillna.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_formats.py
${PYSITELIB}/pandas/tests/indexes/period/test_formats.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_formats.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_indexing.py
${PYSITELIB}/pandas/tests/indexes/period/test_indexing.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_indexing.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_join.py
${PYSITELIB}/pandas/tests/indexes/period/test_join.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_join.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.py
${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_ops.py
${PYSITELIB}/pandas/tests/indexes/period/test_ops.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_ops.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_partial_slicing.py
${PYSITELIB}/pandas/tests/indexes/period/test_partial_slicing.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_partial_slicing.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_period.py
${PYSITELIB}/pandas/tests/indexes/period/test_period.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_period.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_period_range.py
${PYSITELIB}/pandas/tests/indexes/period/test_period_range.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_period_range.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.py
${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.py
${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_setops.py
${PYSITELIB}/pandas/tests/indexes/period/test_setops.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_setops.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_shift.py
${PYSITELIB}/pandas/tests/indexes/period/test_shift.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_shift.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_to_timestamp.py
${PYSITELIB}/pandas/tests/indexes/period/test_to_timestamp.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_to_timestamp.pyo
${PYSITELIB}/pandas/tests/indexes/period/test_tools.py
${PYSITELIB}/pandas/tests/indexes/period/test_tools.pyc
${PYSITELIB}/pandas/tests/indexes/period/test_tools.pyo
${PYSITELIB}/pandas/tests/indexes/ranges/__init__.py
${PYSITELIB}/pandas/tests/indexes/ranges/__init__.pyc
${PYSITELIB}/pandas/tests/indexes/ranges/__init__.pyo
${PYSITELIB}/pandas/tests/indexes/ranges/test_constructors.py
${PYSITELIB}/pandas/tests/indexes/ranges/test_constructors.pyc
${PYSITELIB}/pandas/tests/indexes/ranges/test_constructors.pyo
${PYSITELIB}/pandas/tests/indexes/ranges/test_indexing.py
${PYSITELIB}/pandas/tests/indexes/ranges/test_indexing.pyc
${PYSITELIB}/pandas/tests/indexes/ranges/test_indexing.pyo
${PYSITELIB}/pandas/tests/indexes/ranges/test_join.py
${PYSITELIB}/pandas/tests/indexes/ranges/test_join.pyc
${PYSITELIB}/pandas/tests/indexes/ranges/test_join.pyo
${PYSITELIB}/pandas/tests/indexes/ranges/test_range.py
${PYSITELIB}/pandas/tests/indexes/ranges/test_range.pyc
${PYSITELIB}/pandas/tests/indexes/ranges/test_range.pyo
${PYSITELIB}/pandas/tests/indexes/ranges/test_setops.py
${PYSITELIB}/pandas/tests/indexes/ranges/test_setops.pyc
${PYSITELIB}/pandas/tests/indexes/ranges/test_setops.pyo
${PYSITELIB}/pandas/tests/indexes/test_any_index.py
${PYSITELIB}/pandas/tests/indexes/test_any_index.pyc
${PYSITELIB}/pandas/tests/indexes/test_any_index.pyo
${PYSITELIB}/pandas/tests/indexes/test_base.py
${PYSITELIB}/pandas/tests/indexes/test_base.pyc
${PYSITELIB}/pandas/tests/indexes/test_base.pyo
${PYSITELIB}/pandas/tests/indexes/test_common.py
${PYSITELIB}/pandas/tests/indexes/test_common.pyc
${PYSITELIB}/pandas/tests/indexes/test_common.pyo
${PYSITELIB}/pandas/tests/indexes/test_datetimelike.py
${PYSITELIB}/pandas/tests/indexes/test_datetimelike.pyc
${PYSITELIB}/pandas/tests/indexes/test_datetimelike.pyo
${PYSITELIB}/pandas/tests/indexes/test_engines.py
${PYSITELIB}/pandas/tests/indexes/test_engines.pyc
${PYSITELIB}/pandas/tests/indexes/test_engines.pyo
${PYSITELIB}/pandas/tests/indexes/test_frozen.py
${PYSITELIB}/pandas/tests/indexes/test_frozen.pyc
${PYSITELIB}/pandas/tests/indexes/test_frozen.pyo
${PYSITELIB}/pandas/tests/indexes/test_index_new.py
${PYSITELIB}/pandas/tests/indexes/test_index_new.pyc
${PYSITELIB}/pandas/tests/indexes/test_index_new.pyo
${PYSITELIB}/pandas/tests/indexes/test_indexing.py
${PYSITELIB}/pandas/tests/indexes/test_indexing.pyc
${PYSITELIB}/pandas/tests/indexes/test_indexing.pyo
${PYSITELIB}/pandas/tests/indexes/test_numeric.py
${PYSITELIB}/pandas/tests/indexes/test_numeric.pyc
${PYSITELIB}/pandas/tests/indexes/test_numeric.pyo
${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.py
${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.pyc
${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.pyo
${PYSITELIB}/pandas/tests/indexes/test_setops.py
${PYSITELIB}/pandas/tests/indexes/test_setops.pyc
${PYSITELIB}/pandas/tests/indexes/test_setops.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_astype.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_astype.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_astype.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_fillna.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_fillna.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_fillna.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_insert.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_insert.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_insert.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_partial_slicing.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_partial_slicing.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_partial_slicing.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_shift.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_shift.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_shift.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.pyo
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.py
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.pyc
${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.pyo
${PYSITELIB}/pandas/tests/indexing/__init__.py
${PYSITELIB}/pandas/tests/indexing/__init__.pyc
${PYSITELIB}/pandas/tests/indexing/__init__.pyo
${PYSITELIB}/pandas/tests/indexing/common.py
${PYSITELIB}/pandas/tests/indexing/common.pyc
${PYSITELIB}/pandas/tests/indexing/common.pyo
${PYSITELIB}/pandas/tests/indexing/interval/__init__.py
${PYSITELIB}/pandas/tests/indexing/interval/__init__.pyc
${PYSITELIB}/pandas/tests/indexing/interval/__init__.pyo
${PYSITELIB}/pandas/tests/indexing/interval/test_interval.py
${PYSITELIB}/pandas/tests/indexing/interval/test_interval.pyc
${PYSITELIB}/pandas/tests/indexing/interval/test_interval.pyo
${PYSITELIB}/pandas/tests/indexing/interval/test_interval_new.py
${PYSITELIB}/pandas/tests/indexing/interval/test_interval_new.pyc
${PYSITELIB}/pandas/tests/indexing/interval/test_interval_new.pyo
${PYSITELIB}/pandas/tests/indexing/multiindex/__init__.py
${PYSITELIB}/pandas/tests/indexing/multiindex/__init__.pyc
${PYSITELIB}/pandas/tests/indexing/multiindex/__init__.pyo
${PYSITELIB}/pandas/tests/indexing/multiindex/test_chaining_and_caching.py
${PYSITELIB}/pandas/tests/indexing/multiindex/test_chaining_and_caching.pyc
${PYSITELIB}/pandas/tests/indexing/multiindex/test_chaining_and_caching.pyo
${PYSITELIB}/pandas/tests/indexing/multiindex/test_datetime.py
${PYSITELIB}/pandas/tests/indexing/multiindex/test_datetime.pyc
${PYSITELIB}/pandas/tests/indexing/multiindex/test_datetime.pyo
${PYSITELIB}/pandas/tests/indexing/multiindex/test_getitem.py
${PYSITELIB}/pandas/tests/indexing/multiindex/test_getitem.pyc
${PYSITELIB}/pandas/tests/indexing/multiindex/test_getitem.pyo
${PYSITELIB}/pandas/tests/indexing/multiindex/test_iloc.py
${PYSITELIB}/pandas/tests/indexing/multiindex/test_iloc.pyc
${PYSITELIB}/pandas/tests/indexing/multiindex/test_iloc.pyo
${PYSITELIB}/pandas/tests/indexing/multiindex/test_indexing_slow.py
${PYSITELIB}/pandas/tests/indexing/multiindex/test_indexing_slow.pyc
${PYSITELIB}/pandas/tests/indexing/multiindex/test_indexing_slow.pyo
${PYSITELIB}/pandas/tests/indexing/multiindex/test_insert.py
${PYSITELIB}/pandas/tests/indexing/multiindex/test_insert.pyc
${PYSITELIB}/pandas/tests/indexing/multiindex/test_insert.pyo
${PYSITELIB}/pandas/tests/indexing/multiindex/test_ix.py
${PYSITELIB}/pandas/tests/indexing/multiindex/test_ix.pyc
${PYSITELIB}/pandas/tests/indexing/multiindex/test_ix.pyo
${PYSITELIB}/pandas/tests/indexing/multiindex/test_loc.py
${PYSITELIB}/pandas/tests/indexing/multiindex/test_loc.pyc
${PYSITELIB}/pandas/tests/indexing/multiindex/test_loc.pyo
${PYSITELIB}/pandas/tests/indexing/multiindex/test_multiindex.py
${PYSITELIB}/pandas/tests/indexing/multiindex/test_multiindex.pyc
${PYSITELIB}/pandas/tests/indexing/multiindex/test_multiindex.pyo
${PYSITELIB}/pandas/tests/indexing/multiindex/test_partial.py
${PYSITELIB}/pandas/tests/indexing/multiindex/test_partial.pyc
${PYSITELIB}/pandas/tests/indexing/multiindex/test_partial.pyo
${PYSITELIB}/pandas/tests/indexing/multiindex/test_setitem.py
${PYSITELIB}/pandas/tests/indexing/multiindex/test_setitem.pyc
${PYSITELIB}/pandas/tests/indexing/multiindex/test_setitem.pyo
${PYSITELIB}/pandas/tests/indexing/multiindex/test_slice.py
${PYSITELIB}/pandas/tests/indexing/multiindex/test_slice.pyc
${PYSITELIB}/pandas/tests/indexing/multiindex/test_slice.pyo
${PYSITELIB}/pandas/tests/indexing/multiindex/test_sorted.py
${PYSITELIB}/pandas/tests/indexing/multiindex/test_sorted.pyc
${PYSITELIB}/pandas/tests/indexing/multiindex/test_sorted.pyo
${PYSITELIB}/pandas/tests/indexing/test_at.py
${PYSITELIB}/pandas/tests/indexing/test_at.pyc
${PYSITELIB}/pandas/tests/indexing/test_at.pyo
${PYSITELIB}/pandas/tests/indexing/test_categorical.py
${PYSITELIB}/pandas/tests/indexing/test_categorical.pyc
${PYSITELIB}/pandas/tests/indexing/test_categorical.pyo
${PYSITELIB}/pandas/tests/indexing/test_chaining_and_caching.py
${PYSITELIB}/pandas/tests/indexing/test_chaining_and_caching.pyc
${PYSITELIB}/pandas/tests/indexing/test_chaining_and_caching.pyo
${PYSITELIB}/pandas/tests/indexing/test_check_indexer.py
${PYSITELIB}/pandas/tests/indexing/test_check_indexer.pyc
${PYSITELIB}/pandas/tests/indexing/test_check_indexer.pyo
${PYSITELIB}/pandas/tests/indexing/test_coercion.py
${PYSITELIB}/pandas/tests/indexing/test_coercion.pyc
${PYSITELIB}/pandas/tests/indexing/test_coercion.pyo
${PYSITELIB}/pandas/tests/indexing/test_datetime.py
${PYSITELIB}/pandas/tests/indexing/test_datetime.pyc
${PYSITELIB}/pandas/tests/indexing/test_datetime.pyo
${PYSITELIB}/pandas/tests/indexing/test_floats.py
${PYSITELIB}/pandas/tests/indexing/test_floats.pyc
${PYSITELIB}/pandas/tests/indexing/test_floats.pyo
${PYSITELIB}/pandas/tests/indexing/test_iat.py
${PYSITELIB}/pandas/tests/indexing/test_iat.pyc
${PYSITELIB}/pandas/tests/indexing/test_iat.pyo
${PYSITELIB}/pandas/tests/indexing/test_iloc.py
${PYSITELIB}/pandas/tests/indexing/test_iloc.pyc
${PYSITELIB}/pandas/tests/indexing/test_iloc.pyo
${PYSITELIB}/pandas/tests/indexing/test_indexers.py
${PYSITELIB}/pandas/tests/indexing/test_indexers.pyc
${PYSITELIB}/pandas/tests/indexing/test_indexers.pyo
${PYSITELIB}/pandas/tests/indexing/test_indexing.py
${PYSITELIB}/pandas/tests/indexing/test_indexing.pyc
${PYSITELIB}/pandas/tests/indexing/test_indexing.pyo
${PYSITELIB}/pandas/tests/indexing/test_loc.py
${PYSITELIB}/pandas/tests/indexing/test_loc.pyc
${PYSITELIB}/pandas/tests/indexing/test_loc.pyo
${PYSITELIB}/pandas/tests/indexing/test_na_indexing.py
${PYSITELIB}/pandas/tests/indexing/test_na_indexing.pyc
${PYSITELIB}/pandas/tests/indexing/test_na_indexing.pyo
${PYSITELIB}/pandas/tests/indexing/test_partial.py
${PYSITELIB}/pandas/tests/indexing/test_partial.pyc
${PYSITELIB}/pandas/tests/indexing/test_partial.pyo
${PYSITELIB}/pandas/tests/indexing/test_scalar.py
${PYSITELIB}/pandas/tests/indexing/test_scalar.pyc
${PYSITELIB}/pandas/tests/indexing/test_scalar.pyo
${PYSITELIB}/pandas/tests/internals/__init__.py
${PYSITELIB}/pandas/tests/internals/__init__.pyc
${PYSITELIB}/pandas/tests/internals/__init__.pyo
${PYSITELIB}/pandas/tests/internals/test_internals.py
${PYSITELIB}/pandas/tests/internals/test_internals.pyc
${PYSITELIB}/pandas/tests/internals/test_internals.pyo
${PYSITELIB}/pandas/tests/io/__init__.py
${PYSITELIB}/pandas/tests/io/__init__.pyc
${PYSITELIB}/pandas/tests/io/__init__.pyo
${PYSITELIB}/pandas/tests/io/conftest.py
${PYSITELIB}/pandas/tests/io/conftest.pyc
${PYSITELIB}/pandas/tests/io/conftest.pyo
${PYSITELIB}/pandas/tests/io/excel/__init__.py
${PYSITELIB}/pandas/tests/io/excel/__init__.pyc
${PYSITELIB}/pandas/tests/io/excel/__init__.pyo
${PYSITELIB}/pandas/tests/io/excel/conftest.py
${PYSITELIB}/pandas/tests/io/excel/conftest.pyc
${PYSITELIB}/pandas/tests/io/excel/conftest.pyo
${PYSITELIB}/pandas/tests/io/excel/test_odf.py
${PYSITELIB}/pandas/tests/io/excel/test_odf.pyc
${PYSITELIB}/pandas/tests/io/excel/test_odf.pyo
${PYSITELIB}/pandas/tests/io/excel/test_odswriter.py
${PYSITELIB}/pandas/tests/io/excel/test_odswriter.pyc
${PYSITELIB}/pandas/tests/io/excel/test_odswriter.pyo
${PYSITELIB}/pandas/tests/io/excel/test_openpyxl.py
${PYSITELIB}/pandas/tests/io/excel/test_openpyxl.pyc
${PYSITELIB}/pandas/tests/io/excel/test_openpyxl.pyo
${PYSITELIB}/pandas/tests/io/excel/test_readers.py
${PYSITELIB}/pandas/tests/io/excel/test_readers.pyc
${PYSITELIB}/pandas/tests/io/excel/test_readers.pyo
${PYSITELIB}/pandas/tests/io/excel/test_style.py
${PYSITELIB}/pandas/tests/io/excel/test_style.pyc
${PYSITELIB}/pandas/tests/io/excel/test_style.pyo
${PYSITELIB}/pandas/tests/io/excel/test_writers.py
${PYSITELIB}/pandas/tests/io/excel/test_writers.pyc
${PYSITELIB}/pandas/tests/io/excel/test_writers.pyo
${PYSITELIB}/pandas/tests/io/excel/test_xlrd.py
${PYSITELIB}/pandas/tests/io/excel/test_xlrd.pyc
${PYSITELIB}/pandas/tests/io/excel/test_xlrd.pyo
${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.py
${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.pyc
${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.pyo
${PYSITELIB}/pandas/tests/io/excel/test_xlwt.py
${PYSITELIB}/pandas/tests/io/excel/test_xlwt.pyc
${PYSITELIB}/pandas/tests/io/excel/test_xlwt.pyo
${PYSITELIB}/pandas/tests/io/formats/__init__.py
${PYSITELIB}/pandas/tests/io/formats/__init__.pyc
${PYSITELIB}/pandas/tests/io/formats/__init__.pyo
${PYSITELIB}/pandas/tests/io/formats/test_console.py
${PYSITELIB}/pandas/tests/io/formats/test_console.pyc
${PYSITELIB}/pandas/tests/io/formats/test_console.pyo
${PYSITELIB}/pandas/tests/io/formats/test_css.py
${PYSITELIB}/pandas/tests/io/formats/test_css.pyc
${PYSITELIB}/pandas/tests/io/formats/test_css.pyo
${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.py
${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.pyc
${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.pyo
${PYSITELIB}/pandas/tests/io/formats/test_format.py
${PYSITELIB}/pandas/tests/io/formats/test_format.pyc
${PYSITELIB}/pandas/tests/io/formats/test_format.pyo
${PYSITELIB}/pandas/tests/io/formats/test_info.py
${PYSITELIB}/pandas/tests/io/formats/test_info.pyc
${PYSITELIB}/pandas/tests/io/formats/test_info.pyo
${PYSITELIB}/pandas/tests/io/formats/test_printing.py
${PYSITELIB}/pandas/tests/io/formats/test_printing.pyc
${PYSITELIB}/pandas/tests/io/formats/test_printing.pyo
${PYSITELIB}/pandas/tests/io/formats/test_style.py
${PYSITELIB}/pandas/tests/io/formats/test_style.pyc
${PYSITELIB}/pandas/tests/io/formats/test_style.pyo
${PYSITELIB}/pandas/tests/io/formats/test_to_csv.py
${PYSITELIB}/pandas/tests/io/formats/test_to_csv.pyc
${PYSITELIB}/pandas/tests/io/formats/test_to_csv.pyo
${PYSITELIB}/pandas/tests/io/formats/test_to_excel.py
${PYSITELIB}/pandas/tests/io/formats/test_to_excel.pyc
${PYSITELIB}/pandas/tests/io/formats/test_to_excel.pyo
${PYSITELIB}/pandas/tests/io/formats/test_to_html.py
${PYSITELIB}/pandas/tests/io/formats/test_to_html.pyc
${PYSITELIB}/pandas/tests/io/formats/test_to_html.pyo
${PYSITELIB}/pandas/tests/io/formats/test_to_latex.py
${PYSITELIB}/pandas/tests/io/formats/test_to_latex.pyc
${PYSITELIB}/pandas/tests/io/formats/test_to_latex.pyo
${PYSITELIB}/pandas/tests/io/formats/test_to_markdown.py
${PYSITELIB}/pandas/tests/io/formats/test_to_markdown.pyc
${PYSITELIB}/pandas/tests/io/formats/test_to_markdown.pyo
${PYSITELIB}/pandas/tests/io/formats/test_to_string.py
${PYSITELIB}/pandas/tests/io/formats/test_to_string.pyc
${PYSITELIB}/pandas/tests/io/formats/test_to_string.pyo
${PYSITELIB}/pandas/tests/io/generate_legacy_storage_files.py
${PYSITELIB}/pandas/tests/io/generate_legacy_storage_files.pyc
${PYSITELIB}/pandas/tests/io/generate_legacy_storage_files.pyo
${PYSITELIB}/pandas/tests/io/json/__init__.py
${PYSITELIB}/pandas/tests/io/json/__init__.pyc
${PYSITELIB}/pandas/tests/io/json/__init__.pyo
${PYSITELIB}/pandas/tests/io/json/conftest.py
${PYSITELIB}/pandas/tests/io/json/conftest.pyc
${PYSITELIB}/pandas/tests/io/json/conftest.pyo
${PYSITELIB}/pandas/tests/io/json/test_compression.py
${PYSITELIB}/pandas/tests/io/json/test_compression.pyc
${PYSITELIB}/pandas/tests/io/json/test_compression.pyo
${PYSITELIB}/pandas/tests/io/json/test_deprecated_kwargs.py
${PYSITELIB}/pandas/tests/io/json/test_deprecated_kwargs.pyc
${PYSITELIB}/pandas/tests/io/json/test_deprecated_kwargs.pyo
${PYSITELIB}/pandas/tests/io/json/test_json_table_schema.py
${PYSITELIB}/pandas/tests/io/json/test_json_table_schema.pyc
${PYSITELIB}/pandas/tests/io/json/test_json_table_schema.pyo
${PYSITELIB}/pandas/tests/io/json/test_normalize.py
${PYSITELIB}/pandas/tests/io/json/test_normalize.pyc
${PYSITELIB}/pandas/tests/io/json/test_normalize.pyo
${PYSITELIB}/pandas/tests/io/json/test_pandas.py
${PYSITELIB}/pandas/tests/io/json/test_pandas.pyc
${PYSITELIB}/pandas/tests/io/json/test_pandas.pyo
${PYSITELIB}/pandas/tests/io/json/test_readlines.py
${PYSITELIB}/pandas/tests/io/json/test_readlines.pyc
${PYSITELIB}/pandas/tests/io/json/test_readlines.pyo
${PYSITELIB}/pandas/tests/io/json/test_ujson.py
${PYSITELIB}/pandas/tests/io/json/test_ujson.pyc
${PYSITELIB}/pandas/tests/io/json/test_ujson.pyo
${PYSITELIB}/pandas/tests/io/parser/__init__.py
${PYSITELIB}/pandas/tests/io/parser/__init__.pyc
${PYSITELIB}/pandas/tests/io/parser/__init__.pyo
${PYSITELIB}/pandas/tests/io/parser/conftest.py
${PYSITELIB}/pandas/tests/io/parser/conftest.pyc
${PYSITELIB}/pandas/tests/io/parser/conftest.pyo
${PYSITELIB}/pandas/tests/io/parser/test_c_parser_only.py
${PYSITELIB}/pandas/tests/io/parser/test_c_parser_only.pyc
${PYSITELIB}/pandas/tests/io/parser/test_c_parser_only.pyo
${PYSITELIB}/pandas/tests/io/parser/test_comment.py
${PYSITELIB}/pandas/tests/io/parser/test_comment.pyc
${PYSITELIB}/pandas/tests/io/parser/test_comment.pyo
${PYSITELIB}/pandas/tests/io/parser/test_common.py
${PYSITELIB}/pandas/tests/io/parser/test_common.pyc
${PYSITELIB}/pandas/tests/io/parser/test_common.pyo
${PYSITELIB}/pandas/tests/io/parser/test_compression.py
${PYSITELIB}/pandas/tests/io/parser/test_compression.pyc
${PYSITELIB}/pandas/tests/io/parser/test_compression.pyo
${PYSITELIB}/pandas/tests/io/parser/test_converters.py
${PYSITELIB}/pandas/tests/io/parser/test_converters.pyc
${PYSITELIB}/pandas/tests/io/parser/test_converters.pyo
${PYSITELIB}/pandas/tests/io/parser/test_dialect.py
${PYSITELIB}/pandas/tests/io/parser/test_dialect.pyc
${PYSITELIB}/pandas/tests/io/parser/test_dialect.pyo
${PYSITELIB}/pandas/tests/io/parser/test_dtypes.py
${PYSITELIB}/pandas/tests/io/parser/test_dtypes.pyc
${PYSITELIB}/pandas/tests/io/parser/test_dtypes.pyo
${PYSITELIB}/pandas/tests/io/parser/test_encoding.py
${PYSITELIB}/pandas/tests/io/parser/test_encoding.pyc
${PYSITELIB}/pandas/tests/io/parser/test_encoding.pyo
${PYSITELIB}/pandas/tests/io/parser/test_header.py
${PYSITELIB}/pandas/tests/io/parser/test_header.pyc
${PYSITELIB}/pandas/tests/io/parser/test_header.pyo
${PYSITELIB}/pandas/tests/io/parser/test_index_col.py
${PYSITELIB}/pandas/tests/io/parser/test_index_col.pyc
${PYSITELIB}/pandas/tests/io/parser/test_index_col.pyo
${PYSITELIB}/pandas/tests/io/parser/test_mangle_dupes.py
${PYSITELIB}/pandas/tests/io/parser/test_mangle_dupes.pyc
${PYSITELIB}/pandas/tests/io/parser/test_mangle_dupes.pyo
${PYSITELIB}/pandas/tests/io/parser/test_multi_thread.py
${PYSITELIB}/pandas/tests/io/parser/test_multi_thread.pyc
${PYSITELIB}/pandas/tests/io/parser/test_multi_thread.pyo
${PYSITELIB}/pandas/tests/io/parser/test_na_values.py
${PYSITELIB}/pandas/tests/io/parser/test_na_values.pyc
${PYSITELIB}/pandas/tests/io/parser/test_na_values.pyo
${PYSITELIB}/pandas/tests/io/parser/test_network.py
${PYSITELIB}/pandas/tests/io/parser/test_network.pyc
${PYSITELIB}/pandas/tests/io/parser/test_network.pyo
${PYSITELIB}/pandas/tests/io/parser/test_parse_dates.py
${PYSITELIB}/pandas/tests/io/parser/test_parse_dates.pyc
${PYSITELIB}/pandas/tests/io/parser/test_parse_dates.pyo
${PYSITELIB}/pandas/tests/io/parser/test_python_parser_only.py
${PYSITELIB}/pandas/tests/io/parser/test_python_parser_only.pyc
${PYSITELIB}/pandas/tests/io/parser/test_python_parser_only.pyo
${PYSITELIB}/pandas/tests/io/parser/test_quoting.py
${PYSITELIB}/pandas/tests/io/parser/test_quoting.pyc
${PYSITELIB}/pandas/tests/io/parser/test_quoting.pyo
${PYSITELIB}/pandas/tests/io/parser/test_read_fwf.py
${PYSITELIB}/pandas/tests/io/parser/test_read_fwf.pyc
${PYSITELIB}/pandas/tests/io/parser/test_read_fwf.pyo
${PYSITELIB}/pandas/tests/io/parser/test_skiprows.py
${PYSITELIB}/pandas/tests/io/parser/test_skiprows.pyc
${PYSITELIB}/pandas/tests/io/parser/test_skiprows.pyo
${PYSITELIB}/pandas/tests/io/parser/test_textreader.py
${PYSITELIB}/pandas/tests/io/parser/test_textreader.pyc
${PYSITELIB}/pandas/tests/io/parser/test_textreader.pyo
${PYSITELIB}/pandas/tests/io/parser/test_unsupported.py
${PYSITELIB}/pandas/tests/io/parser/test_unsupported.pyc
${PYSITELIB}/pandas/tests/io/parser/test_unsupported.pyo
${PYSITELIB}/pandas/tests/io/parser/test_usecols.py
${PYSITELIB}/pandas/tests/io/parser/test_usecols.pyc
${PYSITELIB}/pandas/tests/io/parser/test_usecols.pyo
${PYSITELIB}/pandas/tests/io/pytables/__init__.py
${PYSITELIB}/pandas/tests/io/pytables/__init__.pyc
${PYSITELIB}/pandas/tests/io/pytables/__init__.pyo
${PYSITELIB}/pandas/tests/io/pytables/common.py
${PYSITELIB}/pandas/tests/io/pytables/common.pyc
${PYSITELIB}/pandas/tests/io/pytables/common.pyo
${PYSITELIB}/pandas/tests/io/pytables/conftest.py
${PYSITELIB}/pandas/tests/io/pytables/conftest.pyc
${PYSITELIB}/pandas/tests/io/pytables/conftest.pyo
${PYSITELIB}/pandas/tests/io/pytables/test_compat.py
${PYSITELIB}/pandas/tests/io/pytables/test_compat.pyc
${PYSITELIB}/pandas/tests/io/pytables/test_compat.pyo
${PYSITELIB}/pandas/tests/io/pytables/test_complex.py
${PYSITELIB}/pandas/tests/io/pytables/test_complex.pyc
${PYSITELIB}/pandas/tests/io/pytables/test_complex.pyo
${PYSITELIB}/pandas/tests/io/pytables/test_pytables_missing.py
${PYSITELIB}/pandas/tests/io/pytables/test_pytables_missing.pyc
${PYSITELIB}/pandas/tests/io/pytables/test_pytables_missing.pyo
${PYSITELIB}/pandas/tests/io/pytables/test_store.py
${PYSITELIB}/pandas/tests/io/pytables/test_store.pyc
${PYSITELIB}/pandas/tests/io/pytables/test_store.pyo
${PYSITELIB}/pandas/tests/io/pytables/test_timezones.py
${PYSITELIB}/pandas/tests/io/pytables/test_timezones.pyc
${PYSITELIB}/pandas/tests/io/pytables/test_timezones.pyo
${PYSITELIB}/pandas/tests/io/sas/__init__.py
${PYSITELIB}/pandas/tests/io/sas/__init__.pyc
${PYSITELIB}/pandas/tests/io/sas/__init__.pyo
${PYSITELIB}/pandas/tests/io/sas/test_sas.py
${PYSITELIB}/pandas/tests/io/sas/test_sas.pyc
${PYSITELIB}/pandas/tests/io/sas/test_sas.pyo
${PYSITELIB}/pandas/tests/io/sas/test_sas7bdat.py
${PYSITELIB}/pandas/tests/io/sas/test_sas7bdat.pyc
${PYSITELIB}/pandas/tests/io/sas/test_sas7bdat.pyo
${PYSITELIB}/pandas/tests/io/sas/test_xport.py
${PYSITELIB}/pandas/tests/io/sas/test_xport.pyc
${PYSITELIB}/pandas/tests/io/sas/test_xport.pyo
${PYSITELIB}/pandas/tests/io/test_clipboard.py
${PYSITELIB}/pandas/tests/io/test_clipboard.pyc
${PYSITELIB}/pandas/tests/io/test_clipboard.pyo
${PYSITELIB}/pandas/tests/io/test_common.py
${PYSITELIB}/pandas/tests/io/test_common.pyc
${PYSITELIB}/pandas/tests/io/test_common.pyo
${PYSITELIB}/pandas/tests/io/test_compression.py
${PYSITELIB}/pandas/tests/io/test_compression.pyc
${PYSITELIB}/pandas/tests/io/test_compression.pyo
${PYSITELIB}/pandas/tests/io/test_date_converters.py
${PYSITELIB}/pandas/tests/io/test_date_converters.pyc
${PYSITELIB}/pandas/tests/io/test_date_converters.pyo
${PYSITELIB}/pandas/tests/io/test_feather.py
${PYSITELIB}/pandas/tests/io/test_feather.pyc
${PYSITELIB}/pandas/tests/io/test_feather.pyo
${PYSITELIB}/pandas/tests/io/test_fsspec.py
${PYSITELIB}/pandas/tests/io/test_fsspec.pyc
${PYSITELIB}/pandas/tests/io/test_fsspec.pyo
${PYSITELIB}/pandas/tests/io/test_gbq.py
${PYSITELIB}/pandas/tests/io/test_gbq.pyc
${PYSITELIB}/pandas/tests/io/test_gbq.pyo
${PYSITELIB}/pandas/tests/io/test_gcs.py
${PYSITELIB}/pandas/tests/io/test_gcs.pyc
${PYSITELIB}/pandas/tests/io/test_gcs.pyo
${PYSITELIB}/pandas/tests/io/test_html.py
${PYSITELIB}/pandas/tests/io/test_html.pyc
${PYSITELIB}/pandas/tests/io/test_html.pyo
${PYSITELIB}/pandas/tests/io/test_orc.py
${PYSITELIB}/pandas/tests/io/test_orc.pyc
${PYSITELIB}/pandas/tests/io/test_orc.pyo
${PYSITELIB}/pandas/tests/io/test_parquet.py
${PYSITELIB}/pandas/tests/io/test_parquet.pyc
${PYSITELIB}/pandas/tests/io/test_parquet.pyo
${PYSITELIB}/pandas/tests/io/test_pickle.py
${PYSITELIB}/pandas/tests/io/test_pickle.pyc
${PYSITELIB}/pandas/tests/io/test_pickle.pyo
${PYSITELIB}/pandas/tests/io/test_s3.py
${PYSITELIB}/pandas/tests/io/test_s3.pyc
${PYSITELIB}/pandas/tests/io/test_s3.pyo
${PYSITELIB}/pandas/tests/io/test_spss.py
${PYSITELIB}/pandas/tests/io/test_spss.pyc
${PYSITELIB}/pandas/tests/io/test_spss.pyo
${PYSITELIB}/pandas/tests/io/test_sql.py
${PYSITELIB}/pandas/tests/io/test_sql.pyc
${PYSITELIB}/pandas/tests/io/test_sql.pyo
${PYSITELIB}/pandas/tests/io/test_stata.py
${PYSITELIB}/pandas/tests/io/test_stata.pyc
${PYSITELIB}/pandas/tests/io/test_stata.pyo
${PYSITELIB}/pandas/tests/libs/__init__.py
${PYSITELIB}/pandas/tests/libs/__init__.pyc
${PYSITELIB}/pandas/tests/libs/__init__.pyo
${PYSITELIB}/pandas/tests/libs/test_hashtable.py
${PYSITELIB}/pandas/tests/libs/test_hashtable.pyc
${PYSITELIB}/pandas/tests/libs/test_hashtable.pyo
${PYSITELIB}/pandas/tests/libs/test_join.py
${PYSITELIB}/pandas/tests/libs/test_join.pyc
${PYSITELIB}/pandas/tests/libs/test_join.pyo
${PYSITELIB}/pandas/tests/libs/test_lib.py
${PYSITELIB}/pandas/tests/libs/test_lib.pyc
${PYSITELIB}/pandas/tests/libs/test_lib.pyo
${PYSITELIB}/pandas/tests/plotting/__init__.py
${PYSITELIB}/pandas/tests/plotting/__init__.pyc
${PYSITELIB}/pandas/tests/plotting/__init__.pyo
${PYSITELIB}/pandas/tests/plotting/common.py
${PYSITELIB}/pandas/tests/plotting/common.pyc
${PYSITELIB}/pandas/tests/plotting/common.pyo
${PYSITELIB}/pandas/tests/plotting/frame/__init__.py
${PYSITELIB}/pandas/tests/plotting/frame/__init__.pyc
${PYSITELIB}/pandas/tests/plotting/frame/__init__.pyo
${PYSITELIB}/pandas/tests/plotting/frame/test_frame.py
${PYSITELIB}/pandas/tests/plotting/frame/test_frame.pyc
${PYSITELIB}/pandas/tests/plotting/frame/test_frame.pyo
${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.py
${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.pyc
${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.pyo
${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.py
${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.pyc
${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.pyo
${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.py
${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.pyc
${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.pyo
${PYSITELIB}/pandas/tests/plotting/test_backend.py
${PYSITELIB}/pandas/tests/plotting/test_backend.pyc
${PYSITELIB}/pandas/tests/plotting/test_backend.pyo
${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.py
${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.pyc
${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.pyo
${PYSITELIB}/pandas/tests/plotting/test_common.py
${PYSITELIB}/pandas/tests/plotting/test_common.pyc
${PYSITELIB}/pandas/tests/plotting/test_common.pyo
${PYSITELIB}/pandas/tests/plotting/test_converter.py
${PYSITELIB}/pandas/tests/plotting/test_converter.pyc
${PYSITELIB}/pandas/tests/plotting/test_converter.pyo
${PYSITELIB}/pandas/tests/plotting/test_datetimelike.py
${PYSITELIB}/pandas/tests/plotting/test_datetimelike.pyc
${PYSITELIB}/pandas/tests/plotting/test_datetimelike.pyo
${PYSITELIB}/pandas/tests/plotting/test_groupby.py
${PYSITELIB}/pandas/tests/plotting/test_groupby.pyc
${PYSITELIB}/pandas/tests/plotting/test_groupby.pyo
${PYSITELIB}/pandas/tests/plotting/test_hist_method.py
${PYSITELIB}/pandas/tests/plotting/test_hist_method.pyc
${PYSITELIB}/pandas/tests/plotting/test_hist_method.pyo
${PYSITELIB}/pandas/tests/plotting/test_misc.py
${PYSITELIB}/pandas/tests/plotting/test_misc.pyc
${PYSITELIB}/pandas/tests/plotting/test_misc.pyo
${PYSITELIB}/pandas/tests/plotting/test_series.py
${PYSITELIB}/pandas/tests/plotting/test_series.pyc
${PYSITELIB}/pandas/tests/plotting/test_series.pyo
${PYSITELIB}/pandas/tests/plotting/test_style.py
${PYSITELIB}/pandas/tests/plotting/test_style.pyc
${PYSITELIB}/pandas/tests/plotting/test_style.pyo
${PYSITELIB}/pandas/tests/reductions/__init__.py
${PYSITELIB}/pandas/tests/reductions/__init__.pyc
${PYSITELIB}/pandas/tests/reductions/__init__.pyo
${PYSITELIB}/pandas/tests/reductions/test_reductions.py
${PYSITELIB}/pandas/tests/reductions/test_reductions.pyc
${PYSITELIB}/pandas/tests/reductions/test_reductions.pyo
${PYSITELIB}/pandas/tests/reductions/test_stat_reductions.py
${PYSITELIB}/pandas/tests/reductions/test_stat_reductions.pyc
${PYSITELIB}/pandas/tests/reductions/test_stat_reductions.pyo
${PYSITELIB}/pandas/tests/resample/__init__.py
${PYSITELIB}/pandas/tests/resample/__init__.pyc
${PYSITELIB}/pandas/tests/resample/__init__.pyo
${PYSITELIB}/pandas/tests/resample/conftest.py
${PYSITELIB}/pandas/tests/resample/conftest.pyc
${PYSITELIB}/pandas/tests/resample/conftest.pyo
${PYSITELIB}/pandas/tests/resample/test_base.py
${PYSITELIB}/pandas/tests/resample/test_base.pyc
${PYSITELIB}/pandas/tests/resample/test_base.pyo
${PYSITELIB}/pandas/tests/resample/test_datetime_index.py
${PYSITELIB}/pandas/tests/resample/test_datetime_index.pyc
${PYSITELIB}/pandas/tests/resample/test_datetime_index.pyo
${PYSITELIB}/pandas/tests/resample/test_deprecated.py
${PYSITELIB}/pandas/tests/resample/test_deprecated.pyc
${PYSITELIB}/pandas/tests/resample/test_deprecated.pyo
${PYSITELIB}/pandas/tests/resample/test_period_index.py
${PYSITELIB}/pandas/tests/resample/test_period_index.pyc
${PYSITELIB}/pandas/tests/resample/test_period_index.pyo
${PYSITELIB}/pandas/tests/resample/test_resample_api.py
${PYSITELIB}/pandas/tests/resample/test_resample_api.pyc
${PYSITELIB}/pandas/tests/resample/test_resample_api.pyo
${PYSITELIB}/pandas/tests/resample/test_resampler_grouper.py
${PYSITELIB}/pandas/tests/resample/test_resampler_grouper.pyc
${PYSITELIB}/pandas/tests/resample/test_resampler_grouper.pyo
${PYSITELIB}/pandas/tests/resample/test_time_grouper.py
${PYSITELIB}/pandas/tests/resample/test_time_grouper.pyc
${PYSITELIB}/pandas/tests/resample/test_time_grouper.pyo
${PYSITELIB}/pandas/tests/resample/test_timedelta.py
${PYSITELIB}/pandas/tests/resample/test_timedelta.pyc
${PYSITELIB}/pandas/tests/resample/test_timedelta.pyo
${PYSITELIB}/pandas/tests/reshape/__init__.py
${PYSITELIB}/pandas/tests/reshape/__init__.pyc
${PYSITELIB}/pandas/tests/reshape/__init__.pyo
${PYSITELIB}/pandas/tests/reshape/concat/__init__.py
${PYSITELIB}/pandas/tests/reshape/concat/__init__.pyc
${PYSITELIB}/pandas/tests/reshape/concat/__init__.pyo
${PYSITELIB}/pandas/tests/reshape/concat/conftest.py
${PYSITELIB}/pandas/tests/reshape/concat/conftest.pyc
${PYSITELIB}/pandas/tests/reshape/concat/conftest.pyo
${PYSITELIB}/pandas/tests/reshape/concat/test_append.py
${PYSITELIB}/pandas/tests/reshape/concat/test_append.pyc
${PYSITELIB}/pandas/tests/reshape/concat/test_append.pyo
${PYSITELIB}/pandas/tests/reshape/concat/test_append_common.py
${PYSITELIB}/pandas/tests/reshape/concat/test_append_common.pyc
${PYSITELIB}/pandas/tests/reshape/concat/test_append_common.pyo
${PYSITELIB}/pandas/tests/reshape/concat/test_categorical.py
${PYSITELIB}/pandas/tests/reshape/concat/test_categorical.pyc
${PYSITELIB}/pandas/tests/reshape/concat/test_categorical.pyo
${PYSITELIB}/pandas/tests/reshape/concat/test_concat.py
${PYSITELIB}/pandas/tests/reshape/concat/test_concat.pyc
${PYSITELIB}/pandas/tests/reshape/concat/test_concat.pyo
${PYSITELIB}/pandas/tests/reshape/concat/test_dataframe.py
${PYSITELIB}/pandas/tests/reshape/concat/test_dataframe.pyc
${PYSITELIB}/pandas/tests/reshape/concat/test_dataframe.pyo
${PYSITELIB}/pandas/tests/reshape/concat/test_datetimes.py
${PYSITELIB}/pandas/tests/reshape/concat/test_datetimes.pyc
${PYSITELIB}/pandas/tests/reshape/concat/test_datetimes.pyo
${PYSITELIB}/pandas/tests/reshape/concat/test_empty.py
${PYSITELIB}/pandas/tests/reshape/concat/test_empty.pyc
${PYSITELIB}/pandas/tests/reshape/concat/test_empty.pyo
${PYSITELIB}/pandas/tests/reshape/concat/test_index.py
${PYSITELIB}/pandas/tests/reshape/concat/test_index.pyc
${PYSITELIB}/pandas/tests/reshape/concat/test_index.pyo
${PYSITELIB}/pandas/tests/reshape/concat/test_invalid.py
${PYSITELIB}/pandas/tests/reshape/concat/test_invalid.pyc
${PYSITELIB}/pandas/tests/reshape/concat/test_invalid.pyo
${PYSITELIB}/pandas/tests/reshape/concat/test_series.py
${PYSITELIB}/pandas/tests/reshape/concat/test_series.pyc
${PYSITELIB}/pandas/tests/reshape/concat/test_series.pyo
${PYSITELIB}/pandas/tests/reshape/concat/test_sort.py
${PYSITELIB}/pandas/tests/reshape/concat/test_sort.pyc
${PYSITELIB}/pandas/tests/reshape/concat/test_sort.pyo
${PYSITELIB}/pandas/tests/reshape/merge/__init__.py
${PYSITELIB}/pandas/tests/reshape/merge/__init__.pyc
${PYSITELIB}/pandas/tests/reshape/merge/__init__.pyo
${PYSITELIB}/pandas/tests/reshape/merge/test_join.py
${PYSITELIB}/pandas/tests/reshape/merge/test_join.pyc
${PYSITELIB}/pandas/tests/reshape/merge/test_join.pyo
${PYSITELIB}/pandas/tests/reshape/merge/test_merge.py
${PYSITELIB}/pandas/tests/reshape/merge/test_merge.pyc
${PYSITELIB}/pandas/tests/reshape/merge/test_merge.pyo
${PYSITELIB}/pandas/tests/reshape/merge/test_merge_asof.py
${PYSITELIB}/pandas/tests/reshape/merge/test_merge_asof.pyc
${PYSITELIB}/pandas/tests/reshape/merge/test_merge_asof.pyo
${PYSITELIB}/pandas/tests/reshape/merge/test_merge_cross.py
${PYSITELIB}/pandas/tests/reshape/merge/test_merge_cross.pyc
${PYSITELIB}/pandas/tests/reshape/merge/test_merge_cross.pyo
${PYSITELIB}/pandas/tests/reshape/merge/test_merge_index_as_string.py
${PYSITELIB}/pandas/tests/reshape/merge/test_merge_index_as_string.pyc
${PYSITELIB}/pandas/tests/reshape/merge/test_merge_index_as_string.pyo
${PYSITELIB}/pandas/tests/reshape/merge/test_merge_ordered.py
${PYSITELIB}/pandas/tests/reshape/merge/test_merge_ordered.pyc
${PYSITELIB}/pandas/tests/reshape/merge/test_merge_ordered.pyo
${PYSITELIB}/pandas/tests/reshape/merge/test_multi.py
${PYSITELIB}/pandas/tests/reshape/merge/test_multi.pyc
${PYSITELIB}/pandas/tests/reshape/merge/test_multi.pyo
${PYSITELIB}/pandas/tests/reshape/test_crosstab.py
${PYSITELIB}/pandas/tests/reshape/test_crosstab.pyc
${PYSITELIB}/pandas/tests/reshape/test_crosstab.pyo
${PYSITELIB}/pandas/tests/reshape/test_cut.py
${PYSITELIB}/pandas/tests/reshape/test_cut.pyc
${PYSITELIB}/pandas/tests/reshape/test_cut.pyo
${PYSITELIB}/pandas/tests/reshape/test_get_dummies.py
${PYSITELIB}/pandas/tests/reshape/test_get_dummies.pyc
${PYSITELIB}/pandas/tests/reshape/test_get_dummies.pyo
${PYSITELIB}/pandas/tests/reshape/test_melt.py
${PYSITELIB}/pandas/tests/reshape/test_melt.pyc
${PYSITELIB}/pandas/tests/reshape/test_melt.pyo
${PYSITELIB}/pandas/tests/reshape/test_pivot.py
${PYSITELIB}/pandas/tests/reshape/test_pivot.pyc
${PYSITELIB}/pandas/tests/reshape/test_pivot.pyo
${PYSITELIB}/pandas/tests/reshape/test_pivot_multilevel.py
${PYSITELIB}/pandas/tests/reshape/test_pivot_multilevel.pyc
${PYSITELIB}/pandas/tests/reshape/test_pivot_multilevel.pyo
${PYSITELIB}/pandas/tests/reshape/test_qcut.py
${PYSITELIB}/pandas/tests/reshape/test_qcut.pyc
${PYSITELIB}/pandas/tests/reshape/test_qcut.pyo
${PYSITELIB}/pandas/tests/reshape/test_union_categoricals.py
${PYSITELIB}/pandas/tests/reshape/test_union_categoricals.pyc
${PYSITELIB}/pandas/tests/reshape/test_union_categoricals.pyo
${PYSITELIB}/pandas/tests/reshape/test_util.py
${PYSITELIB}/pandas/tests/reshape/test_util.pyc
${PYSITELIB}/pandas/tests/reshape/test_util.pyo
${PYSITELIB}/pandas/tests/scalar/__init__.py
${PYSITELIB}/pandas/tests/scalar/__init__.pyc
${PYSITELIB}/pandas/tests/scalar/__init__.pyo
${PYSITELIB}/pandas/tests/scalar/interval/__init__.py
${PYSITELIB}/pandas/tests/scalar/interval/__init__.pyc
${PYSITELIB}/pandas/tests/scalar/interval/__init__.pyo
${PYSITELIB}/pandas/tests/scalar/interval/test_arithmetic.py
${PYSITELIB}/pandas/tests/scalar/interval/test_arithmetic.pyc
${PYSITELIB}/pandas/tests/scalar/interval/test_arithmetic.pyo
${PYSITELIB}/pandas/tests/scalar/interval/test_interval.py
${PYSITELIB}/pandas/tests/scalar/interval/test_interval.pyc
${PYSITELIB}/pandas/tests/scalar/interval/test_interval.pyo
${PYSITELIB}/pandas/tests/scalar/interval/test_ops.py
${PYSITELIB}/pandas/tests/scalar/interval/test_ops.pyc
${PYSITELIB}/pandas/tests/scalar/interval/test_ops.pyo
${PYSITELIB}/pandas/tests/scalar/period/__init__.py
${PYSITELIB}/pandas/tests/scalar/period/__init__.pyc
${PYSITELIB}/pandas/tests/scalar/period/__init__.pyo
${PYSITELIB}/pandas/tests/scalar/period/test_asfreq.py
${PYSITELIB}/pandas/tests/scalar/period/test_asfreq.pyc
${PYSITELIB}/pandas/tests/scalar/period/test_asfreq.pyo
${PYSITELIB}/pandas/tests/scalar/period/test_period.py
${PYSITELIB}/pandas/tests/scalar/period/test_period.pyc
${PYSITELIB}/pandas/tests/scalar/period/test_period.pyo
${PYSITELIB}/pandas/tests/scalar/test_na_scalar.py
${PYSITELIB}/pandas/tests/scalar/test_na_scalar.pyc
${PYSITELIB}/pandas/tests/scalar/test_na_scalar.pyo
${PYSITELIB}/pandas/tests/scalar/test_nat.py
${PYSITELIB}/pandas/tests/scalar/test_nat.pyc
${PYSITELIB}/pandas/tests/scalar/test_nat.pyo
${PYSITELIB}/pandas/tests/scalar/timedelta/__init__.py
${PYSITELIB}/pandas/tests/scalar/timedelta/__init__.pyc
${PYSITELIB}/pandas/tests/scalar/timedelta/__init__.pyo
${PYSITELIB}/pandas/tests/scalar/timedelta/test_arithmetic.py
${PYSITELIB}/pandas/tests/scalar/timedelta/test_arithmetic.pyc
${PYSITELIB}/pandas/tests/scalar/timedelta/test_arithmetic.pyo
${PYSITELIB}/pandas/tests/scalar/timedelta/test_constructors.py
${PYSITELIB}/pandas/tests/scalar/timedelta/test_constructors.pyc
${PYSITELIB}/pandas/tests/scalar/timedelta/test_constructors.pyo
${PYSITELIB}/pandas/tests/scalar/timedelta/test_formats.py
${PYSITELIB}/pandas/tests/scalar/timedelta/test_formats.pyc
${PYSITELIB}/pandas/tests/scalar/timedelta/test_formats.pyo
${PYSITELIB}/pandas/tests/scalar/timedelta/test_timedelta.py
${PYSITELIB}/pandas/tests/scalar/timedelta/test_timedelta.pyc
${PYSITELIB}/pandas/tests/scalar/timedelta/test_timedelta.pyo
${PYSITELIB}/pandas/tests/scalar/timestamp/__init__.py
${PYSITELIB}/pandas/tests/scalar/timestamp/__init__.pyc
${PYSITELIB}/pandas/tests/scalar/timestamp/__init__.pyo
${PYSITELIB}/pandas/tests/scalar/timestamp/test_arithmetic.py
${PYSITELIB}/pandas/tests/scalar/timestamp/test_arithmetic.pyc
${PYSITELIB}/pandas/tests/scalar/timestamp/test_arithmetic.pyo
${PYSITELIB}/pandas/tests/scalar/timestamp/test_comparisons.py
${PYSITELIB}/pandas/tests/scalar/timestamp/test_comparisons.pyc
${PYSITELIB}/pandas/tests/scalar/timestamp/test_comparisons.pyo
${PYSITELIB}/pandas/tests/scalar/timestamp/test_constructors.py
${PYSITELIB}/pandas/tests/scalar/timestamp/test_constructors.pyc
${PYSITELIB}/pandas/tests/scalar/timestamp/test_constructors.pyo
${PYSITELIB}/pandas/tests/scalar/timestamp/test_rendering.py
${PYSITELIB}/pandas/tests/scalar/timestamp/test_rendering.pyc
${PYSITELIB}/pandas/tests/scalar/timestamp/test_rendering.pyo
${PYSITELIB}/pandas/tests/scalar/timestamp/test_timestamp.py
${PYSITELIB}/pandas/tests/scalar/timestamp/test_timestamp.pyc
${PYSITELIB}/pandas/tests/scalar/timestamp/test_timestamp.pyo
${PYSITELIB}/pandas/tests/scalar/timestamp/test_timezones.py
${PYSITELIB}/pandas/tests/scalar/timestamp/test_timezones.pyc
${PYSITELIB}/pandas/tests/scalar/timestamp/test_timezones.pyo
${PYSITELIB}/pandas/tests/scalar/timestamp/test_unary_ops.py
${PYSITELIB}/pandas/tests/scalar/timestamp/test_unary_ops.pyc
${PYSITELIB}/pandas/tests/scalar/timestamp/test_unary_ops.pyo
${PYSITELIB}/pandas/tests/series/__init__.py
${PYSITELIB}/pandas/tests/series/__init__.pyc
${PYSITELIB}/pandas/tests/series/__init__.pyo
${PYSITELIB}/pandas/tests/series/accessors/__init__.py
${PYSITELIB}/pandas/tests/series/accessors/__init__.pyc
${PYSITELIB}/pandas/tests/series/accessors/__init__.pyo
${PYSITELIB}/pandas/tests/series/accessors/test_cat_accessor.py
${PYSITELIB}/pandas/tests/series/accessors/test_cat_accessor.pyc
${PYSITELIB}/pandas/tests/series/accessors/test_cat_accessor.pyo
${PYSITELIB}/pandas/tests/series/accessors/test_dt_accessor.py
${PYSITELIB}/pandas/tests/series/accessors/test_dt_accessor.pyc
${PYSITELIB}/pandas/tests/series/accessors/test_dt_accessor.pyo
${PYSITELIB}/pandas/tests/series/accessors/test_sparse_accessor.py
${PYSITELIB}/pandas/tests/series/accessors/test_sparse_accessor.pyc
${PYSITELIB}/pandas/tests/series/accessors/test_sparse_accessor.pyo
${PYSITELIB}/pandas/tests/series/accessors/test_str_accessor.py
${PYSITELIB}/pandas/tests/series/accessors/test_str_accessor.pyc
${PYSITELIB}/pandas/tests/series/accessors/test_str_accessor.pyo
${PYSITELIB}/pandas/tests/series/apply/__init__.py
${PYSITELIB}/pandas/tests/series/apply/__init__.pyc
${PYSITELIB}/pandas/tests/series/apply/__init__.pyo
${PYSITELIB}/pandas/tests/series/apply/test_apply_relabeling.py
${PYSITELIB}/pandas/tests/series/apply/test_apply_relabeling.pyc
${PYSITELIB}/pandas/tests/series/apply/test_apply_relabeling.pyo
${PYSITELIB}/pandas/tests/series/apply/test_series_apply.py
${PYSITELIB}/pandas/tests/series/apply/test_series_apply.pyc
${PYSITELIB}/pandas/tests/series/apply/test_series_apply.pyo
${PYSITELIB}/pandas/tests/series/apply/test_series_transform.py
${PYSITELIB}/pandas/tests/series/apply/test_series_transform.pyc
${PYSITELIB}/pandas/tests/series/apply/test_series_transform.pyo
${PYSITELIB}/pandas/tests/series/indexing/__init__.py
${PYSITELIB}/pandas/tests/series/indexing/__init__.pyc
${PYSITELIB}/pandas/tests/series/indexing/__init__.pyo
${PYSITELIB}/pandas/tests/series/indexing/test_datetime.py
${PYSITELIB}/pandas/tests/series/indexing/test_datetime.pyc
${PYSITELIB}/pandas/tests/series/indexing/test_datetime.pyo
${PYSITELIB}/pandas/tests/series/indexing/test_delitem.py
${PYSITELIB}/pandas/tests/series/indexing/test_delitem.pyc
${PYSITELIB}/pandas/tests/series/indexing/test_delitem.pyo
${PYSITELIB}/pandas/tests/series/indexing/test_get.py
${PYSITELIB}/pandas/tests/series/indexing/test_get.pyc
${PYSITELIB}/pandas/tests/series/indexing/test_get.pyo
${PYSITELIB}/pandas/tests/series/indexing/test_getitem.py
${PYSITELIB}/pandas/tests/series/indexing/test_getitem.pyc
${PYSITELIB}/pandas/tests/series/indexing/test_getitem.pyo
${PYSITELIB}/pandas/tests/series/indexing/test_indexing.py
${PYSITELIB}/pandas/tests/series/indexing/test_indexing.pyc
${PYSITELIB}/pandas/tests/series/indexing/test_indexing.pyo
${PYSITELIB}/pandas/tests/series/indexing/test_mask.py
${PYSITELIB}/pandas/tests/series/indexing/test_mask.pyc
${PYSITELIB}/pandas/tests/series/indexing/test_mask.pyo
${PYSITELIB}/pandas/tests/series/indexing/test_numeric.py
${PYSITELIB}/pandas/tests/series/indexing/test_numeric.pyc
${PYSITELIB}/pandas/tests/series/indexing/test_numeric.pyo
${PYSITELIB}/pandas/tests/series/indexing/test_set_value.py
${PYSITELIB}/pandas/tests/series/indexing/test_set_value.pyc
${PYSITELIB}/pandas/tests/series/indexing/test_set_value.pyo
${PYSITELIB}/pandas/tests/series/indexing/test_setitem.py
${PYSITELIB}/pandas/tests/series/indexing/test_setitem.pyc
${PYSITELIB}/pandas/tests/series/indexing/test_setitem.pyo
${PYSITELIB}/pandas/tests/series/indexing/test_take.py
${PYSITELIB}/pandas/tests/series/indexing/test_take.pyc
${PYSITELIB}/pandas/tests/series/indexing/test_take.pyo
${PYSITELIB}/pandas/tests/series/indexing/test_where.py
${PYSITELIB}/pandas/tests/series/indexing/test_where.pyc
${PYSITELIB}/pandas/tests/series/indexing/test_where.pyo
${PYSITELIB}/pandas/tests/series/indexing/test_xs.py
${PYSITELIB}/pandas/tests/series/indexing/test_xs.pyc
${PYSITELIB}/pandas/tests/series/indexing/test_xs.pyo
${PYSITELIB}/pandas/tests/series/methods/__init__.py
${PYSITELIB}/pandas/tests/series/methods/__init__.pyc
${PYSITELIB}/pandas/tests/series/methods/__init__.pyo
${PYSITELIB}/pandas/tests/series/methods/test_align.py
${PYSITELIB}/pandas/tests/series/methods/test_align.pyc
${PYSITELIB}/pandas/tests/series/methods/test_align.pyo
${PYSITELIB}/pandas/tests/series/methods/test_append.py
${PYSITELIB}/pandas/tests/series/methods/test_append.pyc
${PYSITELIB}/pandas/tests/series/methods/test_append.pyo
${PYSITELIB}/pandas/tests/series/methods/test_argsort.py
${PYSITELIB}/pandas/tests/series/methods/test_argsort.pyc
${PYSITELIB}/pandas/tests/series/methods/test_argsort.pyo
${PYSITELIB}/pandas/tests/series/methods/test_asfreq.py
${PYSITELIB}/pandas/tests/series/methods/test_asfreq.pyc
${PYSITELIB}/pandas/tests/series/methods/test_asfreq.pyo
${PYSITELIB}/pandas/tests/series/methods/test_asof.py
${PYSITELIB}/pandas/tests/series/methods/test_asof.pyc
${PYSITELIB}/pandas/tests/series/methods/test_asof.pyo
${PYSITELIB}/pandas/tests/series/methods/test_astype.py
${PYSITELIB}/pandas/tests/series/methods/test_astype.pyc
${PYSITELIB}/pandas/tests/series/methods/test_astype.pyo
${PYSITELIB}/pandas/tests/series/methods/test_autocorr.py
${PYSITELIB}/pandas/tests/series/methods/test_autocorr.pyc
${PYSITELIB}/pandas/tests/series/methods/test_autocorr.pyo
${PYSITELIB}/pandas/tests/series/methods/test_between.py
${PYSITELIB}/pandas/tests/series/methods/test_between.pyc
${PYSITELIB}/pandas/tests/series/methods/test_between.pyo
${PYSITELIB}/pandas/tests/series/methods/test_clip.py
${PYSITELIB}/pandas/tests/series/methods/test_clip.pyc
${PYSITELIB}/pandas/tests/series/methods/test_clip.pyo
${PYSITELIB}/pandas/tests/series/methods/test_combine.py
${PYSITELIB}/pandas/tests/series/methods/test_combine.pyc
${PYSITELIB}/pandas/tests/series/methods/test_combine.pyo
${PYSITELIB}/pandas/tests/series/methods/test_combine_first.py
${PYSITELIB}/pandas/tests/series/methods/test_combine_first.pyc
${PYSITELIB}/pandas/tests/series/methods/test_combine_first.pyo
${PYSITELIB}/pandas/tests/series/methods/test_compare.py
${PYSITELIB}/pandas/tests/series/methods/test_compare.pyc
${PYSITELIB}/pandas/tests/series/methods/test_compare.pyo
${PYSITELIB}/pandas/tests/series/methods/test_convert.py
${PYSITELIB}/pandas/tests/series/methods/test_convert.pyc
${PYSITELIB}/pandas/tests/series/methods/test_convert.pyo
${PYSITELIB}/pandas/tests/series/methods/test_convert_dtypes.py
${PYSITELIB}/pandas/tests/series/methods/test_convert_dtypes.pyc
${PYSITELIB}/pandas/tests/series/methods/test_convert_dtypes.pyo
${PYSITELIB}/pandas/tests/series/methods/test_copy.py
${PYSITELIB}/pandas/tests/series/methods/test_copy.pyc
${PYSITELIB}/pandas/tests/series/methods/test_copy.pyo
${PYSITELIB}/pandas/tests/series/methods/test_count.py
${PYSITELIB}/pandas/tests/series/methods/test_count.pyc
${PYSITELIB}/pandas/tests/series/methods/test_count.pyo
${PYSITELIB}/pandas/tests/series/methods/test_cov_corr.py
${PYSITELIB}/pandas/tests/series/methods/test_cov_corr.pyc
${PYSITELIB}/pandas/tests/series/methods/test_cov_corr.pyo
${PYSITELIB}/pandas/tests/series/methods/test_describe.py
${PYSITELIB}/pandas/tests/series/methods/test_describe.pyc
${PYSITELIB}/pandas/tests/series/methods/test_describe.pyo
${PYSITELIB}/pandas/tests/series/methods/test_diff.py
${PYSITELIB}/pandas/tests/series/methods/test_diff.pyc
${PYSITELIB}/pandas/tests/series/methods/test_diff.pyo
${PYSITELIB}/pandas/tests/series/methods/test_drop.py
${PYSITELIB}/pandas/tests/series/methods/test_drop.pyc
${PYSITELIB}/pandas/tests/series/methods/test_drop.pyo
${PYSITELIB}/pandas/tests/series/methods/test_drop_duplicates.py
${PYSITELIB}/pandas/tests/series/methods/test_drop_duplicates.pyc
${PYSITELIB}/pandas/tests/series/methods/test_drop_duplicates.pyo
${PYSITELIB}/pandas/tests/series/methods/test_dropna.py
${PYSITELIB}/pandas/tests/series/methods/test_dropna.pyc
${PYSITELIB}/pandas/tests/series/methods/test_dropna.pyo
${PYSITELIB}/pandas/tests/series/methods/test_duplicated.py
${PYSITELIB}/pandas/tests/series/methods/test_duplicated.pyc
${PYSITELIB}/pandas/tests/series/methods/test_duplicated.pyo
${PYSITELIB}/pandas/tests/series/methods/test_equals.py
${PYSITELIB}/pandas/tests/series/methods/test_equals.pyc
${PYSITELIB}/pandas/tests/series/methods/test_equals.pyo
${PYSITELIB}/pandas/tests/series/methods/test_explode.py
${PYSITELIB}/pandas/tests/series/methods/test_explode.pyc
${PYSITELIB}/pandas/tests/series/methods/test_explode.pyo
${PYSITELIB}/pandas/tests/series/methods/test_fillna.py
${PYSITELIB}/pandas/tests/series/methods/test_fillna.pyc
${PYSITELIB}/pandas/tests/series/methods/test_fillna.pyo
${PYSITELIB}/pandas/tests/series/methods/test_get_numeric_data.py
${PYSITELIB}/pandas/tests/series/methods/test_get_numeric_data.pyc
${PYSITELIB}/pandas/tests/series/methods/test_get_numeric_data.pyo
${PYSITELIB}/pandas/tests/series/methods/test_head_tail.py
${PYSITELIB}/pandas/tests/series/methods/test_head_tail.pyc
${PYSITELIB}/pandas/tests/series/methods/test_head_tail.pyo
${PYSITELIB}/pandas/tests/series/methods/test_infer_objects.py
${PYSITELIB}/pandas/tests/series/methods/test_infer_objects.pyc
${PYSITELIB}/pandas/tests/series/methods/test_infer_objects.pyo
${PYSITELIB}/pandas/tests/series/methods/test_interpolate.py
${PYSITELIB}/pandas/tests/series/methods/test_interpolate.pyc
${PYSITELIB}/pandas/tests/series/methods/test_interpolate.pyo
${PYSITELIB}/pandas/tests/series/methods/test_is_monotonic.py
${PYSITELIB}/pandas/tests/series/methods/test_is_monotonic.pyc
${PYSITELIB}/pandas/tests/series/methods/test_is_monotonic.pyo
${PYSITELIB}/pandas/tests/series/methods/test_isin.py
${PYSITELIB}/pandas/tests/series/methods/test_isin.pyc
${PYSITELIB}/pandas/tests/series/methods/test_isin.pyo
${PYSITELIB}/pandas/tests/series/methods/test_isna.py
${PYSITELIB}/pandas/tests/series/methods/test_isna.pyc
${PYSITELIB}/pandas/tests/series/methods/test_isna.pyo
${PYSITELIB}/pandas/tests/series/methods/test_item.py
${PYSITELIB}/pandas/tests/series/methods/test_item.pyc
${PYSITELIB}/pandas/tests/series/methods/test_item.pyo
${PYSITELIB}/pandas/tests/series/methods/test_matmul.py
${PYSITELIB}/pandas/tests/series/methods/test_matmul.pyc
${PYSITELIB}/pandas/tests/series/methods/test_matmul.pyo
${PYSITELIB}/pandas/tests/series/methods/test_nlargest.py
${PYSITELIB}/pandas/tests/series/methods/test_nlargest.pyc
${PYSITELIB}/pandas/tests/series/methods/test_nlargest.pyo
${PYSITELIB}/pandas/tests/series/methods/test_pct_change.py
${PYSITELIB}/pandas/tests/series/methods/test_pct_change.pyc
${PYSITELIB}/pandas/tests/series/methods/test_pct_change.pyo
${PYSITELIB}/pandas/tests/series/methods/test_pop.py
${PYSITELIB}/pandas/tests/series/methods/test_pop.pyc
${PYSITELIB}/pandas/tests/series/methods/test_pop.pyo
${PYSITELIB}/pandas/tests/series/methods/test_quantile.py
${PYSITELIB}/pandas/tests/series/methods/test_quantile.pyc
${PYSITELIB}/pandas/tests/series/methods/test_quantile.pyo
${PYSITELIB}/pandas/tests/series/methods/test_rank.py
${PYSITELIB}/pandas/tests/series/methods/test_rank.pyc
${PYSITELIB}/pandas/tests/series/methods/test_rank.pyo
${PYSITELIB}/pandas/tests/series/methods/test_reindex.py
${PYSITELIB}/pandas/tests/series/methods/test_reindex.pyc
${PYSITELIB}/pandas/tests/series/methods/test_reindex.pyo
${PYSITELIB}/pandas/tests/series/methods/test_reindex_like.py
${PYSITELIB}/pandas/tests/series/methods/test_reindex_like.pyc
${PYSITELIB}/pandas/tests/series/methods/test_reindex_like.pyo
${PYSITELIB}/pandas/tests/series/methods/test_rename.py
${PYSITELIB}/pandas/tests/series/methods/test_rename.pyc
${PYSITELIB}/pandas/tests/series/methods/test_rename.pyo
${PYSITELIB}/pandas/tests/series/methods/test_rename_axis.py
${PYSITELIB}/pandas/tests/series/methods/test_rename_axis.pyc
${PYSITELIB}/pandas/tests/series/methods/test_rename_axis.pyo
${PYSITELIB}/pandas/tests/series/methods/test_repeat.py
${PYSITELIB}/pandas/tests/series/methods/test_repeat.pyc
${PYSITELIB}/pandas/tests/series/methods/test_repeat.pyo
${PYSITELIB}/pandas/tests/series/methods/test_replace.py
${PYSITELIB}/pandas/tests/series/methods/test_replace.pyc
${PYSITELIB}/pandas/tests/series/methods/test_replace.pyo
${PYSITELIB}/pandas/tests/series/methods/test_reset_index.py
${PYSITELIB}/pandas/tests/series/methods/test_reset_index.pyc
${PYSITELIB}/pandas/tests/series/methods/test_reset_index.pyo
${PYSITELIB}/pandas/tests/series/methods/test_round.py
${PYSITELIB}/pandas/tests/series/methods/test_round.pyc
${PYSITELIB}/pandas/tests/series/methods/test_round.pyo
${PYSITELIB}/pandas/tests/series/methods/test_searchsorted.py
${PYSITELIB}/pandas/tests/series/methods/test_searchsorted.pyc
${PYSITELIB}/pandas/tests/series/methods/test_searchsorted.pyo
${PYSITELIB}/pandas/tests/series/methods/test_set_name.py
${PYSITELIB}/pandas/tests/series/methods/test_set_name.pyc
${PYSITELIB}/pandas/tests/series/methods/test_set_name.pyo
${PYSITELIB}/pandas/tests/series/methods/test_shift.py
${PYSITELIB}/pandas/tests/series/methods/test_shift.pyc
${PYSITELIB}/pandas/tests/series/methods/test_shift.pyo
${PYSITELIB}/pandas/tests/series/methods/test_sort_index.py
${PYSITELIB}/pandas/tests/series/methods/test_sort_index.pyc
${PYSITELIB}/pandas/tests/series/methods/test_sort_index.pyo
${PYSITELIB}/pandas/tests/series/methods/test_sort_values.py
${PYSITELIB}/pandas/tests/series/methods/test_sort_values.pyc
${PYSITELIB}/pandas/tests/series/methods/test_sort_values.pyo
${PYSITELIB}/pandas/tests/series/methods/test_to_csv.py
${PYSITELIB}/pandas/tests/series/methods/test_to_csv.pyc
${PYSITELIB}/pandas/tests/series/methods/test_to_csv.pyo
${PYSITELIB}/pandas/tests/series/methods/test_to_dict.py
${PYSITELIB}/pandas/tests/series/methods/test_to_dict.pyc
${PYSITELIB}/pandas/tests/series/methods/test_to_dict.pyo
${PYSITELIB}/pandas/tests/series/methods/test_to_frame.py
${PYSITELIB}/pandas/tests/series/methods/test_to_frame.pyc
${PYSITELIB}/pandas/tests/series/methods/test_to_frame.pyo
${PYSITELIB}/pandas/tests/series/methods/test_truncate.py
${PYSITELIB}/pandas/tests/series/methods/test_truncate.pyc
${PYSITELIB}/pandas/tests/series/methods/test_truncate.pyo
${PYSITELIB}/pandas/tests/series/methods/test_tz_convert.py
${PYSITELIB}/pandas/tests/series/methods/test_tz_convert.pyc
${PYSITELIB}/pandas/tests/series/methods/test_tz_convert.pyo
${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.py
${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.pyc
${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.pyo
${PYSITELIB}/pandas/tests/series/methods/test_unstack.py
${PYSITELIB}/pandas/tests/series/methods/test_unstack.pyc
${PYSITELIB}/pandas/tests/series/methods/test_unstack.pyo
${PYSITELIB}/pandas/tests/series/methods/test_update.py
${PYSITELIB}/pandas/tests/series/methods/test_update.pyc
${PYSITELIB}/pandas/tests/series/methods/test_update.pyo
${PYSITELIB}/pandas/tests/series/methods/test_value_counts.py
${PYSITELIB}/pandas/tests/series/methods/test_value_counts.pyc
${PYSITELIB}/pandas/tests/series/methods/test_value_counts.pyo
${PYSITELIB}/pandas/tests/series/methods/test_values.py
${PYSITELIB}/pandas/tests/series/methods/test_values.pyc
${PYSITELIB}/pandas/tests/series/methods/test_values.pyo
${PYSITELIB}/pandas/tests/series/methods/test_view.py
${PYSITELIB}/pandas/tests/series/methods/test_view.pyc
${PYSITELIB}/pandas/tests/series/methods/test_view.pyo
${PYSITELIB}/pandas/tests/series/test_api.py
${PYSITELIB}/pandas/tests/series/test_api.pyc
${PYSITELIB}/pandas/tests/series/test_api.pyo
${PYSITELIB}/pandas/tests/series/test_arithmetic.py
${PYSITELIB}/pandas/tests/series/test_arithmetic.pyc
${PYSITELIB}/pandas/tests/series/test_arithmetic.pyo
${PYSITELIB}/pandas/tests/series/test_constructors.py
${PYSITELIB}/pandas/tests/series/test_constructors.pyc
${PYSITELIB}/pandas/tests/series/test_constructors.pyo
${PYSITELIB}/pandas/tests/series/test_cumulative.py
${PYSITELIB}/pandas/tests/series/test_cumulative.pyc
${PYSITELIB}/pandas/tests/series/test_cumulative.pyo
${PYSITELIB}/pandas/tests/series/test_dtypes.py
${PYSITELIB}/pandas/tests/series/test_dtypes.pyc
${PYSITELIB}/pandas/tests/series/test_dtypes.pyo
${PYSITELIB}/pandas/tests/series/test_duplicates.py
${PYSITELIB}/pandas/tests/series/test_duplicates.pyc
${PYSITELIB}/pandas/tests/series/test_duplicates.pyo
${PYSITELIB}/pandas/tests/series/test_iteration.py
${PYSITELIB}/pandas/tests/series/test_iteration.pyc
${PYSITELIB}/pandas/tests/series/test_iteration.pyo
${PYSITELIB}/pandas/tests/series/test_logical_ops.py
${PYSITELIB}/pandas/tests/series/test_logical_ops.pyc
${PYSITELIB}/pandas/tests/series/test_logical_ops.pyo
${PYSITELIB}/pandas/tests/series/test_missing.py
${PYSITELIB}/pandas/tests/series/test_missing.pyc
${PYSITELIB}/pandas/tests/series/test_missing.pyo
${PYSITELIB}/pandas/tests/series/test_npfuncs.py
${PYSITELIB}/pandas/tests/series/test_npfuncs.pyc
${PYSITELIB}/pandas/tests/series/test_npfuncs.pyo
${PYSITELIB}/pandas/tests/series/test_reductions.py
${PYSITELIB}/pandas/tests/series/test_reductions.pyc
${PYSITELIB}/pandas/tests/series/test_reductions.pyo
${PYSITELIB}/pandas/tests/series/test_repr.py
${PYSITELIB}/pandas/tests/series/test_repr.pyc
${PYSITELIB}/pandas/tests/series/test_repr.pyo
${PYSITELIB}/pandas/tests/series/test_subclass.py
${PYSITELIB}/pandas/tests/series/test_subclass.pyc
${PYSITELIB}/pandas/tests/series/test_subclass.pyo
${PYSITELIB}/pandas/tests/series/test_ufunc.py
${PYSITELIB}/pandas/tests/series/test_ufunc.pyc
${PYSITELIB}/pandas/tests/series/test_ufunc.pyo
${PYSITELIB}/pandas/tests/series/test_unary.py
${PYSITELIB}/pandas/tests/series/test_unary.pyc
${PYSITELIB}/pandas/tests/series/test_unary.pyo
${PYSITELIB}/pandas/tests/series/test_validate.py
${PYSITELIB}/pandas/tests/series/test_validate.pyc
${PYSITELIB}/pandas/tests/series/test_validate.pyo
${PYSITELIB}/pandas/tests/test_aggregation.py
${PYSITELIB}/pandas/tests/test_aggregation.pyc
${PYSITELIB}/pandas/tests/test_aggregation.pyo
${PYSITELIB}/pandas/tests/test_algos.py
${PYSITELIB}/pandas/tests/test_algos.pyc
${PYSITELIB}/pandas/tests/test_algos.pyo
${PYSITELIB}/pandas/tests/test_common.py
${PYSITELIB}/pandas/tests/test_common.pyc
${PYSITELIB}/pandas/tests/test_common.pyo
${PYSITELIB}/pandas/tests/test_downstream.py
${PYSITELIB}/pandas/tests/test_downstream.pyc
${PYSITELIB}/pandas/tests/test_downstream.pyo
${PYSITELIB}/pandas/tests/test_errors.py
${PYSITELIB}/pandas/tests/test_errors.pyc
${PYSITELIB}/pandas/tests/test_errors.pyo
${PYSITELIB}/pandas/tests/test_expressions.py
${PYSITELIB}/pandas/tests/test_expressions.pyc
${PYSITELIB}/pandas/tests/test_expressions.pyo
${PYSITELIB}/pandas/tests/test_flags.py
${PYSITELIB}/pandas/tests/test_flags.pyc
${PYSITELIB}/pandas/tests/test_flags.pyo
${PYSITELIB}/pandas/tests/test_multilevel.py
${PYSITELIB}/pandas/tests/test_multilevel.pyc
${PYSITELIB}/pandas/tests/test_multilevel.pyo
${PYSITELIB}/pandas/tests/test_nanops.py
${PYSITELIB}/pandas/tests/test_nanops.pyc
${PYSITELIB}/pandas/tests/test_nanops.pyo
${PYSITELIB}/pandas/tests/test_optional_dependency.py
${PYSITELIB}/pandas/tests/test_optional_dependency.pyc
${PYSITELIB}/pandas/tests/test_optional_dependency.pyo
${PYSITELIB}/pandas/tests/test_register_accessor.py
${PYSITELIB}/pandas/tests/test_register_accessor.pyc
${PYSITELIB}/pandas/tests/test_register_accessor.pyo
${PYSITELIB}/pandas/tests/test_sorting.py
${PYSITELIB}/pandas/tests/test_sorting.pyc
${PYSITELIB}/pandas/tests/test_sorting.pyo
${PYSITELIB}/pandas/tests/test_strings.py
${PYSITELIB}/pandas/tests/test_strings.pyc
${PYSITELIB}/pandas/tests/test_strings.pyo
${PYSITELIB}/pandas/tests/test_take.py
${PYSITELIB}/pandas/tests/test_take.pyc
${PYSITELIB}/pandas/tests/test_take.pyo
${PYSITELIB}/pandas/tests/tools/__init__.py
${PYSITELIB}/pandas/tests/tools/__init__.pyc
${PYSITELIB}/pandas/tests/tools/__init__.pyo
${PYSITELIB}/pandas/tests/tools/test_to_datetime.py
${PYSITELIB}/pandas/tests/tools/test_to_datetime.pyc
${PYSITELIB}/pandas/tests/tools/test_to_datetime.pyo
${PYSITELIB}/pandas/tests/tools/test_to_numeric.py
${PYSITELIB}/pandas/tests/tools/test_to_numeric.pyc
${PYSITELIB}/pandas/tests/tools/test_to_numeric.pyo
${PYSITELIB}/pandas/tests/tools/test_to_time.py
${PYSITELIB}/pandas/tests/tools/test_to_time.pyc
${PYSITELIB}/pandas/tests/tools/test_to_time.pyo
${PYSITELIB}/pandas/tests/tools/test_to_timedelta.py
${PYSITELIB}/pandas/tests/tools/test_to_timedelta.pyc
${PYSITELIB}/pandas/tests/tools/test_to_timedelta.pyo
${PYSITELIB}/pandas/tests/tseries/__init__.py
${PYSITELIB}/pandas/tests/tseries/__init__.pyc
${PYSITELIB}/pandas/tests/tseries/__init__.pyo
${PYSITELIB}/pandas/tests/tseries/frequencies/__init__.py
${PYSITELIB}/pandas/tests/tseries/frequencies/__init__.pyc
${PYSITELIB}/pandas/tests/tseries/frequencies/__init__.pyo
${PYSITELIB}/pandas/tests/tseries/frequencies/test_freq_code.py
${PYSITELIB}/pandas/tests/tseries/frequencies/test_freq_code.pyc
${PYSITELIB}/pandas/tests/tseries/frequencies/test_freq_code.pyo
${PYSITELIB}/pandas/tests/tseries/frequencies/test_frequencies.py
${PYSITELIB}/pandas/tests/tseries/frequencies/test_frequencies.pyc
${PYSITELIB}/pandas/tests/tseries/frequencies/test_frequencies.pyo
${PYSITELIB}/pandas/tests/tseries/frequencies/test_inference.py
${PYSITELIB}/pandas/tests/tseries/frequencies/test_inference.pyc
${PYSITELIB}/pandas/tests/tseries/frequencies/test_inference.pyo
${PYSITELIB}/pandas/tests/tseries/holiday/__init__.py
${PYSITELIB}/pandas/tests/tseries/holiday/__init__.pyc
${PYSITELIB}/pandas/tests/tseries/holiday/__init__.pyo
${PYSITELIB}/pandas/tests/tseries/holiday/test_calendar.py
${PYSITELIB}/pandas/tests/tseries/holiday/test_calendar.pyc
${PYSITELIB}/pandas/tests/tseries/holiday/test_calendar.pyo
${PYSITELIB}/pandas/tests/tseries/holiday/test_federal.py
${PYSITELIB}/pandas/tests/tseries/holiday/test_federal.pyc
${PYSITELIB}/pandas/tests/tseries/holiday/test_federal.pyo
${PYSITELIB}/pandas/tests/tseries/holiday/test_holiday.py
${PYSITELIB}/pandas/tests/tseries/holiday/test_holiday.pyc
${PYSITELIB}/pandas/tests/tseries/holiday/test_holiday.pyo
${PYSITELIB}/pandas/tests/tseries/holiday/test_observance.py
${PYSITELIB}/pandas/tests/tseries/holiday/test_observance.pyc
${PYSITELIB}/pandas/tests/tseries/holiday/test_observance.pyo
${PYSITELIB}/pandas/tests/tseries/offsets/__init__.py
${PYSITELIB}/pandas/tests/tseries/offsets/__init__.pyc
${PYSITELIB}/pandas/tests/tseries/offsets/__init__.pyo
${PYSITELIB}/pandas/tests/tseries/offsets/common.py
${PYSITELIB}/pandas/tests/tseries/offsets/common.pyc
${PYSITELIB}/pandas/tests/tseries/offsets/common.pyo
${PYSITELIB}/pandas/tests/tseries/offsets/conftest.py
${PYSITELIB}/pandas/tests/tseries/offsets/conftest.pyc
${PYSITELIB}/pandas/tests/tseries/offsets/conftest.pyo
${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.py
${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.pyc
${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.pyo
${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.py
${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.pyc
${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.pyo
${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.py
${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.pyc
${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.pyo
${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.py
${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.pyc
${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.pyo
${PYSITELIB}/pandas/tests/tseries/offsets/test_yqm_offsets.py
${PYSITELIB}/pandas/tests/tseries/offsets/test_yqm_offsets.pyc
${PYSITELIB}/pandas/tests/tseries/offsets/test_yqm_offsets.pyo
${PYSITELIB}/pandas/tests/tslibs/__init__.py
${PYSITELIB}/pandas/tests/tslibs/__init__.pyc
${PYSITELIB}/pandas/tests/tslibs/__init__.pyo
${PYSITELIB}/pandas/tests/tslibs/test_api.py
${PYSITELIB}/pandas/tests/tslibs/test_api.pyc
${PYSITELIB}/pandas/tests/tslibs/test_api.pyo
${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.py
${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.pyc
${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.pyo
${PYSITELIB}/pandas/tests/tslibs/test_ccalendar.py
${PYSITELIB}/pandas/tests/tslibs/test_ccalendar.pyc
${PYSITELIB}/pandas/tests/tslibs/test_ccalendar.pyo
${PYSITELIB}/pandas/tests/tslibs/test_conversion.py
${PYSITELIB}/pandas/tests/tslibs/test_conversion.pyc
${PYSITELIB}/pandas/tests/tslibs/test_conversion.pyo
${PYSITELIB}/pandas/tests/tslibs/test_fields.py
${PYSITELIB}/pandas/tests/tslibs/test_fields.pyc
${PYSITELIB}/pandas/tests/tslibs/test_fields.pyo
${PYSITELIB}/pandas/tests/tslibs/test_libfrequencies.py
${PYSITELIB}/pandas/tests/tslibs/test_libfrequencies.pyc
${PYSITELIB}/pandas/tests/tslibs/test_libfrequencies.pyo
${PYSITELIB}/pandas/tests/tslibs/test_liboffsets.py
${PYSITELIB}/pandas/tests/tslibs/test_liboffsets.pyc
${PYSITELIB}/pandas/tests/tslibs/test_liboffsets.pyo
${PYSITELIB}/pandas/tests/tslibs/test_parse_iso8601.py
${PYSITELIB}/pandas/tests/tslibs/test_parse_iso8601.pyc
${PYSITELIB}/pandas/tests/tslibs/test_parse_iso8601.pyo
${PYSITELIB}/pandas/tests/tslibs/test_parsing.py
${PYSITELIB}/pandas/tests/tslibs/test_parsing.pyc
${PYSITELIB}/pandas/tests/tslibs/test_parsing.pyo
${PYSITELIB}/pandas/tests/tslibs/test_period_asfreq.py
${PYSITELIB}/pandas/tests/tslibs/test_period_asfreq.pyc
${PYSITELIB}/pandas/tests/tslibs/test_period_asfreq.pyo
${PYSITELIB}/pandas/tests/tslibs/test_timedeltas.py
${PYSITELIB}/pandas/tests/tslibs/test_timedeltas.pyc
${PYSITELIB}/pandas/tests/tslibs/test_timedeltas.pyo
${PYSITELIB}/pandas/tests/tslibs/test_timezones.py
${PYSITELIB}/pandas/tests/tslibs/test_timezones.pyc
${PYSITELIB}/pandas/tests/tslibs/test_timezones.pyo
${PYSITELIB}/pandas/tests/tslibs/test_to_offset.py
${PYSITELIB}/pandas/tests/tslibs/test_to_offset.pyc
${PYSITELIB}/pandas/tests/tslibs/test_to_offset.pyo
${PYSITELIB}/pandas/tests/util/__init__.py
${PYSITELIB}/pandas/tests/util/__init__.pyc
${PYSITELIB}/pandas/tests/util/__init__.pyo
${PYSITELIB}/pandas/tests/util/conftest.py
${PYSITELIB}/pandas/tests/util/conftest.pyc
${PYSITELIB}/pandas/tests/util/conftest.pyo
${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.py
${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.pyc
${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.pyo
${PYSITELIB}/pandas/tests/util/test_assert_categorical_equal.py
${PYSITELIB}/pandas/tests/util/test_assert_categorical_equal.pyc
${PYSITELIB}/pandas/tests/util/test_assert_categorical_equal.pyo
${PYSITELIB}/pandas/tests/util/test_assert_extension_array_equal.py
${PYSITELIB}/pandas/tests/util/test_assert_extension_array_equal.pyc
${PYSITELIB}/pandas/tests/util/test_assert_extension_array_equal.pyo
${PYSITELIB}/pandas/tests/util/test_assert_frame_equal.py
${PYSITELIB}/pandas/tests/util/test_assert_frame_equal.pyc
${PYSITELIB}/pandas/tests/util/test_assert_frame_equal.pyo
${PYSITELIB}/pandas/tests/util/test_assert_index_equal.py
${PYSITELIB}/pandas/tests/util/test_assert_index_equal.pyc
${PYSITELIB}/pandas/tests/util/test_assert_index_equal.pyo
${PYSITELIB}/pandas/tests/util/test_assert_interval_array_equal.py
${PYSITELIB}/pandas/tests/util/test_assert_interval_array_equal.pyc
${PYSITELIB}/pandas/tests/util/test_assert_interval_array_equal.pyo
${PYSITELIB}/pandas/tests/util/test_assert_numpy_array_equal.py
${PYSITELIB}/pandas/tests/util/test_assert_numpy_array_equal.pyc
${PYSITELIB}/pandas/tests/util/test_assert_numpy_array_equal.pyo
${PYSITELIB}/pandas/tests/util/test_assert_produces_warning.py
${PYSITELIB}/pandas/tests/util/test_assert_produces_warning.pyc
${PYSITELIB}/pandas/tests/util/test_assert_produces_warning.pyo
${PYSITELIB}/pandas/tests/util/test_assert_series_equal.py
${PYSITELIB}/pandas/tests/util/test_assert_series_equal.pyc
${PYSITELIB}/pandas/tests/util/test_assert_series_equal.pyo
${PYSITELIB}/pandas/tests/util/test_deprecate.py
${PYSITELIB}/pandas/tests/util/test_deprecate.pyc
${PYSITELIB}/pandas/tests/util/test_deprecate.pyo
${PYSITELIB}/pandas/tests/util/test_deprecate_kwarg.py
${PYSITELIB}/pandas/tests/util/test_deprecate_kwarg.pyc
${PYSITELIB}/pandas/tests/util/test_deprecate_kwarg.pyo
${PYSITELIB}/pandas/tests/util/test_deprecate_nonkeyword_arguments.py
${PYSITELIB}/pandas/tests/util/test_deprecate_nonkeyword_arguments.pyc
${PYSITELIB}/pandas/tests/util/test_deprecate_nonkeyword_arguments.pyo
${PYSITELIB}/pandas/tests/util/test_doc.py
${PYSITELIB}/pandas/tests/util/test_doc.pyc
${PYSITELIB}/pandas/tests/util/test_doc.pyo
${PYSITELIB}/pandas/tests/util/test_hashing.py
${PYSITELIB}/pandas/tests/util/test_hashing.pyc
${PYSITELIB}/pandas/tests/util/test_hashing.pyo
${PYSITELIB}/pandas/tests/util/test_numba.py
${PYSITELIB}/pandas/tests/util/test_numba.pyc
${PYSITELIB}/pandas/tests/util/test_numba.pyo
${PYSITELIB}/pandas/tests/util/test_safe_import.py
${PYSITELIB}/pandas/tests/util/test_safe_import.pyc
${PYSITELIB}/pandas/tests/util/test_safe_import.pyo
${PYSITELIB}/pandas/tests/util/test_show_versions.py
${PYSITELIB}/pandas/tests/util/test_show_versions.pyc
${PYSITELIB}/pandas/tests/util/test_show_versions.pyo
${PYSITELIB}/pandas/tests/util/test_util.py
${PYSITELIB}/pandas/tests/util/test_util.pyc
${PYSITELIB}/pandas/tests/util/test_util.pyo
${PYSITELIB}/pandas/tests/util/test_validate_args.py
${PYSITELIB}/pandas/tests/util/test_validate_args.pyc
${PYSITELIB}/pandas/tests/util/test_validate_args.pyo
${PYSITELIB}/pandas/tests/util/test_validate_args_and_kwargs.py
${PYSITELIB}/pandas/tests/util/test_validate_args_and_kwargs.pyc
${PYSITELIB}/pandas/tests/util/test_validate_args_and_kwargs.pyo
${PYSITELIB}/pandas/tests/util/test_validate_kwargs.py
${PYSITELIB}/pandas/tests/util/test_validate_kwargs.pyc
${PYSITELIB}/pandas/tests/util/test_validate_kwargs.pyo
${PYSITELIB}/pandas/tests/window/__init__.py
${PYSITELIB}/pandas/tests/window/__init__.pyc
${PYSITELIB}/pandas/tests/window/__init__.pyo
${PYSITELIB}/pandas/tests/window/conftest.py
${PYSITELIB}/pandas/tests/window/conftest.pyc
${PYSITELIB}/pandas/tests/window/conftest.pyo
${PYSITELIB}/pandas/tests/window/moments/__init__.py
${PYSITELIB}/pandas/tests/window/moments/__init__.pyc
${PYSITELIB}/pandas/tests/window/moments/__init__.pyo
${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.py
${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.pyc
${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.pyo
${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.py
${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.pyc
${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.pyo
${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.py
${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.pyc
${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.pyo
${PYSITELIB}/pandas/tests/window/moments/test_moments_ewm.py
${PYSITELIB}/pandas/tests/window/moments/test_moments_ewm.pyc
${PYSITELIB}/pandas/tests/window/moments/test_moments_ewm.pyo
${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling.py
${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling.pyc
${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling.pyo
${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_apply.py
${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_apply.pyc
${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_apply.pyo
${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_functions.py
${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_functions.pyc
${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_functions.pyo
${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_quantile.py
${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_quantile.pyc
${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_quantile.pyo
${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_skew_kurt.py
${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_skew_kurt.pyc
${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_skew_kurt.pyo
${PYSITELIB}/pandas/tests/window/test_api.py
${PYSITELIB}/pandas/tests/window/test_api.pyc
${PYSITELIB}/pandas/tests/window/test_api.pyo
${PYSITELIB}/pandas/tests/window/test_apply.py
${PYSITELIB}/pandas/tests/window/test_apply.pyc
${PYSITELIB}/pandas/tests/window/test_apply.pyo
${PYSITELIB}/pandas/tests/window/test_base_indexer.py
${PYSITELIB}/pandas/tests/window/test_base_indexer.pyc
${PYSITELIB}/pandas/tests/window/test_base_indexer.pyo
${PYSITELIB}/pandas/tests/window/test_dtypes.py
${PYSITELIB}/pandas/tests/window/test_dtypes.pyc
${PYSITELIB}/pandas/tests/window/test_dtypes.pyo
${PYSITELIB}/pandas/tests/window/test_ewm.py
${PYSITELIB}/pandas/tests/window/test_ewm.pyc
${PYSITELIB}/pandas/tests/window/test_ewm.pyo
${PYSITELIB}/pandas/tests/window/test_expanding.py
${PYSITELIB}/pandas/tests/window/test_expanding.pyc
${PYSITELIB}/pandas/tests/window/test_expanding.pyo
${PYSITELIB}/pandas/tests/window/test_groupby.py
${PYSITELIB}/pandas/tests/window/test_groupby.pyc
${PYSITELIB}/pandas/tests/window/test_groupby.pyo
${PYSITELIB}/pandas/tests/window/test_numba.py
${PYSITELIB}/pandas/tests/window/test_numba.pyc
${PYSITELIB}/pandas/tests/window/test_numba.pyo
${PYSITELIB}/pandas/tests/window/test_pairwise.py
${PYSITELIB}/pandas/tests/window/test_pairwise.pyc
${PYSITELIB}/pandas/tests/window/test_pairwise.pyo
${PYSITELIB}/pandas/tests/window/test_rolling.py
${PYSITELIB}/pandas/tests/window/test_rolling.pyc
${PYSITELIB}/pandas/tests/window/test_rolling.pyo
${PYSITELIB}/pandas/tests/window/test_timeseries_window.py
${PYSITELIB}/pandas/tests/window/test_timeseries_window.pyc
${PYSITELIB}/pandas/tests/window/test_timeseries_window.pyo
${PYSITELIB}/pandas/tests/window/test_win_type.py
${PYSITELIB}/pandas/tests/window/test_win_type.pyc
${PYSITELIB}/pandas/tests/window/test_win_type.pyo
${PYSITELIB}/pandas/tseries/__init__.py
${PYSITELIB}/pandas/tseries/__init__.pyc
${PYSITELIB}/pandas/tseries/__init__.pyo
${PYSITELIB}/pandas/tseries/api.py
${PYSITELIB}/pandas/tseries/api.pyc
${PYSITELIB}/pandas/tseries/api.pyo
${PYSITELIB}/pandas/tseries/frequencies.py
${PYSITELIB}/pandas/tseries/frequencies.pyc
${PYSITELIB}/pandas/tseries/frequencies.pyo
${PYSITELIB}/pandas/tseries/holiday.py
${PYSITELIB}/pandas/tseries/holiday.pyc
${PYSITELIB}/pandas/tseries/holiday.pyo
${PYSITELIB}/pandas/tseries/offsets.py
${PYSITELIB}/pandas/tseries/offsets.pyc
${PYSITELIB}/pandas/tseries/offsets.pyo
${PYSITELIB}/pandas/util/__init__.py
${PYSITELIB}/pandas/util/__init__.pyc
${PYSITELIB}/pandas/util/__init__.pyo
${PYSITELIB}/pandas/util/_decorators.py
${PYSITELIB}/pandas/util/_decorators.pyc
${PYSITELIB}/pandas/util/_decorators.pyo
${PYSITELIB}/pandas/util/_depr_module.py
${PYSITELIB}/pandas/util/_depr_module.pyc
${PYSITELIB}/pandas/util/_depr_module.pyo
${PYSITELIB}/pandas/util/_doctools.py
${PYSITELIB}/pandas/util/_doctools.pyc
${PYSITELIB}/pandas/util/_doctools.pyo
${PYSITELIB}/pandas/util/_exceptions.py
${PYSITELIB}/pandas/util/_exceptions.pyc
${PYSITELIB}/pandas/util/_exceptions.pyo
${PYSITELIB}/pandas/util/_print_versions.py
${PYSITELIB}/pandas/util/_print_versions.pyc
${PYSITELIB}/pandas/util/_print_versions.pyo
${PYSITELIB}/pandas/util/_test_decorators.py
${PYSITELIB}/pandas/util/_test_decorators.pyc
${PYSITELIB}/pandas/util/_test_decorators.pyo
${PYSITELIB}/pandas/util/_tester.py
${PYSITELIB}/pandas/util/_tester.pyc
${PYSITELIB}/pandas/util/_tester.pyo
${PYSITELIB}/pandas/util/_validators.py
${PYSITELIB}/pandas/util/_validators.pyc
${PYSITELIB}/pandas/util/_validators.pyo
${PYSITELIB}/pandas/util/testing.py
${PYSITELIB}/pandas/util/testing.pyc
${PYSITELIB}/pandas/util/testing.pyo