summaryrefslogtreecommitdiff
path: root/devel/py-ipython1/PLIST
blob: 16a9be3e611b621848988e2302297aad3688c2e5 (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
@comment $NetBSD: PLIST,v 1.3 2014/03/22 16:38:05 prlw1 Exp $
${PLIST.py2x}bin/ipcluster
${PLIST.py2x}bin/ipcontroller
${PLIST.py2x}bin/ipengine
${PLIST.py2x}bin/iplogger
${PLIST.py2x}bin/iptest
${PLIST.py2x}bin/ipython
${PLIST.py2x}bin/irunner
${PLIST.py2x}bin/pycolor
${PLIST.py3x}bin/ipcluster3
${PLIST.py3x}bin/ipcontroller3
${PLIST.py3x}bin/ipengine3
${PLIST.py3x}bin/iplogger3
${PLIST.py3x}bin/iptest3
${PLIST.py3x}bin/ipython3
${PLIST.py3x}bin/irunner3
${PLIST.py3x}bin/pycolor3
${PLIST.py2x}${PYSITELIB}/${EGG_FILE}
${PLIST.py3x}${PYSITELIB}/${EGG_FILE}/PKG-INFO
${PLIST.py3x}${PYSITELIB}/${EGG_FILE}/SOURCES.txt
${PLIST.py3x}${PYSITELIB}/${EGG_FILE}/dependency_links.txt
${PLIST.py3x}${PYSITELIB}/${EGG_FILE}/entry_points.txt
${PLIST.py3x}${PYSITELIB}/${EGG_FILE}/not-zip-safe
${PLIST.py3x}${PYSITELIB}/${EGG_FILE}/requires.txt
${PLIST.py3x}${PYSITELIB}/${EGG_FILE}/top_level.txt
${PYSITELIB}/IPython/__init__.py
${PYSITELIB}/IPython/__init__.pyc
${PYSITELIB}/IPython/__init__.pyo
${PYSITELIB}/IPython/__main__.py
${PYSITELIB}/IPython/__main__.pyc
${PYSITELIB}/IPython/__main__.pyo
${PYSITELIB}/IPython/config/__init__.py
${PYSITELIB}/IPython/config/__init__.pyc
${PYSITELIB}/IPython/config/__init__.pyo
${PYSITELIB}/IPython/config/application.py
${PYSITELIB}/IPython/config/application.pyc
${PYSITELIB}/IPython/config/application.pyo
${PYSITELIB}/IPython/config/configurable.py
${PYSITELIB}/IPython/config/configurable.pyc
${PYSITELIB}/IPython/config/configurable.pyo
${PYSITELIB}/IPython/config/loader.py
${PYSITELIB}/IPython/config/loader.pyc
${PYSITELIB}/IPython/config/loader.pyo
${PYSITELIB}/IPython/config/profile/README
${PYSITELIB}/IPython/config/profile/README_STARTUP
${PYSITELIB}/IPython/config/profile/__init__.py
${PYSITELIB}/IPython/config/profile/__init__.pyc
${PYSITELIB}/IPython/config/profile/__init__.pyo
${PYSITELIB}/IPython/config/profile/cluster/ipython_config.py
${PYSITELIB}/IPython/config/profile/cluster/ipython_config.pyc
${PYSITELIB}/IPython/config/profile/cluster/ipython_config.pyo
${PYSITELIB}/IPython/config/profile/math/ipython_config.py
${PYSITELIB}/IPython/config/profile/math/ipython_config.pyc
${PYSITELIB}/IPython/config/profile/math/ipython_config.pyo
${PYSITELIB}/IPython/config/profile/pysh/ipython_config.py
${PYSITELIB}/IPython/config/profile/pysh/ipython_config.pyc
${PYSITELIB}/IPython/config/profile/pysh/ipython_config.pyo
${PYSITELIB}/IPython/config/profile/sympy/ipython_config.py
${PYSITELIB}/IPython/config/profile/sympy/ipython_config.pyc
${PYSITELIB}/IPython/config/profile/sympy/ipython_config.pyo
${PYSITELIB}/IPython/config/tests/__init__.py
${PYSITELIB}/IPython/config/tests/__init__.pyc
${PYSITELIB}/IPython/config/tests/__init__.pyo
${PYSITELIB}/IPython/config/tests/test_application.py
${PYSITELIB}/IPython/config/tests/test_application.pyc
${PYSITELIB}/IPython/config/tests/test_application.pyo
${PYSITELIB}/IPython/config/tests/test_configurable.py
${PYSITELIB}/IPython/config/tests/test_configurable.pyc
${PYSITELIB}/IPython/config/tests/test_configurable.pyo
${PYSITELIB}/IPython/config/tests/test_loader.py
${PYSITELIB}/IPython/config/tests/test_loader.pyc
${PYSITELIB}/IPython/config/tests/test_loader.pyo
${PYSITELIB}/IPython/consoleapp.py
${PYSITELIB}/IPython/consoleapp.pyc
${PYSITELIB}/IPython/consoleapp.pyo
${PYSITELIB}/IPython/core/__init__.py
${PYSITELIB}/IPython/core/__init__.pyc
${PYSITELIB}/IPython/core/__init__.pyo
${PYSITELIB}/IPython/core/alias.py
${PYSITELIB}/IPython/core/alias.pyc
${PYSITELIB}/IPython/core/alias.pyo
${PYSITELIB}/IPython/core/application.py
${PYSITELIB}/IPython/core/application.pyc
${PYSITELIB}/IPython/core/application.pyo
${PYSITELIB}/IPython/core/autocall.py
${PYSITELIB}/IPython/core/autocall.pyc
${PYSITELIB}/IPython/core/autocall.pyo
${PYSITELIB}/IPython/core/builtin_trap.py
${PYSITELIB}/IPython/core/builtin_trap.pyc
${PYSITELIB}/IPython/core/builtin_trap.pyo
${PYSITELIB}/IPython/core/compilerop.py
${PYSITELIB}/IPython/core/compilerop.pyc
${PYSITELIB}/IPython/core/compilerop.pyo
${PYSITELIB}/IPython/core/completer.py
${PYSITELIB}/IPython/core/completer.pyc
${PYSITELIB}/IPython/core/completer.pyo
${PYSITELIB}/IPython/core/completerlib.py
${PYSITELIB}/IPython/core/completerlib.pyc
${PYSITELIB}/IPython/core/completerlib.pyo
${PYSITELIB}/IPython/core/crashhandler.py
${PYSITELIB}/IPython/core/crashhandler.pyc
${PYSITELIB}/IPython/core/crashhandler.pyo
${PYSITELIB}/IPython/core/debugger.py
${PYSITELIB}/IPython/core/debugger.pyc
${PYSITELIB}/IPython/core/debugger.pyo
${PYSITELIB}/IPython/core/display.py
${PYSITELIB}/IPython/core/display.pyc
${PYSITELIB}/IPython/core/display.pyo
${PYSITELIB}/IPython/core/display_trap.py
${PYSITELIB}/IPython/core/display_trap.pyc
${PYSITELIB}/IPython/core/display_trap.pyo
${PYSITELIB}/IPython/core/displayhook.py
${PYSITELIB}/IPython/core/displayhook.pyc
${PYSITELIB}/IPython/core/displayhook.pyo
${PYSITELIB}/IPython/core/displaypub.py
${PYSITELIB}/IPython/core/displaypub.pyc
${PYSITELIB}/IPython/core/displaypub.pyo
${PYSITELIB}/IPython/core/error.py
${PYSITELIB}/IPython/core/error.pyc
${PYSITELIB}/IPython/core/error.pyo
${PYSITELIB}/IPython/core/excolors.py
${PYSITELIB}/IPython/core/excolors.pyc
${PYSITELIB}/IPython/core/excolors.pyo
${PYSITELIB}/IPython/core/extensions.py
${PYSITELIB}/IPython/core/extensions.pyc
${PYSITELIB}/IPython/core/extensions.pyo
${PYSITELIB}/IPython/core/fakemodule.py
${PYSITELIB}/IPython/core/fakemodule.pyc
${PYSITELIB}/IPython/core/fakemodule.pyo
${PYSITELIB}/IPython/core/formatters.py
${PYSITELIB}/IPython/core/formatters.pyc
${PYSITELIB}/IPython/core/formatters.pyo
${PYSITELIB}/IPython/core/getipython.py
${PYSITELIB}/IPython/core/getipython.pyc
${PYSITELIB}/IPython/core/getipython.pyo
${PYSITELIB}/IPython/core/history.py
${PYSITELIB}/IPython/core/history.pyc
${PYSITELIB}/IPython/core/history.pyo
${PYSITELIB}/IPython/core/historyapp.py
${PYSITELIB}/IPython/core/historyapp.pyc
${PYSITELIB}/IPython/core/historyapp.pyo
${PYSITELIB}/IPython/core/hooks.py
${PYSITELIB}/IPython/core/hooks.pyc
${PYSITELIB}/IPython/core/hooks.pyo
${PYSITELIB}/IPython/core/inputsplitter.py
${PYSITELIB}/IPython/core/inputsplitter.pyc
${PYSITELIB}/IPython/core/inputsplitter.pyo
${PYSITELIB}/IPython/core/inputtransformer.py
${PYSITELIB}/IPython/core/inputtransformer.pyc
${PYSITELIB}/IPython/core/inputtransformer.pyo
${PYSITELIB}/IPython/core/interactiveshell.py
${PYSITELIB}/IPython/core/interactiveshell.pyc
${PYSITELIB}/IPython/core/interactiveshell.pyo
${PYSITELIB}/IPython/core/logger.py
${PYSITELIB}/IPython/core/logger.pyc
${PYSITELIB}/IPython/core/logger.pyo
${PYSITELIB}/IPython/core/macro.py
${PYSITELIB}/IPython/core/macro.pyc
${PYSITELIB}/IPython/core/macro.pyo
${PYSITELIB}/IPython/core/magic.py
${PYSITELIB}/IPython/core/magic.pyc
${PYSITELIB}/IPython/core/magic.pyo
${PYSITELIB}/IPython/core/magic_arguments.py
${PYSITELIB}/IPython/core/magic_arguments.pyc
${PYSITELIB}/IPython/core/magic_arguments.pyo
${PYSITELIB}/IPython/core/magics/__init__.py
${PYSITELIB}/IPython/core/magics/__init__.pyc
${PYSITELIB}/IPython/core/magics/__init__.pyo
${PYSITELIB}/IPython/core/magics/auto.py
${PYSITELIB}/IPython/core/magics/auto.pyc
${PYSITELIB}/IPython/core/magics/auto.pyo
${PYSITELIB}/IPython/core/magics/basic.py
${PYSITELIB}/IPython/core/magics/basic.pyc
${PYSITELIB}/IPython/core/magics/basic.pyo
${PYSITELIB}/IPython/core/magics/code.py
${PYSITELIB}/IPython/core/magics/code.pyc
${PYSITELIB}/IPython/core/magics/code.pyo
${PYSITELIB}/IPython/core/magics/config.py
${PYSITELIB}/IPython/core/magics/config.pyc
${PYSITELIB}/IPython/core/magics/config.pyo
${PYSITELIB}/IPython/core/magics/deprecated.py
${PYSITELIB}/IPython/core/magics/deprecated.pyc
${PYSITELIB}/IPython/core/magics/deprecated.pyo
${PYSITELIB}/IPython/core/magics/display.py
${PYSITELIB}/IPython/core/magics/display.pyc
${PYSITELIB}/IPython/core/magics/display.pyo
${PYSITELIB}/IPython/core/magics/execution.py
${PYSITELIB}/IPython/core/magics/execution.pyc
${PYSITELIB}/IPython/core/magics/execution.pyo
${PYSITELIB}/IPython/core/magics/extension.py
${PYSITELIB}/IPython/core/magics/extension.pyc
${PYSITELIB}/IPython/core/magics/extension.pyo
${PYSITELIB}/IPython/core/magics/history.py
${PYSITELIB}/IPython/core/magics/history.pyc
${PYSITELIB}/IPython/core/magics/history.pyo
${PYSITELIB}/IPython/core/magics/logging.py
${PYSITELIB}/IPython/core/magics/logging.pyc
${PYSITELIB}/IPython/core/magics/logging.pyo
${PYSITELIB}/IPython/core/magics/namespace.py
${PYSITELIB}/IPython/core/magics/namespace.pyc
${PYSITELIB}/IPython/core/magics/namespace.pyo
${PYSITELIB}/IPython/core/magics/osm.py
${PYSITELIB}/IPython/core/magics/osm.pyc
${PYSITELIB}/IPython/core/magics/osm.pyo
${PYSITELIB}/IPython/core/magics/pylab.py
${PYSITELIB}/IPython/core/magics/pylab.pyc
${PYSITELIB}/IPython/core/magics/pylab.pyo
${PYSITELIB}/IPython/core/magics/script.py
${PYSITELIB}/IPython/core/magics/script.pyc
${PYSITELIB}/IPython/core/magics/script.pyo
${PYSITELIB}/IPython/core/oinspect.py
${PYSITELIB}/IPython/core/oinspect.pyc
${PYSITELIB}/IPython/core/oinspect.pyo
${PYSITELIB}/IPython/core/page.py
${PYSITELIB}/IPython/core/page.pyc
${PYSITELIB}/IPython/core/page.pyo
${PYSITELIB}/IPython/core/payload.py
${PYSITELIB}/IPython/core/payload.pyc
${PYSITELIB}/IPython/core/payload.pyo
${PYSITELIB}/IPython/core/payloadpage.py
${PYSITELIB}/IPython/core/payloadpage.pyc
${PYSITELIB}/IPython/core/payloadpage.pyo
${PYSITELIB}/IPython/core/prefilter.py
${PYSITELIB}/IPython/core/prefilter.pyc
${PYSITELIB}/IPython/core/prefilter.pyo
${PYSITELIB}/IPython/core/profileapp.py
${PYSITELIB}/IPython/core/profileapp.pyc
${PYSITELIB}/IPython/core/profileapp.pyo
${PYSITELIB}/IPython/core/profiledir.py
${PYSITELIB}/IPython/core/profiledir.pyc
${PYSITELIB}/IPython/core/profiledir.pyo
${PYSITELIB}/IPython/core/prompts.py
${PYSITELIB}/IPython/core/prompts.pyc
${PYSITELIB}/IPython/core/prompts.pyo
${PYSITELIB}/IPython/core/pylabtools.py
${PYSITELIB}/IPython/core/pylabtools.pyc
${PYSITELIB}/IPython/core/pylabtools.pyo
${PYSITELIB}/IPython/core/release.py
${PYSITELIB}/IPython/core/release.pyc
${PYSITELIB}/IPython/core/release.pyo
${PYSITELIB}/IPython/core/shadowns.py
${PYSITELIB}/IPython/core/shadowns.pyc
${PYSITELIB}/IPython/core/shadowns.pyo
${PYSITELIB}/IPython/core/shellapp.py
${PYSITELIB}/IPython/core/shellapp.pyc
${PYSITELIB}/IPython/core/shellapp.pyo
${PYSITELIB}/IPython/core/splitinput.py
${PYSITELIB}/IPython/core/splitinput.pyc
${PYSITELIB}/IPython/core/splitinput.pyo
${PYSITELIB}/IPython/core/tests/2x2.jpg
${PYSITELIB}/IPython/core/tests/2x2.png
${PYSITELIB}/IPython/core/tests/__init__.py
${PYSITELIB}/IPython/core/tests/__init__.pyc
${PYSITELIB}/IPython/core/tests/__init__.pyo
${PYSITELIB}/IPython/core/tests/daft_extension.py
${PYSITELIB}/IPython/core/tests/daft_extension.pyc
${PYSITELIB}/IPython/core/tests/daft_extension.pyo
${PYSITELIB}/IPython/core/tests/nonascii.py
${PYSITELIB}/IPython/core/tests/nonascii.pyc
${PYSITELIB}/IPython/core/tests/nonascii.pyo
${PYSITELIB}/IPython/core/tests/nonascii2.py
${PYSITELIB}/IPython/core/tests/nonascii2.pyc
${PYSITELIB}/IPython/core/tests/nonascii2.pyo
${PYSITELIB}/IPython/core/tests/print_argv.py
${PYSITELIB}/IPython/core/tests/print_argv.pyc
${PYSITELIB}/IPython/core/tests/print_argv.pyo
${PYSITELIB}/IPython/core/tests/refbug.py
${PYSITELIB}/IPython/core/tests/refbug.pyc
${PYSITELIB}/IPython/core/tests/refbug.pyo
${PYSITELIB}/IPython/core/tests/simpleerr.py
${PYSITELIB}/IPython/core/tests/simpleerr.pyc
${PYSITELIB}/IPython/core/tests/simpleerr.pyo
${PYSITELIB}/IPython/core/tests/tclass.py
${PYSITELIB}/IPython/core/tests/tclass.pyc
${PYSITELIB}/IPython/core/tests/tclass.pyo
${PYSITELIB}/IPython/core/tests/test_application.py
${PYSITELIB}/IPython/core/tests/test_application.pyc
${PYSITELIB}/IPython/core/tests/test_application.pyo
${PYSITELIB}/IPython/core/tests/test_autocall.py
${PYSITELIB}/IPython/core/tests/test_autocall.pyc
${PYSITELIB}/IPython/core/tests/test_autocall.pyo
${PYSITELIB}/IPython/core/tests/test_compilerop.py
${PYSITELIB}/IPython/core/tests/test_compilerop.pyc
${PYSITELIB}/IPython/core/tests/test_compilerop.pyo
${PYSITELIB}/IPython/core/tests/test_completer.py
${PYSITELIB}/IPython/core/tests/test_completer.pyc
${PYSITELIB}/IPython/core/tests/test_completer.pyo
${PYSITELIB}/IPython/core/tests/test_completerlib.py
${PYSITELIB}/IPython/core/tests/test_completerlib.pyc
${PYSITELIB}/IPython/core/tests/test_completerlib.pyo
${PYSITELIB}/IPython/core/tests/test_debugger.py
${PYSITELIB}/IPython/core/tests/test_debugger.pyc
${PYSITELIB}/IPython/core/tests/test_debugger.pyo
${PYSITELIB}/IPython/core/tests/test_display.py
${PYSITELIB}/IPython/core/tests/test_display.pyc
${PYSITELIB}/IPython/core/tests/test_display.pyo
${PYSITELIB}/IPython/core/tests/test_extension.py
${PYSITELIB}/IPython/core/tests/test_extension.pyc
${PYSITELIB}/IPython/core/tests/test_extension.pyo
${PYSITELIB}/IPython/core/tests/test_fakemodule.py
${PYSITELIB}/IPython/core/tests/test_fakemodule.pyc
${PYSITELIB}/IPython/core/tests/test_fakemodule.pyo
${PYSITELIB}/IPython/core/tests/test_formatters.py
${PYSITELIB}/IPython/core/tests/test_formatters.pyc
${PYSITELIB}/IPython/core/tests/test_formatters.pyo
${PYSITELIB}/IPython/core/tests/test_handlers.py
${PYSITELIB}/IPython/core/tests/test_handlers.pyc
${PYSITELIB}/IPython/core/tests/test_handlers.pyo
${PYSITELIB}/IPython/core/tests/test_history.py
${PYSITELIB}/IPython/core/tests/test_history.pyc
${PYSITELIB}/IPython/core/tests/test_history.pyo
${PYSITELIB}/IPython/core/tests/test_hooks.py
${PYSITELIB}/IPython/core/tests/test_hooks.pyc
${PYSITELIB}/IPython/core/tests/test_hooks.pyo
${PYSITELIB}/IPython/core/tests/test_imports.py
${PYSITELIB}/IPython/core/tests/test_imports.pyc
${PYSITELIB}/IPython/core/tests/test_imports.pyo
${PYSITELIB}/IPython/core/tests/test_inputsplitter.py
${PYSITELIB}/IPython/core/tests/test_inputsplitter.pyc
${PYSITELIB}/IPython/core/tests/test_inputsplitter.pyo
${PYSITELIB}/IPython/core/tests/test_inputtransformer.py
${PYSITELIB}/IPython/core/tests/test_inputtransformer.pyc
${PYSITELIB}/IPython/core/tests/test_inputtransformer.pyo
${PYSITELIB}/IPython/core/tests/test_interactiveshell.py
${PYSITELIB}/IPython/core/tests/test_interactiveshell.pyc
${PYSITELIB}/IPython/core/tests/test_interactiveshell.pyo
${PYSITELIB}/IPython/core/tests/test_iplib.py
${PYSITELIB}/IPython/core/tests/test_iplib.pyc
${PYSITELIB}/IPython/core/tests/test_iplib.pyo
${PYSITELIB}/IPython/core/tests/test_logger.py
${PYSITELIB}/IPython/core/tests/test_logger.pyc
${PYSITELIB}/IPython/core/tests/test_logger.pyo
${PYSITELIB}/IPython/core/tests/test_magic.py
${PYSITELIB}/IPython/core/tests/test_magic.pyc
${PYSITELIB}/IPython/core/tests/test_magic.pyo
${PYSITELIB}/IPython/core/tests/test_magic_arguments.py
${PYSITELIB}/IPython/core/tests/test_magic_arguments.pyc
${PYSITELIB}/IPython/core/tests/test_magic_arguments.pyo
${PYSITELIB}/IPython/core/tests/test_magic_terminal.py
${PYSITELIB}/IPython/core/tests/test_magic_terminal.pyc
${PYSITELIB}/IPython/core/tests/test_magic_terminal.pyo
${PYSITELIB}/IPython/core/tests/test_oinspect.py
${PYSITELIB}/IPython/core/tests/test_oinspect.pyc
${PYSITELIB}/IPython/core/tests/test_oinspect.pyo
${PYSITELIB}/IPython/core/tests/test_page.py
${PYSITELIB}/IPython/core/tests/test_page.pyc
${PYSITELIB}/IPython/core/tests/test_page.pyo
${PYSITELIB}/IPython/core/tests/test_prefilter.py
${PYSITELIB}/IPython/core/tests/test_prefilter.pyc
${PYSITELIB}/IPython/core/tests/test_prefilter.pyo
${PYSITELIB}/IPython/core/tests/test_profile.py
${PYSITELIB}/IPython/core/tests/test_profile.pyc
${PYSITELIB}/IPython/core/tests/test_profile.pyo
${PYSITELIB}/IPython/core/tests/test_prompts.py
${PYSITELIB}/IPython/core/tests/test_prompts.pyc
${PYSITELIB}/IPython/core/tests/test_prompts.pyo
${PYSITELIB}/IPython/core/tests/test_pylabtools.py
${PYSITELIB}/IPython/core/tests/test_pylabtools.pyc
${PYSITELIB}/IPython/core/tests/test_pylabtools.pyo
${PYSITELIB}/IPython/core/tests/test_run.py
${PYSITELIB}/IPython/core/tests/test_run.pyc
${PYSITELIB}/IPython/core/tests/test_run.pyo
${PYSITELIB}/IPython/core/tests/test_shellapp.py
${PYSITELIB}/IPython/core/tests/test_shellapp.pyc
${PYSITELIB}/IPython/core/tests/test_shellapp.pyo
${PYSITELIB}/IPython/core/tests/test_splitinput.py
${PYSITELIB}/IPython/core/tests/test_splitinput.pyc
${PYSITELIB}/IPython/core/tests/test_splitinput.pyo
${PYSITELIB}/IPython/core/tests/test_ultratb.py
${PYSITELIB}/IPython/core/tests/test_ultratb.pyc
${PYSITELIB}/IPython/core/tests/test_ultratb.pyo
${PYSITELIB}/IPython/core/ultratb.py
${PYSITELIB}/IPython/core/ultratb.pyc
${PYSITELIB}/IPython/core/ultratb.pyo
${PYSITELIB}/IPython/core/usage.py
${PYSITELIB}/IPython/core/usage.pyc
${PYSITELIB}/IPython/core/usage.pyo
${PYSITELIB}/IPython/display.py
${PYSITELIB}/IPython/display.pyc
${PYSITELIB}/IPython/display.pyo
${PYSITELIB}/IPython/extensions/__init__.py
${PYSITELIB}/IPython/extensions/__init__.pyc
${PYSITELIB}/IPython/extensions/__init__.pyo
${PYSITELIB}/IPython/extensions/autoreload.py
${PYSITELIB}/IPython/extensions/autoreload.pyc
${PYSITELIB}/IPython/extensions/autoreload.pyo
${PYSITELIB}/IPython/extensions/cythonmagic.py
${PYSITELIB}/IPython/extensions/cythonmagic.pyc
${PYSITELIB}/IPython/extensions/cythonmagic.pyo
${PYSITELIB}/IPython/extensions/octavemagic.py
${PYSITELIB}/IPython/extensions/octavemagic.pyc
${PYSITELIB}/IPython/extensions/octavemagic.pyo
${PYSITELIB}/IPython/extensions/parallelmagic.py
${PYSITELIB}/IPython/extensions/parallelmagic.pyc
${PYSITELIB}/IPython/extensions/parallelmagic.pyo
${PYSITELIB}/IPython/extensions/rmagic.py
${PYSITELIB}/IPython/extensions/rmagic.pyc
${PYSITELIB}/IPython/extensions/rmagic.pyo
${PYSITELIB}/IPython/extensions/storemagic.py
${PYSITELIB}/IPython/extensions/storemagic.pyc
${PYSITELIB}/IPython/extensions/storemagic.pyo
${PYSITELIB}/IPython/extensions/sympyprinting.py
${PYSITELIB}/IPython/extensions/sympyprinting.pyc
${PYSITELIB}/IPython/extensions/sympyprinting.pyo
${PYSITELIB}/IPython/extensions/tests/__init__.py
${PYSITELIB}/IPython/extensions/tests/__init__.pyc
${PYSITELIB}/IPython/extensions/tests/__init__.pyo
${PYSITELIB}/IPython/extensions/tests/test_autoreload.py
${PYSITELIB}/IPython/extensions/tests/test_autoreload.pyc
${PYSITELIB}/IPython/extensions/tests/test_autoreload.pyo
${PYSITELIB}/IPython/extensions/tests/test_cythonmagic.py
${PYSITELIB}/IPython/extensions/tests/test_cythonmagic.pyc
${PYSITELIB}/IPython/extensions/tests/test_cythonmagic.pyo
${PYSITELIB}/IPython/extensions/tests/test_octavemagic.py
${PYSITELIB}/IPython/extensions/tests/test_octavemagic.pyc
${PYSITELIB}/IPython/extensions/tests/test_octavemagic.pyo
${PYSITELIB}/IPython/extensions/tests/test_rmagic.py
${PYSITELIB}/IPython/extensions/tests/test_rmagic.pyc
${PYSITELIB}/IPython/extensions/tests/test_rmagic.pyo
${PYSITELIB}/IPython/extensions/tests/test_storemagic.py
${PYSITELIB}/IPython/extensions/tests/test_storemagic.pyc
${PYSITELIB}/IPython/extensions/tests/test_storemagic.pyo
${PYSITELIB}/IPython/external/__init__.py
${PYSITELIB}/IPython/external/__init__.pyc
${PYSITELIB}/IPython/external/__init__.pyo
${PYSITELIB}/IPython/external/appnope/__init__.py
${PYSITELIB}/IPython/external/appnope/__init__.pyc
${PYSITELIB}/IPython/external/appnope/__init__.pyo
${PYSITELIB}/IPython/external/appnope/_dummy.py
${PYSITELIB}/IPython/external/appnope/_dummy.pyc
${PYSITELIB}/IPython/external/appnope/_dummy.pyo
${PYSITELIB}/IPython/external/appnope/_nope.py
${PYSITELIB}/IPython/external/appnope/_nope.pyc
${PYSITELIB}/IPython/external/appnope/_nope.pyo
${PYSITELIB}/IPython/external/argparse/__init__.py
${PYSITELIB}/IPython/external/argparse/__init__.pyc
${PYSITELIB}/IPython/external/argparse/__init__.pyo
${PYSITELIB}/IPython/external/argparse/_argparse.py
${PYSITELIB}/IPython/external/argparse/_argparse.pyc
${PYSITELIB}/IPython/external/argparse/_argparse.pyo
${PYSITELIB}/IPython/external/decorator/__init__.py
${PYSITELIB}/IPython/external/decorator/__init__.pyc
${PYSITELIB}/IPython/external/decorator/__init__.pyo
${PYSITELIB}/IPython/external/decorator/_decorator.py
${PYSITELIB}/IPython/external/decorator/_decorator.pyc
${PYSITELIB}/IPython/external/decorator/_decorator.pyo
${PYSITELIB}/IPython/external/decorators/__init__.py
${PYSITELIB}/IPython/external/decorators/__init__.pyc
${PYSITELIB}/IPython/external/decorators/__init__.pyo
${PYSITELIB}/IPython/external/decorators/_decorators.py
${PYSITELIB}/IPython/external/decorators/_decorators.pyc
${PYSITELIB}/IPython/external/decorators/_decorators.pyo
${PYSITELIB}/IPython/external/decorators/_numpy_testing_noseclasses.py
${PYSITELIB}/IPython/external/decorators/_numpy_testing_noseclasses.pyc
${PYSITELIB}/IPython/external/decorators/_numpy_testing_noseclasses.pyo
${PYSITELIB}/IPython/external/decorators/_numpy_testing_utils.py
${PYSITELIB}/IPython/external/decorators/_numpy_testing_utils.pyc
${PYSITELIB}/IPython/external/decorators/_numpy_testing_utils.pyo
${PYSITELIB}/IPython/external/jsonpointer/__init__.py
${PYSITELIB}/IPython/external/jsonpointer/__init__.pyc
${PYSITELIB}/IPython/external/jsonpointer/__init__.pyo
${PYSITELIB}/IPython/external/jsonpointer/_jsonpointer.py
${PYSITELIB}/IPython/external/jsonpointer/_jsonpointer.pyc
${PYSITELIB}/IPython/external/jsonpointer/_jsonpointer.pyo
${PYSITELIB}/IPython/external/jsonschema/__init__.py
${PYSITELIB}/IPython/external/jsonschema/__init__.pyc
${PYSITELIB}/IPython/external/jsonschema/__init__.pyo
${PYSITELIB}/IPython/external/jsonschema/_jsonschema.py
${PYSITELIB}/IPython/external/jsonschema/_jsonschema.pyc
${PYSITELIB}/IPython/external/jsonschema/_jsonschema.pyo
${PYSITELIB}/IPython/external/mathjax.py
${PYSITELIB}/IPython/external/mathjax.pyc
${PYSITELIB}/IPython/external/mathjax.pyo
${PYSITELIB}/IPython/external/path/__init__.py
${PYSITELIB}/IPython/external/path/__init__.pyc
${PYSITELIB}/IPython/external/path/__init__.pyo
${PYSITELIB}/IPython/external/path/_path.py
${PYSITELIB}/IPython/external/path/_path.pyc
${PYSITELIB}/IPython/external/path/_path.pyo
${PYSITELIB}/IPython/external/pexpect/__init__.py
${PYSITELIB}/IPython/external/pexpect/__init__.pyc
${PYSITELIB}/IPython/external/pexpect/__init__.pyo
${PYSITELIB}/IPython/external/pexpect/_pexpect.py
${PYSITELIB}/IPython/external/pexpect/_pexpect.pyc
${PYSITELIB}/IPython/external/pexpect/_pexpect.pyo
${PYSITELIB}/IPython/external/qt.py
${PYSITELIB}/IPython/external/qt.pyc
${PYSITELIB}/IPython/external/qt.pyo
${PYSITELIB}/IPython/external/qt_for_kernel.py
${PYSITELIB}/IPython/external/qt_for_kernel.pyc
${PYSITELIB}/IPython/external/qt_for_kernel.pyo
${PYSITELIB}/IPython/external/qt_loaders.py
${PYSITELIB}/IPython/external/qt_loaders.pyc
${PYSITELIB}/IPython/external/qt_loaders.pyo
${PYSITELIB}/IPython/external/simplegeneric/__init__.py
${PYSITELIB}/IPython/external/simplegeneric/__init__.pyc
${PYSITELIB}/IPython/external/simplegeneric/__init__.pyo
${PYSITELIB}/IPython/external/simplegeneric/_simplegeneric.py
${PYSITELIB}/IPython/external/simplegeneric/_simplegeneric.pyc
${PYSITELIB}/IPython/external/simplegeneric/_simplegeneric.pyo
${PYSITELIB}/IPython/external/ssh/__init__.py
${PYSITELIB}/IPython/external/ssh/__init__.pyc
${PYSITELIB}/IPython/external/ssh/__init__.pyo
${PYSITELIB}/IPython/external/ssh/forward.py
${PYSITELIB}/IPython/external/ssh/forward.pyc
${PYSITELIB}/IPython/external/ssh/forward.pyo
${PYSITELIB}/IPython/external/ssh/tunnel.py
${PYSITELIB}/IPython/external/ssh/tunnel.pyc
${PYSITELIB}/IPython/external/ssh/tunnel.pyo
${PYSITELIB}/IPython/frontend.py
${PYSITELIB}/IPython/frontend.pyc
${PYSITELIB}/IPython/frontend.pyo
${PYSITELIB}/IPython/html/__init__.py
${PYSITELIB}/IPython/html/__init__.pyc
${PYSITELIB}/IPython/html/__init__.pyo
${PYSITELIB}/IPython/html/auth/__init__.py
${PYSITELIB}/IPython/html/auth/__init__.pyc
${PYSITELIB}/IPython/html/auth/__init__.pyo
${PYSITELIB}/IPython/html/auth/login.py
${PYSITELIB}/IPython/html/auth/login.pyc
${PYSITELIB}/IPython/html/auth/login.pyo
${PYSITELIB}/IPython/html/auth/logout.py
${PYSITELIB}/IPython/html/auth/logout.pyc
${PYSITELIB}/IPython/html/auth/logout.pyo
${PYSITELIB}/IPython/html/base/__init__.py
${PYSITELIB}/IPython/html/base/__init__.pyc
${PYSITELIB}/IPython/html/base/__init__.pyo
${PYSITELIB}/IPython/html/base/handlers.py
${PYSITELIB}/IPython/html/base/handlers.pyc
${PYSITELIB}/IPython/html/base/handlers.pyo
${PYSITELIB}/IPython/html/base/zmqhandlers.py
${PYSITELIB}/IPython/html/base/zmqhandlers.pyc
${PYSITELIB}/IPython/html/base/zmqhandlers.pyo
${PYSITELIB}/IPython/html/fabfile.py
${PYSITELIB}/IPython/html/fabfile.pyc
${PYSITELIB}/IPython/html/fabfile.pyo
${PYSITELIB}/IPython/html/notebook/__init__.py
${PYSITELIB}/IPython/html/notebook/__init__.pyc
${PYSITELIB}/IPython/html/notebook/__init__.pyo
${PYSITELIB}/IPython/html/notebook/handlers.py
${PYSITELIB}/IPython/html/notebook/handlers.pyc
${PYSITELIB}/IPython/html/notebook/handlers.pyo
${PYSITELIB}/IPython/html/notebookapp.py
${PYSITELIB}/IPython/html/notebookapp.pyc
${PYSITELIB}/IPython/html/notebookapp.pyo
${PYSITELIB}/IPython/html/services/__init__.py
${PYSITELIB}/IPython/html/services/__init__.pyc
${PYSITELIB}/IPython/html/services/__init__.pyo
${PYSITELIB}/IPython/html/services/clusters/__init__.py
${PYSITELIB}/IPython/html/services/clusters/__init__.pyc
${PYSITELIB}/IPython/html/services/clusters/__init__.pyo
${PYSITELIB}/IPython/html/services/clusters/clustermanager.py
${PYSITELIB}/IPython/html/services/clusters/clustermanager.pyc
${PYSITELIB}/IPython/html/services/clusters/clustermanager.pyo
${PYSITELIB}/IPython/html/services/clusters/handlers.py
${PYSITELIB}/IPython/html/services/clusters/handlers.pyc
${PYSITELIB}/IPython/html/services/clusters/handlers.pyo
${PYSITELIB}/IPython/html/services/kernels/__init__.py
${PYSITELIB}/IPython/html/services/kernels/__init__.pyc
${PYSITELIB}/IPython/html/services/kernels/__init__.pyo
${PYSITELIB}/IPython/html/services/kernels/handlers.py
${PYSITELIB}/IPython/html/services/kernels/handlers.pyc
${PYSITELIB}/IPython/html/services/kernels/handlers.pyo
${PYSITELIB}/IPython/html/services/kernels/kernelmanager.py
${PYSITELIB}/IPython/html/services/kernels/kernelmanager.pyc
${PYSITELIB}/IPython/html/services/kernels/kernelmanager.pyo
${PYSITELIB}/IPython/html/services/notebooks/__init__.py
${PYSITELIB}/IPython/html/services/notebooks/__init__.pyc
${PYSITELIB}/IPython/html/services/notebooks/__init__.pyo
${PYSITELIB}/IPython/html/services/notebooks/azurenbmanager.py
${PYSITELIB}/IPython/html/services/notebooks/azurenbmanager.pyc
${PYSITELIB}/IPython/html/services/notebooks/azurenbmanager.pyo
${PYSITELIB}/IPython/html/services/notebooks/filenbmanager.py
${PYSITELIB}/IPython/html/services/notebooks/filenbmanager.pyc
${PYSITELIB}/IPython/html/services/notebooks/filenbmanager.pyo
${PYSITELIB}/IPython/html/services/notebooks/handlers.py
${PYSITELIB}/IPython/html/services/notebooks/handlers.pyc
${PYSITELIB}/IPython/html/services/notebooks/handlers.pyo
${PYSITELIB}/IPython/html/services/notebooks/nbmanager.py
${PYSITELIB}/IPython/html/services/notebooks/nbmanager.pyc
${PYSITELIB}/IPython/html/services/notebooks/nbmanager.pyo
${PYSITELIB}/IPython/html/services/notebooks/tests/__init__.py
${PYSITELIB}/IPython/html/services/notebooks/tests/__init__.pyc
${PYSITELIB}/IPython/html/services/notebooks/tests/__init__.pyo
${PYSITELIB}/IPython/html/services/notebooks/tests/test_nbmanager.py
${PYSITELIB}/IPython/html/services/notebooks/tests/test_nbmanager.pyc
${PYSITELIB}/IPython/html/services/notebooks/tests/test_nbmanager.pyo
${PYSITELIB}/IPython/html/static/auth/css/override.css
${PYSITELIB}/IPython/html/static/auth/js/loginmain.js
${PYSITELIB}/IPython/html/static/auth/js/loginwidget.js
${PYSITELIB}/IPython/html/static/auth/js/logoutmain.js
${PYSITELIB}/IPython/html/static/auth/less/login.less
${PYSITELIB}/IPython/html/static/auth/less/logout.less
${PYSITELIB}/IPython/html/static/auth/less/style.less
${PYSITELIB}/IPython/html/static/base/images/favicon.ico
${PYSITELIB}/IPython/html/static/base/images/ipynblogo.png
${PYSITELIB}/IPython/html/static/base/images/ipynblogo.svg
${PYSITELIB}/IPython/html/static/base/js/dialog.js
${PYSITELIB}/IPython/html/static/base/js/events.js
${PYSITELIB}/IPython/html/static/base/js/namespace.js
${PYSITELIB}/IPython/html/static/base/js/page.js
${PYSITELIB}/IPython/html/static/base/js/pagemain.js
${PYSITELIB}/IPython/html/static/base/js/utils.js
${PYSITELIB}/IPython/html/static/base/less/flexbox.less
${PYSITELIB}/IPython/html/static/base/less/mixins.less
${PYSITELIB}/IPython/html/static/base/less/page.less
${PYSITELIB}/IPython/html/static/base/less/style.less
${PYSITELIB}/IPython/html/static/base/less/variables.less
${PYSITELIB}/IPython/html/static/components/.bowerrc
${PYSITELIB}/IPython/html/static/components/.gitignore
${PYSITELIB}/IPython/html/static/components/README.md
${PYSITELIB}/IPython/html/static/components/bootstrap/.travis.yml
${PYSITELIB}/IPython/html/static/components/bootstrap/CHANGELOG.md
${PYSITELIB}/IPython/html/static/components/bootstrap/CONTRIBUTING.md
${PYSITELIB}/IPython/html/static/components/bootstrap/LICENSE
${PYSITELIB}/IPython/html/static/components/bootstrap/Makefile
${PYSITELIB}/IPython/html/static/components/bootstrap/README.md
${PYSITELIB}/IPython/html/static/components/bootstrap/bootstrap/css/bootstrap-responsive.css
${PYSITELIB}/IPython/html/static/components/bootstrap/bootstrap/css/bootstrap-responsive.min.css
${PYSITELIB}/IPython/html/static/components/bootstrap/bootstrap/css/bootstrap.css
${PYSITELIB}/IPython/html/static/components/bootstrap/bootstrap/css/bootstrap.min.css
${PYSITELIB}/IPython/html/static/components/bootstrap/bootstrap/js/bootstrap.js
${PYSITELIB}/IPython/html/static/components/bootstrap/bootstrap/js/bootstrap.min.js
${PYSITELIB}/IPython/html/static/components/bootstrap/component.json
${PYSITELIB}/IPython/html/static/components/bootstrap/composer.json
${PYSITELIB}/IPython/html/static/components/bootstrap/img/glyphicons-halflings-white.png
${PYSITELIB}/IPython/html/static/components/bootstrap/img/glyphicons-halflings.png
${PYSITELIB}/IPython/html/static/components/bootstrap/js/.jshintrc
${PYSITELIB}/IPython/html/static/components/bootstrap/js/bootstrap-affix.js
${PYSITELIB}/IPython/html/static/components/bootstrap/js/bootstrap-alert.js
${PYSITELIB}/IPython/html/static/components/bootstrap/js/bootstrap-button.js
${PYSITELIB}/IPython/html/static/components/bootstrap/js/bootstrap-carousel.js
${PYSITELIB}/IPython/html/static/components/bootstrap/js/bootstrap-collapse.js
${PYSITELIB}/IPython/html/static/components/bootstrap/js/bootstrap-dropdown.js
${PYSITELIB}/IPython/html/static/components/bootstrap/js/bootstrap-modal.js
${PYSITELIB}/IPython/html/static/components/bootstrap/js/bootstrap-popover.js
${PYSITELIB}/IPython/html/static/components/bootstrap/js/bootstrap-scrollspy.js
${PYSITELIB}/IPython/html/static/components/bootstrap/js/bootstrap-tab.js
${PYSITELIB}/IPython/html/static/components/bootstrap/js/bootstrap-tooltip.js
${PYSITELIB}/IPython/html/static/components/bootstrap/js/bootstrap-transition.js
${PYSITELIB}/IPython/html/static/components/bootstrap/js/bootstrap-typeahead.js
${PYSITELIB}/IPython/html/static/components/bootstrap/less/accordion.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/alerts.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/bootstrap.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/breadcrumbs.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/button-groups.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/buttons.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/carousel.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/close.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/code.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/component-animations.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/dropdowns.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/forms.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/grid.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/hero-unit.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/labels-badges.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/layouts.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/media.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/mixins.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/modals.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/navbar.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/navs.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/pager.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/pagination.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/popovers.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/progress-bars.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/reset.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/responsive-1200px-min.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/responsive-767px-max.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/responsive-768px-979px.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/responsive-navbar.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/responsive-utilities.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/responsive.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/scaffolding.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/sprites.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/tables.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/thumbnails.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/tooltip.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/type.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/utilities.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/variables.less
${PYSITELIB}/IPython/html/static/components/bootstrap/less/wells.less
${PYSITELIB}/IPython/html/static/components/bootstrap/package.json
${PYSITELIB}/IPython/html/static/components/bower.json
${PYSITELIB}/IPython/html/static/components/codemirror/CONTRIBUTING.md
${PYSITELIB}/IPython/html/static/components/codemirror/LICENSE
${PYSITELIB}/IPython/html/static/components/codemirror/README.md
${PYSITELIB}/IPython/html/static/components/codemirror/addon/comment/comment.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/dialog/dialog.css
${PYSITELIB}/IPython/html/static/components/codemirror/addon/dialog/dialog.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/display/placeholder.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/edit/closebrackets.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/edit/closetag.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/edit/continuecomment.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/edit/continuelist.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/edit/matchbrackets.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/edit/trailingspace.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/fold/brace-fold.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/fold/foldcode.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/fold/indent-fold.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/fold/xml-fold.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/html-hint.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/javascript-hint.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/pig-hint.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/python-hint.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/show-hint.css
${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/show-hint.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/xml-hint.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/lint/coffeescript-lint.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/lint/javascript-lint.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/lint/json-lint.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/lint/lint.css
${PYSITELIB}/IPython/html/static/components/codemirror/addon/lint/lint.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/merge/dep/diff_match_patch.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/merge/merge.css
${PYSITELIB}/IPython/html/static/components/codemirror/addon/merge/merge.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/mode/loadmode.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/mode/multiplex.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/mode/multiplex_test.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/mode/overlay.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/runmode/colorize.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/runmode/runmode-standalone.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/runmode/runmode.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/runmode/runmode.node.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/search/match-highlighter.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/search/search.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/search/searchcursor.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/selection/active-line.js
${PYSITELIB}/IPython/html/static/components/codemirror/addon/selection/mark-selection.js
${PYSITELIB}/IPython/html/static/components/codemirror/bower.json
${PYSITELIB}/IPython/html/static/components/codemirror/keymap/emacs.js
${PYSITELIB}/IPython/html/static/components/codemirror/keymap/extra.js
${PYSITELIB}/IPython/html/static/components/codemirror/keymap/vim.js
${PYSITELIB}/IPython/html/static/components/codemirror/lib/codemirror.css
${PYSITELIB}/IPython/html/static/components/codemirror/lib/codemirror.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/apl/apl.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/asterisk/asterisk.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/clike/clike.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/clike/scala.html
${PYSITELIB}/IPython/html/static/components/codemirror/mode/clojure/clojure.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/cobol/cobol.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/coffeescript/LICENSE
${PYSITELIB}/IPython/html/static/components/codemirror/mode/coffeescript/coffeescript.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/commonlisp/commonlisp.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/css/css.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/css/scss.html
${PYSITELIB}/IPython/html/static/components/codemirror/mode/css/scss_test.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/css/test.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/d/d.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/diff/diff.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/ecl/ecl.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/erlang/erlang.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/gas/gas.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/gfm/gfm.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/gfm/test.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/go/go.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/groovy/groovy.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/haml/haml.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/haml/test.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/haskell/haskell.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/haxe/haxe.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/htmlembedded/htmlembedded.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/htmlmixed/htmlmixed.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/http/http.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/javascript/javascript.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/javascript/typescript.html
${PYSITELIB}/IPython/html/static/components/codemirror/mode/jinja2/jinja2.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/less/less.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/livescript/LICENSE
${PYSITELIB}/IPython/html/static/components/codemirror/mode/livescript/livescript.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/livescript/livescript.ls
${PYSITELIB}/IPython/html/static/components/codemirror/mode/lua/lua.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/markdown/markdown.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/markdown/test.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/meta.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/mirc/mirc.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/ntriples/ntriples.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/ocaml/ocaml.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/pascal/LICENSE
${PYSITELIB}/IPython/html/static/components/codemirror/mode/pascal/pascal.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/perl/LICENSE
${PYSITELIB}/IPython/html/static/components/codemirror/mode/perl/perl.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/php/php.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/pig/pig.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/properties/properties.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/python/LICENSE.txt
${PYSITELIB}/IPython/html/static/components/codemirror/mode/python/python.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/q/q.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/r/LICENSE
${PYSITELIB}/IPython/html/static/components/codemirror/mode/r/r.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/rpm/changes/changes.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/rpm/changes/index.html
${PYSITELIB}/IPython/html/static/components/codemirror/mode/rpm/spec/index.html
${PYSITELIB}/IPython/html/static/components/codemirror/mode/rpm/spec/spec.css
${PYSITELIB}/IPython/html/static/components/codemirror/mode/rpm/spec/spec.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/rst/LICENSE.txt
${PYSITELIB}/IPython/html/static/components/codemirror/mode/rst/rst.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/ruby/LICENSE
${PYSITELIB}/IPython/html/static/components/codemirror/mode/ruby/ruby.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/rust/rust.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/sass/sass.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/scheme/scheme.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/shell/shell.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/sieve/LICENSE
${PYSITELIB}/IPython/html/static/components/codemirror/mode/sieve/sieve.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/smalltalk/smalltalk.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/smarty/smarty.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/sparql/sparql.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/sql/sql.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/stex/stex.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/stex/test.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/tcl/tcl.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/tiddlywiki/tiddlywiki.css
${PYSITELIB}/IPython/html/static/components/codemirror/mode/tiddlywiki/tiddlywiki.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/tiki/tiki.css
${PYSITELIB}/IPython/html/static/components/codemirror/mode/tiki/tiki.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/turtle/turtle.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/vb/LICENSE.txt
${PYSITELIB}/IPython/html/static/components/codemirror/mode/vb/vb.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/vbscript/vbscript.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/velocity/velocity.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/verilog/verilog.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/xml/xml.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/xquery/LICENSE
${PYSITELIB}/IPython/html/static/components/codemirror/mode/xquery/test.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/xquery/xquery.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/yaml/yaml.js
${PYSITELIB}/IPython/html/static/components/codemirror/mode/z80/z80.js
${PYSITELIB}/IPython/html/static/components/codemirror/theme/ambiance-mobile.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/ambiance.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/blackboard.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/cobalt.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/eclipse.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/elegant.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/erlang-dark.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/lesser-dark.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/midnight.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/monokai.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/neat.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/night.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/rubyblue.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/solarized.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/twilight.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/vibrant-ink.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/xq-dark.css
${PYSITELIB}/IPython/html/static/components/codemirror/theme/xq-light.css
${PYSITELIB}/IPython/html/static/components/fabfile.py
${PYSITELIB}/IPython/html/static/components/fabfile.pyc
${PYSITELIB}/IPython/html/static/components/fabfile.pyo
${PYSITELIB}/IPython/html/static/components/font-awesome/README.md
${PYSITELIB}/IPython/html/static/components/font-awesome/_config.yml
${PYSITELIB}/IPython/html/static/components/font-awesome/bower.json
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/css/font-awesome-ie7.css
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/css/font-awesome-ie7.min.css
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/css/font-awesome.css
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/css/font-awesome.min.css
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/font/FontAwesome.otf
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.svg
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.ttf
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.woff
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/less/bootstrap.less
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/less/core.less
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/less/extras.less
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/less/font-awesome-ie7.less
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/less/font-awesome.less
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/less/icons.less
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/less/mixins.less
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/less/path.less
${PYSITELIB}/IPython/html/static/components/font-awesome/build/assets/font-awesome/less/variables.less
${PYSITELIB}/IPython/html/static/components/highlight.js/AUTHORS.en.txt
${PYSITELIB}/IPython/html/static/components/highlight.js/AUTHORS.ru.txt
${PYSITELIB}/IPython/html/static/components/highlight.js/LICENSE
${PYSITELIB}/IPython/html/static/components/highlight.js/README.md
${PYSITELIB}/IPython/html/static/components/highlight.js/README.ru.md
${PYSITELIB}/IPython/html/static/components/highlight.js/build/highlight.pack.js
${PYSITELIB}/IPython/html/static/components/highlight.js/classref.txt
${PYSITELIB}/IPython/html/static/components/highlight.js/src/export.html
${PYSITELIB}/IPython/html/static/components/highlight.js/src/highlight.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/1c.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/actionscript.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/apache.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/applescript.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/avrasm.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/axapta.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/bash.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/brainfuck.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/clojure.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/cmake.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/coffeescript.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/cpp.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/cs.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/css.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/d.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/delphi.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/diff.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/django.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/dos.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/erlang-repl.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/erlang.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/glsl.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/go.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/haskell.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/http.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/ini.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/java.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/javascript.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/json.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/lisp.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/lua.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/markdown.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/matlab.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/mel.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/nginx.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/objectivec.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/parser3.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/perl.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/php.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/profile.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/python.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/r.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/rib.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/rsl.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/ruby.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/rust.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/scala.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/smalltalk.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/sql.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/tex.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/vala.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/vbscript.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/vhdl.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/languages/xml.js
${PYSITELIB}/IPython/html/static/components/highlight.js/src/package.json
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/arta.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/ascetic.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/brown_paper.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/brown_papersq.png
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/dark.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/default.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/far.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/github.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/googlecode.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/idea.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/ir_black.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/magula.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/monokai.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/pojoaque.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/pojoaque.jpg
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/rainbow.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/school_book.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/school_book.png
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/solarized_dark.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/solarized_light.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/sunburst.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/tomorrow-night-blue.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/tomorrow-night-bright.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/tomorrow-night-eighties.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/tomorrow-night.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/tomorrow.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/vs.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/xcode.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/styles/zenburn.css
${PYSITELIB}/IPython/html/static/components/highlight.js/src/test.html
${PYSITELIB}/IPython/html/static/components/jquery-ui/AUTHORS.txt
${PYSITELIB}/IPython/html/static/components/jquery-ui/MANIFEST
${PYSITELIB}/IPython/html/static/components/jquery-ui/MIT-LICENSE.txt
${PYSITELIB}/IPython/html/static/components/jquery-ui/README.md
${PYSITELIB}/IPython/html/static/components/jquery-ui/bower.json
${PYSITELIB}/IPython/html/static/components/jquery-ui/composer.json
${PYSITELIB}/IPython/html/static/components/jquery-ui/package.json
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/animated-overlay.gif
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/jquery-ui.css
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/jquery-ui.min.css
${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/jquery.ui.theme.css
${PYSITELIB}/IPython/html/static/components/jquery-ui/ui/.jshintrc
${PYSITELIB}/IPython/html/static/components/jquery-ui/ui/i18n/jquery-ui-i18n.js
${PYSITELIB}/IPython/html/static/components/jquery-ui/ui/jquery-ui.js
${PYSITELIB}/IPython/html/static/components/jquery-ui/ui/minified/i18n/jquery-ui-i18n.min.js
${PYSITELIB}/IPython/html/static/components/jquery-ui/ui/minified/jquery-ui.min.js
${PYSITELIB}/IPython/html/static/components/jquery/README.md
${PYSITELIB}/IPython/html/static/components/jquery/bower.json
${PYSITELIB}/IPython/html/static/components/jquery/component.json
${PYSITELIB}/IPython/html/static/components/jquery/composer.json
${PYSITELIB}/IPython/html/static/components/jquery/jquery-migrate.js
${PYSITELIB}/IPython/html/static/components/jquery/jquery-migrate.min.js
${PYSITELIB}/IPython/html/static/components/jquery/jquery.js
${PYSITELIB}/IPython/html/static/components/jquery/jquery.min.js
${PYSITELIB}/IPython/html/static/components/jquery/package.json
${PYSITELIB}/IPython/html/static/components/less.js/.npmignore
${PYSITELIB}/IPython/html/static/components/less.js/CHANGELOG.md
${PYSITELIB}/IPython/html/static/components/less.js/CONTRIBUTING.md
${PYSITELIB}/IPython/html/static/components/less.js/LICENSE
${PYSITELIB}/IPython/html/static/components/less.js/Makefile
${PYSITELIB}/IPython/html/static/components/less.js/README.md
${PYSITELIB}/IPython/html/static/components/less.js/bin/lessc
${PYSITELIB}/IPython/html/static/components/less.js/bower.json
${PYSITELIB}/IPython/html/static/components/less.js/dist/less-1.3.3.js
${PYSITELIB}/IPython/html/static/components/less.js/dist/less-1.3.3.min.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/browser.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/colors.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/functions.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/index.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/lessc_helper.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/parser.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/rhino.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/alpha.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/anonymous.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/assignment.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/call.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/color.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/comment.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/condition.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/dimension.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/directive.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/element.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/expression.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/import.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/javascript.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/keyword.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/media.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/mixin.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/operation.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/paren.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/quoted.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/ratio.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/rule.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/ruleset.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/selector.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/unicode-descriptor.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/url.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/value.js
${PYSITELIB}/IPython/html/static/components/less.js/lib/less/tree/variable.js
${PYSITELIB}/IPython/html/static/components/less.js/package.json
${PYSITELIB}/IPython/html/static/components/marked/LICENSE
${PYSITELIB}/IPython/html/static/components/marked/Makefile
${PYSITELIB}/IPython/html/static/components/marked/README.md
${PYSITELIB}/IPython/html/static/components/marked/bin/marked
${PYSITELIB}/IPython/html/static/components/marked/bower.json
${PYSITELIB}/IPython/html/static/components/marked/index.js
${PYSITELIB}/IPython/html/static/components/marked/lib/marked.js
${PYSITELIB}/IPython/html/static/components/marked/package.json
${PYSITELIB}/IPython/html/static/components/nonbower.json
${PYSITELIB}/IPython/html/static/components/requirejs/LICENSE
${PYSITELIB}/IPython/html/static/components/requirejs/README.md
${PYSITELIB}/IPython/html/static/components/requirejs/bower.json
${PYSITELIB}/IPython/html/static/components/requirejs/index.html
${PYSITELIB}/IPython/html/static/components/requirejs/package.json
${PYSITELIB}/IPython/html/static/components/requirejs/require.js
${PYSITELIB}/IPython/html/static/components/requirejs/tasks.txt
${PYSITELIB}/IPython/html/static/components/requirejs/testBaseUrl.js
${PYSITELIB}/IPython/html/static/custom/custom.css
${PYSITELIB}/IPython/html/static/custom/custom.js
${PYSITELIB}/IPython/html/static/dateformat/date.format.js
${PYSITELIB}/IPython/html/static/notebook/css/override.css
${PYSITELIB}/IPython/html/static/notebook/js/cell.js
${PYSITELIB}/IPython/html/static/notebook/js/celltoolbar.js
${PYSITELIB}/IPython/html/static/notebook/js/celltoolbarpresets/default.js
${PYSITELIB}/IPython/html/static/notebook/js/celltoolbarpresets/example.js
${PYSITELIB}/IPython/html/static/notebook/js/celltoolbarpresets/slideshow.js
${PYSITELIB}/IPython/html/static/notebook/js/codecell.js
${PYSITELIB}/IPython/html/static/notebook/js/codemirror-ipython.js
${PYSITELIB}/IPython/html/static/notebook/js/completer.js
${PYSITELIB}/IPython/html/static/notebook/js/config.js
${PYSITELIB}/IPython/html/static/notebook/js/contexthint.js
${PYSITELIB}/IPython/html/static/notebook/js/layoutmanager.js
${PYSITELIB}/IPython/html/static/notebook/js/main.js
${PYSITELIB}/IPython/html/static/notebook/js/maintoolbar.js
${PYSITELIB}/IPython/html/static/notebook/js/mathjaxutils.js
${PYSITELIB}/IPython/html/static/notebook/js/menubar.js
${PYSITELIB}/IPython/html/static/notebook/js/notebook.js
${PYSITELIB}/IPython/html/static/notebook/js/notificationarea.js
${PYSITELIB}/IPython/html/static/notebook/js/notificationwidget.js
${PYSITELIB}/IPython/html/static/notebook/js/outputarea.js
${PYSITELIB}/IPython/html/static/notebook/js/pager.js
${PYSITELIB}/IPython/html/static/notebook/js/quickhelp.js
${PYSITELIB}/IPython/html/static/notebook/js/savewidget.js
${PYSITELIB}/IPython/html/static/notebook/js/textcell.js
${PYSITELIB}/IPython/html/static/notebook/js/toolbar.js
${PYSITELIB}/IPython/html/static/notebook/js/tooltip.js
${PYSITELIB}/IPython/html/static/notebook/less/ansicolors.less
${PYSITELIB}/IPython/html/static/notebook/less/cell.less
${PYSITELIB}/IPython/html/static/notebook/less/celltoolbar.less
${PYSITELIB}/IPython/html/static/notebook/less/codecell.less
${PYSITELIB}/IPython/html/static/notebook/less/codemirror.less
${PYSITELIB}/IPython/html/static/notebook/less/completer.less
${PYSITELIB}/IPython/html/static/notebook/less/highlight.less
${PYSITELIB}/IPython/html/static/notebook/less/menubar.less
${PYSITELIB}/IPython/html/static/notebook/less/notebook.less
${PYSITELIB}/IPython/html/static/notebook/less/notificationarea.less
${PYSITELIB}/IPython/html/static/notebook/less/notificationwidget.less
${PYSITELIB}/IPython/html/static/notebook/less/outputarea.less
${PYSITELIB}/IPython/html/static/notebook/less/pager.less
${PYSITELIB}/IPython/html/static/notebook/less/quickhelp.less
${PYSITELIB}/IPython/html/static/notebook/less/renderedhtml.less
${PYSITELIB}/IPython/html/static/notebook/less/savewidget.less
${PYSITELIB}/IPython/html/static/notebook/less/style.less
${PYSITELIB}/IPython/html/static/notebook/less/textcell.less
${PYSITELIB}/IPython/html/static/notebook/less/toolbar.less
${PYSITELIB}/IPython/html/static/notebook/less/tooltip.less
${PYSITELIB}/IPython/html/static/notebook/less/variables.less
${PYSITELIB}/IPython/html/static/services/kernels/js/kernel.js
${PYSITELIB}/IPython/html/static/style/ipython.less
${PYSITELIB}/IPython/html/static/style/ipython.min.css
${PYSITELIB}/IPython/html/static/style/style.less
${PYSITELIB}/IPython/html/static/style/style.min.css
${PYSITELIB}/IPython/html/static/tree/css/override.css
${PYSITELIB}/IPython/html/static/tree/js/clusterlist.js
${PYSITELIB}/IPython/html/static/tree/js/main.js
${PYSITELIB}/IPython/html/static/tree/js/notebooklist.js
${PYSITELIB}/IPython/html/static/tree/less/altuploadform.less
${PYSITELIB}/IPython/html/static/tree/less/style.less
${PYSITELIB}/IPython/html/static/tree/less/tree.less
${PYSITELIB}/IPython/html/templates/login.html
${PYSITELIB}/IPython/html/templates/logout.html
${PYSITELIB}/IPython/html/templates/notebook.html
${PYSITELIB}/IPython/html/templates/page.html
${PYSITELIB}/IPython/html/templates/tree.html
${PYSITELIB}/IPython/html/tests/__init__.py
${PYSITELIB}/IPython/html/tests/__init__.pyc
${PYSITELIB}/IPython/html/tests/__init__.pyo
${PYSITELIB}/IPython/html/tests/test_notebookapp.py
${PYSITELIB}/IPython/html/tests/test_notebookapp.pyc
${PYSITELIB}/IPython/html/tests/test_notebookapp.pyo
${PYSITELIB}/IPython/html/tree/__init__.py
${PYSITELIB}/IPython/html/tree/__init__.pyc
${PYSITELIB}/IPython/html/tree/__init__.pyo
${PYSITELIB}/IPython/html/tree/handlers.py
${PYSITELIB}/IPython/html/tree/handlers.pyc
${PYSITELIB}/IPython/html/tree/handlers.pyo
${PYSITELIB}/IPython/html/utils.py
${PYSITELIB}/IPython/html/utils.pyc
${PYSITELIB}/IPython/html/utils.pyo
${PYSITELIB}/IPython/kernel/__init__.py
${PYSITELIB}/IPython/kernel/__init__.pyc
${PYSITELIB}/IPython/kernel/__init__.pyo
${PYSITELIB}/IPython/kernel/blocking/__init__.py
${PYSITELIB}/IPython/kernel/blocking/__init__.pyc
${PYSITELIB}/IPython/kernel/blocking/__init__.pyo
${PYSITELIB}/IPython/kernel/blocking/channels.py
${PYSITELIB}/IPython/kernel/blocking/channels.pyc
${PYSITELIB}/IPython/kernel/blocking/channels.pyo
${PYSITELIB}/IPython/kernel/blocking/client.py
${PYSITELIB}/IPython/kernel/blocking/client.pyc
${PYSITELIB}/IPython/kernel/blocking/client.pyo
${PYSITELIB}/IPython/kernel/channels.py
${PYSITELIB}/IPython/kernel/channels.pyc
${PYSITELIB}/IPython/kernel/channels.pyo
${PYSITELIB}/IPython/kernel/channelsabc.py
${PYSITELIB}/IPython/kernel/channelsabc.pyc
${PYSITELIB}/IPython/kernel/channelsabc.pyo
${PYSITELIB}/IPython/kernel/client.py
${PYSITELIB}/IPython/kernel/client.pyc
${PYSITELIB}/IPython/kernel/client.pyo
${PYSITELIB}/IPython/kernel/clientabc.py
${PYSITELIB}/IPython/kernel/clientabc.pyc
${PYSITELIB}/IPython/kernel/clientabc.pyo
${PYSITELIB}/IPython/kernel/connect.py
${PYSITELIB}/IPython/kernel/connect.pyc
${PYSITELIB}/IPython/kernel/connect.pyo
${PYSITELIB}/IPython/kernel/inprocess/__init__.py
${PYSITELIB}/IPython/kernel/inprocess/__init__.pyc
${PYSITELIB}/IPython/kernel/inprocess/__init__.pyo
${PYSITELIB}/IPython/kernel/inprocess/blocking.py
${PYSITELIB}/IPython/kernel/inprocess/blocking.pyc
${PYSITELIB}/IPython/kernel/inprocess/blocking.pyo
${PYSITELIB}/IPython/kernel/inprocess/channels.py
${PYSITELIB}/IPython/kernel/inprocess/channels.pyc
${PYSITELIB}/IPython/kernel/inprocess/channels.pyo
${PYSITELIB}/IPython/kernel/inprocess/client.py
${PYSITELIB}/IPython/kernel/inprocess/client.pyc
${PYSITELIB}/IPython/kernel/inprocess/client.pyo
${PYSITELIB}/IPython/kernel/inprocess/ipkernel.py
${PYSITELIB}/IPython/kernel/inprocess/ipkernel.pyc
${PYSITELIB}/IPython/kernel/inprocess/ipkernel.pyo
${PYSITELIB}/IPython/kernel/inprocess/manager.py
${PYSITELIB}/IPython/kernel/inprocess/manager.pyc
${PYSITELIB}/IPython/kernel/inprocess/manager.pyo
${PYSITELIB}/IPython/kernel/inprocess/socket.py
${PYSITELIB}/IPython/kernel/inprocess/socket.pyc
${PYSITELIB}/IPython/kernel/inprocess/socket.pyo
${PYSITELIB}/IPython/kernel/inprocess/tests/__init__.py
${PYSITELIB}/IPython/kernel/inprocess/tests/__init__.pyc
${PYSITELIB}/IPython/kernel/inprocess/tests/__init__.pyo
${PYSITELIB}/IPython/kernel/inprocess/tests/test_kernel.py
${PYSITELIB}/IPython/kernel/inprocess/tests/test_kernel.pyc
${PYSITELIB}/IPython/kernel/inprocess/tests/test_kernel.pyo
${PYSITELIB}/IPython/kernel/inprocess/tests/test_kernelmanager.py
${PYSITELIB}/IPython/kernel/inprocess/tests/test_kernelmanager.pyc
${PYSITELIB}/IPython/kernel/inprocess/tests/test_kernelmanager.pyo
${PYSITELIB}/IPython/kernel/ioloop/__init__.py
${PYSITELIB}/IPython/kernel/ioloop/__init__.pyc
${PYSITELIB}/IPython/kernel/ioloop/__init__.pyo
${PYSITELIB}/IPython/kernel/ioloop/manager.py
${PYSITELIB}/IPython/kernel/ioloop/manager.pyc
${PYSITELIB}/IPython/kernel/ioloop/manager.pyo
${PYSITELIB}/IPython/kernel/ioloop/restarter.py
${PYSITELIB}/IPython/kernel/ioloop/restarter.pyc
${PYSITELIB}/IPython/kernel/ioloop/restarter.pyo
${PYSITELIB}/IPython/kernel/launcher.py
${PYSITELIB}/IPython/kernel/launcher.pyc
${PYSITELIB}/IPython/kernel/launcher.pyo
${PYSITELIB}/IPython/kernel/manager.py
${PYSITELIB}/IPython/kernel/manager.pyc
${PYSITELIB}/IPython/kernel/manager.pyo
${PYSITELIB}/IPython/kernel/managerabc.py
${PYSITELIB}/IPython/kernel/managerabc.pyc
${PYSITELIB}/IPython/kernel/managerabc.pyo
${PYSITELIB}/IPython/kernel/multikernelmanager.py
${PYSITELIB}/IPython/kernel/multikernelmanager.pyc
${PYSITELIB}/IPython/kernel/multikernelmanager.pyo
${PYSITELIB}/IPython/kernel/restarter.py
${PYSITELIB}/IPython/kernel/restarter.pyc
${PYSITELIB}/IPython/kernel/restarter.pyo
${PYSITELIB}/IPython/kernel/tests/__init__.py
${PYSITELIB}/IPython/kernel/tests/__init__.pyc
${PYSITELIB}/IPython/kernel/tests/__init__.pyo
${PYSITELIB}/IPython/kernel/tests/test_connect.py
${PYSITELIB}/IPython/kernel/tests/test_connect.pyc
${PYSITELIB}/IPython/kernel/tests/test_connect.pyo
${PYSITELIB}/IPython/kernel/tests/test_kernel.py
${PYSITELIB}/IPython/kernel/tests/test_kernel.pyc
${PYSITELIB}/IPython/kernel/tests/test_kernel.pyo
${PYSITELIB}/IPython/kernel/tests/test_kernelmanager.py
${PYSITELIB}/IPython/kernel/tests/test_kernelmanager.pyc
${PYSITELIB}/IPython/kernel/tests/test_kernelmanager.pyo
${PYSITELIB}/IPython/kernel/tests/test_launcher.py
${PYSITELIB}/IPython/kernel/tests/test_launcher.pyc
${PYSITELIB}/IPython/kernel/tests/test_launcher.pyo
${PYSITELIB}/IPython/kernel/tests/test_message_spec.py
${PYSITELIB}/IPython/kernel/tests/test_message_spec.pyc
${PYSITELIB}/IPython/kernel/tests/test_message_spec.pyo
${PYSITELIB}/IPython/kernel/tests/test_multikernelmanager.py
${PYSITELIB}/IPython/kernel/tests/test_multikernelmanager.pyc
${PYSITELIB}/IPython/kernel/tests/test_multikernelmanager.pyo
${PYSITELIB}/IPython/kernel/tests/test_public_api.py
${PYSITELIB}/IPython/kernel/tests/test_public_api.pyc
${PYSITELIB}/IPython/kernel/tests/test_public_api.pyo
${PYSITELIB}/IPython/kernel/zmq/__init__.py
${PYSITELIB}/IPython/kernel/zmq/__init__.pyc
${PYSITELIB}/IPython/kernel/zmq/__init__.pyo
${PYSITELIB}/IPython/kernel/zmq/datapub.py
${PYSITELIB}/IPython/kernel/zmq/datapub.pyc
${PYSITELIB}/IPython/kernel/zmq/datapub.pyo
${PYSITELIB}/IPython/kernel/zmq/displayhook.py
${PYSITELIB}/IPython/kernel/zmq/displayhook.pyc
${PYSITELIB}/IPython/kernel/zmq/displayhook.pyo
${PYSITELIB}/IPython/kernel/zmq/embed.py
${PYSITELIB}/IPython/kernel/zmq/embed.pyc
${PYSITELIB}/IPython/kernel/zmq/embed.pyo
${PYSITELIB}/IPython/kernel/zmq/eventloops.py
${PYSITELIB}/IPython/kernel/zmq/eventloops.pyc
${PYSITELIB}/IPython/kernel/zmq/eventloops.pyo
${PYSITELIB}/IPython/kernel/zmq/gui/__init__.py
${PYSITELIB}/IPython/kernel/zmq/gui/__init__.pyc
${PYSITELIB}/IPython/kernel/zmq/gui/__init__.pyo
${PYSITELIB}/IPython/kernel/zmq/gui/gtkembed.py
${PYSITELIB}/IPython/kernel/zmq/gui/gtkembed.pyc
${PYSITELIB}/IPython/kernel/zmq/gui/gtkembed.pyo
${PYSITELIB}/IPython/kernel/zmq/heartbeat.py
${PYSITELIB}/IPython/kernel/zmq/heartbeat.pyc
${PYSITELIB}/IPython/kernel/zmq/heartbeat.pyo
${PYSITELIB}/IPython/kernel/zmq/iostream.py
${PYSITELIB}/IPython/kernel/zmq/iostream.pyc
${PYSITELIB}/IPython/kernel/zmq/iostream.pyo
${PYSITELIB}/IPython/kernel/zmq/ipkernel.py
${PYSITELIB}/IPython/kernel/zmq/ipkernel.pyc
${PYSITELIB}/IPython/kernel/zmq/ipkernel.pyo
${PYSITELIB}/IPython/kernel/zmq/kernelapp.py
${PYSITELIB}/IPython/kernel/zmq/kernelapp.pyc
${PYSITELIB}/IPython/kernel/zmq/kernelapp.pyo
${PYSITELIB}/IPython/kernel/zmq/log.py
${PYSITELIB}/IPython/kernel/zmq/log.pyc
${PYSITELIB}/IPython/kernel/zmq/log.pyo
${PYSITELIB}/IPython/kernel/zmq/parentpoller.py
${PYSITELIB}/IPython/kernel/zmq/parentpoller.pyc
${PYSITELIB}/IPython/kernel/zmq/parentpoller.pyo
${PYSITELIB}/IPython/kernel/zmq/pylab/__init__.py
${PYSITELIB}/IPython/kernel/zmq/pylab/__init__.pyc
${PYSITELIB}/IPython/kernel/zmq/pylab/__init__.pyo
${PYSITELIB}/IPython/kernel/zmq/pylab/backend_inline.py
${PYSITELIB}/IPython/kernel/zmq/pylab/backend_inline.pyc
${PYSITELIB}/IPython/kernel/zmq/pylab/backend_inline.pyo
${PYSITELIB}/IPython/kernel/zmq/serialize.py
${PYSITELIB}/IPython/kernel/zmq/serialize.pyc
${PYSITELIB}/IPython/kernel/zmq/serialize.pyo
${PYSITELIB}/IPython/kernel/zmq/session.py
${PYSITELIB}/IPython/kernel/zmq/session.pyc
${PYSITELIB}/IPython/kernel/zmq/session.pyo
${PYSITELIB}/IPython/kernel/zmq/tests/__init__.py
${PYSITELIB}/IPython/kernel/zmq/tests/__init__.pyc
${PYSITELIB}/IPython/kernel/zmq/tests/__init__.pyo
${PYSITELIB}/IPython/kernel/zmq/tests/test_embed_kernel.py
${PYSITELIB}/IPython/kernel/zmq/tests/test_embed_kernel.pyc
${PYSITELIB}/IPython/kernel/zmq/tests/test_embed_kernel.pyo
${PYSITELIB}/IPython/kernel/zmq/tests/test_serialize.py
${PYSITELIB}/IPython/kernel/zmq/tests/test_serialize.pyc
${PYSITELIB}/IPython/kernel/zmq/tests/test_serialize.pyo
${PYSITELIB}/IPython/kernel/zmq/tests/test_session.py
${PYSITELIB}/IPython/kernel/zmq/tests/test_session.pyc
${PYSITELIB}/IPython/kernel/zmq/tests/test_session.pyo
${PYSITELIB}/IPython/kernel/zmq/tests/test_start_kernel.py
${PYSITELIB}/IPython/kernel/zmq/tests/test_start_kernel.pyc
${PYSITELIB}/IPython/kernel/zmq/tests/test_start_kernel.pyo
${PYSITELIB}/IPython/kernel/zmq/zmqshell.py
${PYSITELIB}/IPython/kernel/zmq/zmqshell.pyc
${PYSITELIB}/IPython/kernel/zmq/zmqshell.pyo
${PYSITELIB}/IPython/lib/__init__.py
${PYSITELIB}/IPython/lib/__init__.pyc
${PYSITELIB}/IPython/lib/__init__.pyo
${PYSITELIB}/IPython/lib/backgroundjobs.py
${PYSITELIB}/IPython/lib/backgroundjobs.pyc
${PYSITELIB}/IPython/lib/backgroundjobs.pyo
${PYSITELIB}/IPython/lib/clipboard.py
${PYSITELIB}/IPython/lib/clipboard.pyc
${PYSITELIB}/IPython/lib/clipboard.pyo
${PYSITELIB}/IPython/lib/deepreload.py
${PYSITELIB}/IPython/lib/deepreload.pyc
${PYSITELIB}/IPython/lib/deepreload.pyo
${PYSITELIB}/IPython/lib/demo.py
${PYSITELIB}/IPython/lib/demo.pyc
${PYSITELIB}/IPython/lib/demo.pyo
${PYSITELIB}/IPython/lib/display.py
${PYSITELIB}/IPython/lib/display.pyc
${PYSITELIB}/IPython/lib/display.pyo
${PYSITELIB}/IPython/lib/editorhooks.py
${PYSITELIB}/IPython/lib/editorhooks.pyc
${PYSITELIB}/IPython/lib/editorhooks.pyo
${PYSITELIB}/IPython/lib/guisupport.py
${PYSITELIB}/IPython/lib/guisupport.pyc
${PYSITELIB}/IPython/lib/guisupport.pyo
${PYSITELIB}/IPython/lib/inputhook.py
${PYSITELIB}/IPython/lib/inputhook.pyc
${PYSITELIB}/IPython/lib/inputhook.pyo
${PYSITELIB}/IPython/lib/inputhookglut.py
${PYSITELIB}/IPython/lib/inputhookglut.pyc
${PYSITELIB}/IPython/lib/inputhookglut.pyo
${PYSITELIB}/IPython/lib/inputhookgtk.py
${PYSITELIB}/IPython/lib/inputhookgtk.pyc
${PYSITELIB}/IPython/lib/inputhookgtk.pyo
${PYSITELIB}/IPython/lib/inputhookgtk3.py
${PYSITELIB}/IPython/lib/inputhookgtk3.pyc
${PYSITELIB}/IPython/lib/inputhookgtk3.pyo
${PYSITELIB}/IPython/lib/inputhookpyglet.py
${PYSITELIB}/IPython/lib/inputhookpyglet.pyc
${PYSITELIB}/IPython/lib/inputhookpyglet.pyo
${PYSITELIB}/IPython/lib/inputhookqt4.py
${PYSITELIB}/IPython/lib/inputhookqt4.pyc
${PYSITELIB}/IPython/lib/inputhookqt4.pyo
${PYSITELIB}/IPython/lib/inputhookwx.py
${PYSITELIB}/IPython/lib/inputhookwx.pyc
${PYSITELIB}/IPython/lib/inputhookwx.pyo
${PYSITELIB}/IPython/lib/irunner.py
${PYSITELIB}/IPython/lib/irunner.pyc
${PYSITELIB}/IPython/lib/irunner.pyo
${PYSITELIB}/IPython/lib/kernel.py
${PYSITELIB}/IPython/lib/kernel.pyc
${PYSITELIB}/IPython/lib/kernel.pyo
${PYSITELIB}/IPython/lib/latextools.py
${PYSITELIB}/IPython/lib/latextools.pyc
${PYSITELIB}/IPython/lib/latextools.pyo
${PYSITELIB}/IPython/lib/pretty.py
${PYSITELIB}/IPython/lib/pretty.pyc
${PYSITELIB}/IPython/lib/pretty.pyo
${PYSITELIB}/IPython/lib/security.py
${PYSITELIB}/IPython/lib/security.pyc
${PYSITELIB}/IPython/lib/security.pyo
${PYSITELIB}/IPython/lib/tests/__init__.py
${PYSITELIB}/IPython/lib/tests/__init__.pyc
${PYSITELIB}/IPython/lib/tests/__init__.pyo
${PYSITELIB}/IPython/lib/tests/test_backgroundjobs.py
${PYSITELIB}/IPython/lib/tests/test_backgroundjobs.pyc
${PYSITELIB}/IPython/lib/tests/test_backgroundjobs.pyo
${PYSITELIB}/IPython/lib/tests/test_deepreload.py
${PYSITELIB}/IPython/lib/tests/test_deepreload.pyc
${PYSITELIB}/IPython/lib/tests/test_deepreload.pyo
${PYSITELIB}/IPython/lib/tests/test_display.py
${PYSITELIB}/IPython/lib/tests/test_display.pyc
${PYSITELIB}/IPython/lib/tests/test_display.pyo
${PYSITELIB}/IPython/lib/tests/test_imports.py
${PYSITELIB}/IPython/lib/tests/test_imports.pyc
${PYSITELIB}/IPython/lib/tests/test_imports.pyo
${PYSITELIB}/IPython/lib/tests/test_irunner.py
${PYSITELIB}/IPython/lib/tests/test_irunner.pyc
${PYSITELIB}/IPython/lib/tests/test_irunner.pyo
${PYSITELIB}/IPython/lib/tests/test_irunner_pylab_magic.py
${PYSITELIB}/IPython/lib/tests/test_irunner_pylab_magic.pyc
${PYSITELIB}/IPython/lib/tests/test_irunner_pylab_magic.pyo
${PYSITELIB}/IPython/lib/tests/test_latextools.py
${PYSITELIB}/IPython/lib/tests/test_latextools.pyc
${PYSITELIB}/IPython/lib/tests/test_latextools.pyo
${PYSITELIB}/IPython/lib/tests/test_pretty.py
${PYSITELIB}/IPython/lib/tests/test_pretty.pyc
${PYSITELIB}/IPython/lib/tests/test_pretty.pyo
${PYSITELIB}/IPython/lib/tests/test_security.py
${PYSITELIB}/IPython/lib/tests/test_security.pyc
${PYSITELIB}/IPython/lib/tests/test_security.pyo
${PYSITELIB}/IPython/nbconvert/__init__.py
${PYSITELIB}/IPython/nbconvert/__init__.pyc
${PYSITELIB}/IPython/nbconvert/__init__.pyo
${PYSITELIB}/IPython/nbconvert/exporters/__init__.py
${PYSITELIB}/IPython/nbconvert/exporters/__init__.pyc
${PYSITELIB}/IPython/nbconvert/exporters/__init__.pyo
${PYSITELIB}/IPython/nbconvert/exporters/export.py
${PYSITELIB}/IPython/nbconvert/exporters/export.pyc
${PYSITELIB}/IPython/nbconvert/exporters/export.pyo
${PYSITELIB}/IPython/nbconvert/exporters/exporter.py
${PYSITELIB}/IPython/nbconvert/exporters/exporter.pyc
${PYSITELIB}/IPython/nbconvert/exporters/exporter.pyo
${PYSITELIB}/IPython/nbconvert/exporters/html.py
${PYSITELIB}/IPython/nbconvert/exporters/html.pyc
${PYSITELIB}/IPython/nbconvert/exporters/html.pyo
${PYSITELIB}/IPython/nbconvert/exporters/latex.py
${PYSITELIB}/IPython/nbconvert/exporters/latex.pyc
${PYSITELIB}/IPython/nbconvert/exporters/latex.pyo
${PYSITELIB}/IPython/nbconvert/exporters/markdown.py
${PYSITELIB}/IPython/nbconvert/exporters/markdown.pyc
${PYSITELIB}/IPython/nbconvert/exporters/markdown.pyo
${PYSITELIB}/IPython/nbconvert/exporters/python.py
${PYSITELIB}/IPython/nbconvert/exporters/python.pyc
${PYSITELIB}/IPython/nbconvert/exporters/python.pyo
${PYSITELIB}/IPython/nbconvert/exporters/rst.py
${PYSITELIB}/IPython/nbconvert/exporters/rst.pyc
${PYSITELIB}/IPython/nbconvert/exporters/rst.pyo
${PYSITELIB}/IPython/nbconvert/exporters/slides.py
${PYSITELIB}/IPython/nbconvert/exporters/slides.pyc
${PYSITELIB}/IPython/nbconvert/exporters/slides.pyo
${PYSITELIB}/IPython/nbconvert/exporters/tests/__init__.py
${PYSITELIB}/IPython/nbconvert/exporters/tests/__init__.pyc
${PYSITELIB}/IPython/nbconvert/exporters/tests/__init__.pyo
${PYSITELIB}/IPython/nbconvert/exporters/tests/base.py
${PYSITELIB}/IPython/nbconvert/exporters/tests/base.pyc
${PYSITELIB}/IPython/nbconvert/exporters/tests/base.pyo
${PYSITELIB}/IPython/nbconvert/exporters/tests/cheese.py
${PYSITELIB}/IPython/nbconvert/exporters/tests/cheese.pyc
${PYSITELIB}/IPython/nbconvert/exporters/tests/cheese.pyo
${PYSITELIB}/IPython/nbconvert/exporters/tests/files/notebook2.ipynb
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_export.py
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_export.pyc
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_export.pyo
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_exporter.py
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_exporter.pyc
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_exporter.pyo
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_html.py
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_html.pyc
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_html.pyo
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_latex.py
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_latex.pyc
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_latex.pyo
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_markdown.py
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_markdown.pyc
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_markdown.pyo
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_python.py
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_python.pyc
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_python.pyo
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_rst.py
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_rst.pyc
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_rst.pyo
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_slides.py
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_slides.pyc
${PYSITELIB}/IPython/nbconvert/exporters/tests/test_slides.pyo
${PYSITELIB}/IPython/nbconvert/filters/__init__.py
${PYSITELIB}/IPython/nbconvert/filters/__init__.pyc
${PYSITELIB}/IPython/nbconvert/filters/__init__.pyo
${PYSITELIB}/IPython/nbconvert/filters/ansi.py
${PYSITELIB}/IPython/nbconvert/filters/ansi.pyc
${PYSITELIB}/IPython/nbconvert/filters/ansi.pyo
${PYSITELIB}/IPython/nbconvert/filters/datatypefilter.py
${PYSITELIB}/IPython/nbconvert/filters/datatypefilter.pyc
${PYSITELIB}/IPython/nbconvert/filters/datatypefilter.pyo
${PYSITELIB}/IPython/nbconvert/filters/highlight.py
${PYSITELIB}/IPython/nbconvert/filters/highlight.pyc
${PYSITELIB}/IPython/nbconvert/filters/highlight.pyo
${PYSITELIB}/IPython/nbconvert/filters/latex.py
${PYSITELIB}/IPython/nbconvert/filters/latex.pyc
${PYSITELIB}/IPython/nbconvert/filters/latex.pyo
${PYSITELIB}/IPython/nbconvert/filters/markdown.py
${PYSITELIB}/IPython/nbconvert/filters/markdown.pyc
${PYSITELIB}/IPython/nbconvert/filters/markdown.pyo
${PYSITELIB}/IPython/nbconvert/filters/strings.py
${PYSITELIB}/IPython/nbconvert/filters/strings.pyc
${PYSITELIB}/IPython/nbconvert/filters/strings.pyo
${PYSITELIB}/IPython/nbconvert/filters/tests/__init__.py
${PYSITELIB}/IPython/nbconvert/filters/tests/__init__.pyc
${PYSITELIB}/IPython/nbconvert/filters/tests/__init__.pyo
${PYSITELIB}/IPython/nbconvert/filters/tests/test_ansi.py
${PYSITELIB}/IPython/nbconvert/filters/tests/test_ansi.pyc
${PYSITELIB}/IPython/nbconvert/filters/tests/test_ansi.pyo
${PYSITELIB}/IPython/nbconvert/filters/tests/test_datatypefilter.py
${PYSITELIB}/IPython/nbconvert/filters/tests/test_datatypefilter.pyc
${PYSITELIB}/IPython/nbconvert/filters/tests/test_datatypefilter.pyo
${PYSITELIB}/IPython/nbconvert/filters/tests/test_highlight.py
${PYSITELIB}/IPython/nbconvert/filters/tests/test_highlight.pyc
${PYSITELIB}/IPython/nbconvert/filters/tests/test_highlight.pyo
${PYSITELIB}/IPython/nbconvert/filters/tests/test_latex.py
${PYSITELIB}/IPython/nbconvert/filters/tests/test_latex.pyc
${PYSITELIB}/IPython/nbconvert/filters/tests/test_latex.pyo
${PYSITELIB}/IPython/nbconvert/filters/tests/test_markdown.py
${PYSITELIB}/IPython/nbconvert/filters/tests/test_markdown.pyc
${PYSITELIB}/IPython/nbconvert/filters/tests/test_markdown.pyo
${PYSITELIB}/IPython/nbconvert/filters/tests/test_strings.py
${PYSITELIB}/IPython/nbconvert/filters/tests/test_strings.pyc
${PYSITELIB}/IPython/nbconvert/filters/tests/test_strings.pyo
${PYSITELIB}/IPython/nbconvert/nbconvertapp.py
${PYSITELIB}/IPython/nbconvert/nbconvertapp.pyc
${PYSITELIB}/IPython/nbconvert/nbconvertapp.pyo
${PYSITELIB}/IPython/nbconvert/post_processors/__init__.py
${PYSITELIB}/IPython/nbconvert/post_processors/__init__.pyc
${PYSITELIB}/IPython/nbconvert/post_processors/__init__.pyo
${PYSITELIB}/IPython/nbconvert/post_processors/base.py
${PYSITELIB}/IPython/nbconvert/post_processors/base.pyc
${PYSITELIB}/IPython/nbconvert/post_processors/base.pyo
${PYSITELIB}/IPython/nbconvert/post_processors/pdf.py
${PYSITELIB}/IPython/nbconvert/post_processors/pdf.pyc
${PYSITELIB}/IPython/nbconvert/post_processors/pdf.pyo
${PYSITELIB}/IPython/nbconvert/post_processors/serve.py
${PYSITELIB}/IPython/nbconvert/post_processors/serve.pyc
${PYSITELIB}/IPython/nbconvert/post_processors/serve.pyo
${PYSITELIB}/IPython/nbconvert/templates/html_basic.tpl
${PYSITELIB}/IPython/nbconvert/templates/html_full.tpl
${PYSITELIB}/IPython/nbconvert/templates/latex/latex_article.tplx
${PYSITELIB}/IPython/nbconvert/templates/latex/latex_basic.tplx
${PYSITELIB}/IPython/nbconvert/templates/latex/latex_book.tplx
${PYSITELIB}/IPython/nbconvert/templates/latex/skeleton/display_priority.tplx
${PYSITELIB}/IPython/nbconvert/templates/latex/skeleton/null.tplx
${PYSITELIB}/IPython/nbconvert/templates/latex/sphinx.tplx
${PYSITELIB}/IPython/nbconvert/templates/markdown.tpl
${PYSITELIB}/IPython/nbconvert/templates/python.tpl
${PYSITELIB}/IPython/nbconvert/templates/reveal_internals/align_reveal_cells.tpl
${PYSITELIB}/IPython/nbconvert/templates/reveal_internals/reveal_cells.tpl
${PYSITELIB}/IPython/nbconvert/templates/reveal_internals/slides.tpl
${PYSITELIB}/IPython/nbconvert/templates/reveal_internals/subslides.tpl
${PYSITELIB}/IPython/nbconvert/templates/rst.tpl
${PYSITELIB}/IPython/nbconvert/templates/skeleton/Makefile
${PYSITELIB}/IPython/nbconvert/templates/skeleton/README.md
${PYSITELIB}/IPython/nbconvert/templates/skeleton/display_priority.tpl
${PYSITELIB}/IPython/nbconvert/templates/skeleton/null.tpl
${PYSITELIB}/IPython/nbconvert/templates/slides_reveal.tpl
${PYSITELIB}/IPython/nbconvert/tests/__init__.py
${PYSITELIB}/IPython/nbconvert/tests/__init__.pyc
${PYSITELIB}/IPython/nbconvert/tests/__init__.pyo
${PYSITELIB}/IPython/nbconvert/tests/base.py
${PYSITELIB}/IPython/nbconvert/tests/base.pyc
${PYSITELIB}/IPython/nbconvert/tests/base.pyo
${PYSITELIB}/IPython/nbconvert/tests/files/ipython_nbconvert_config.py
${PYSITELIB}/IPython/nbconvert/tests/files/ipython_nbconvert_config.pyc
${PYSITELIB}/IPython/nbconvert/tests/files/ipython_nbconvert_config.pyo
${PYSITELIB}/IPython/nbconvert/tests/files/notebook1.ipynb
${PYSITELIB}/IPython/nbconvert/tests/files/notebook2.ipynb
${PYSITELIB}/IPython/nbconvert/tests/files/override.py
${PYSITELIB}/IPython/nbconvert/tests/files/override.pyc
${PYSITELIB}/IPython/nbconvert/tests/files/override.pyo
${PYSITELIB}/IPython/nbconvert/tests/test_nbconvertapp.py
${PYSITELIB}/IPython/nbconvert/tests/test_nbconvertapp.pyc
${PYSITELIB}/IPython/nbconvert/tests/test_nbconvertapp.pyo
${PYSITELIB}/IPython/nbconvert/transformers/__init__.py
${PYSITELIB}/IPython/nbconvert/transformers/__init__.pyc
${PYSITELIB}/IPython/nbconvert/transformers/__init__.pyo
${PYSITELIB}/IPython/nbconvert/transformers/base.py
${PYSITELIB}/IPython/nbconvert/transformers/base.pyc
${PYSITELIB}/IPython/nbconvert/transformers/base.pyo
${PYSITELIB}/IPython/nbconvert/transformers/coalescestreams.py
${PYSITELIB}/IPython/nbconvert/transformers/coalescestreams.pyc
${PYSITELIB}/IPython/nbconvert/transformers/coalescestreams.pyo
${PYSITELIB}/IPython/nbconvert/transformers/convertfigures.py
${PYSITELIB}/IPython/nbconvert/transformers/convertfigures.pyc
${PYSITELIB}/IPython/nbconvert/transformers/convertfigures.pyo
${PYSITELIB}/IPython/nbconvert/transformers/csshtmlheader.py
${PYSITELIB}/IPython/nbconvert/transformers/csshtmlheader.pyc
${PYSITELIB}/IPython/nbconvert/transformers/csshtmlheader.pyo
${PYSITELIB}/IPython/nbconvert/transformers/extractoutput.py
${PYSITELIB}/IPython/nbconvert/transformers/extractoutput.pyc
${PYSITELIB}/IPython/nbconvert/transformers/extractoutput.pyo
${PYSITELIB}/IPython/nbconvert/transformers/latex.py
${PYSITELIB}/IPython/nbconvert/transformers/latex.pyc
${PYSITELIB}/IPython/nbconvert/transformers/latex.pyo
${PYSITELIB}/IPython/nbconvert/transformers/revealhelp.py
${PYSITELIB}/IPython/nbconvert/transformers/revealhelp.pyc
${PYSITELIB}/IPython/nbconvert/transformers/revealhelp.pyo
${PYSITELIB}/IPython/nbconvert/transformers/sphinx.py
${PYSITELIB}/IPython/nbconvert/transformers/sphinx.pyc
${PYSITELIB}/IPython/nbconvert/transformers/sphinx.pyo
${PYSITELIB}/IPython/nbconvert/transformers/svg2pdf.py
${PYSITELIB}/IPython/nbconvert/transformers/svg2pdf.pyc
${PYSITELIB}/IPython/nbconvert/transformers/svg2pdf.pyo
${PYSITELIB}/IPython/nbconvert/utils/__init__.py
${PYSITELIB}/IPython/nbconvert/utils/__init__.pyc
${PYSITELIB}/IPython/nbconvert/utils/__init__.pyo
${PYSITELIB}/IPython/nbconvert/utils/base.py
${PYSITELIB}/IPython/nbconvert/utils/base.pyc
${PYSITELIB}/IPython/nbconvert/utils/base.pyo
${PYSITELIB}/IPython/nbconvert/utils/console.py
${PYSITELIB}/IPython/nbconvert/utils/console.pyc
${PYSITELIB}/IPython/nbconvert/utils/console.pyo
${PYSITELIB}/IPython/nbconvert/utils/exceptions.py
${PYSITELIB}/IPython/nbconvert/utils/exceptions.pyc
${PYSITELIB}/IPython/nbconvert/utils/exceptions.pyo
${PYSITELIB}/IPython/nbconvert/utils/lexers.py
${PYSITELIB}/IPython/nbconvert/utils/lexers.pyc
${PYSITELIB}/IPython/nbconvert/utils/lexers.pyo
${PYSITELIB}/IPython/nbconvert/utils/pandoc.py
${PYSITELIB}/IPython/nbconvert/utils/pandoc.pyc
${PYSITELIB}/IPython/nbconvert/utils/pandoc.pyo
${PYSITELIB}/IPython/nbconvert/writers/__init__.py
${PYSITELIB}/IPython/nbconvert/writers/__init__.pyc
${PYSITELIB}/IPython/nbconvert/writers/__init__.pyo
${PYSITELIB}/IPython/nbconvert/writers/base.py
${PYSITELIB}/IPython/nbconvert/writers/base.pyc
${PYSITELIB}/IPython/nbconvert/writers/base.pyo
${PYSITELIB}/IPython/nbconvert/writers/debug.py
${PYSITELIB}/IPython/nbconvert/writers/debug.pyc
${PYSITELIB}/IPython/nbconvert/writers/debug.pyo
${PYSITELIB}/IPython/nbconvert/writers/files.py
${PYSITELIB}/IPython/nbconvert/writers/files.pyc
${PYSITELIB}/IPython/nbconvert/writers/files.pyo
${PYSITELIB}/IPython/nbconvert/writers/stdout.py
${PYSITELIB}/IPython/nbconvert/writers/stdout.pyc
${PYSITELIB}/IPython/nbconvert/writers/stdout.pyo
${PYSITELIB}/IPython/nbformat/__init__.py
${PYSITELIB}/IPython/nbformat/__init__.pyc
${PYSITELIB}/IPython/nbformat/__init__.pyo
${PYSITELIB}/IPython/nbformat/current.py
${PYSITELIB}/IPython/nbformat/current.pyc
${PYSITELIB}/IPython/nbformat/current.pyo
${PYSITELIB}/IPython/nbformat/tests/__init__.py
${PYSITELIB}/IPython/nbformat/tests/__init__.pyc
${PYSITELIB}/IPython/nbformat/tests/__init__.pyo
${PYSITELIB}/IPython/nbformat/v1/__init__.py
${PYSITELIB}/IPython/nbformat/v1/__init__.pyc
${PYSITELIB}/IPython/nbformat/v1/__init__.pyo
${PYSITELIB}/IPython/nbformat/v1/convert.py
${PYSITELIB}/IPython/nbformat/v1/convert.pyc
${PYSITELIB}/IPython/nbformat/v1/convert.pyo
${PYSITELIB}/IPython/nbformat/v1/nbbase.py
${PYSITELIB}/IPython/nbformat/v1/nbbase.pyc
${PYSITELIB}/IPython/nbformat/v1/nbbase.pyo
${PYSITELIB}/IPython/nbformat/v1/nbjson.py
${PYSITELIB}/IPython/nbformat/v1/nbjson.pyc
${PYSITELIB}/IPython/nbformat/v1/nbjson.pyo
${PYSITELIB}/IPython/nbformat/v1/rwbase.py
${PYSITELIB}/IPython/nbformat/v1/rwbase.pyc
${PYSITELIB}/IPython/nbformat/v1/rwbase.pyo
${PYSITELIB}/IPython/nbformat/v1/tests/__init__.py
${PYSITELIB}/IPython/nbformat/v1/tests/__init__.pyc
${PYSITELIB}/IPython/nbformat/v1/tests/__init__.pyo
${PYSITELIB}/IPython/nbformat/v1/tests/nbexamples.py
${PYSITELIB}/IPython/nbformat/v1/tests/nbexamples.pyc
${PYSITELIB}/IPython/nbformat/v1/tests/nbexamples.pyo
${PYSITELIB}/IPython/nbformat/v1/tests/test_json.py
${PYSITELIB}/IPython/nbformat/v1/tests/test_json.pyc
${PYSITELIB}/IPython/nbformat/v1/tests/test_json.pyo
${PYSITELIB}/IPython/nbformat/v1/tests/test_nbbase.py
${PYSITELIB}/IPython/nbformat/v1/tests/test_nbbase.pyc
${PYSITELIB}/IPython/nbformat/v1/tests/test_nbbase.pyo
${PYSITELIB}/IPython/nbformat/v2/__init__.py
${PYSITELIB}/IPython/nbformat/v2/__init__.pyc
${PYSITELIB}/IPython/nbformat/v2/__init__.pyo
${PYSITELIB}/IPython/nbformat/v2/convert.py
${PYSITELIB}/IPython/nbformat/v2/convert.pyc
${PYSITELIB}/IPython/nbformat/v2/convert.pyo
${PYSITELIB}/IPython/nbformat/v2/nbbase.py
${PYSITELIB}/IPython/nbformat/v2/nbbase.pyc
${PYSITELIB}/IPython/nbformat/v2/nbbase.pyo
${PYSITELIB}/IPython/nbformat/v2/nbjson.py
${PYSITELIB}/IPython/nbformat/v2/nbjson.pyc
${PYSITELIB}/IPython/nbformat/v2/nbjson.pyo
${PYSITELIB}/IPython/nbformat/v2/nbpy.py
${PYSITELIB}/IPython/nbformat/v2/nbpy.pyc
${PYSITELIB}/IPython/nbformat/v2/nbpy.pyo
${PYSITELIB}/IPython/nbformat/v2/nbxml.py
${PYSITELIB}/IPython/nbformat/v2/nbxml.pyc
${PYSITELIB}/IPython/nbformat/v2/nbxml.pyo
${PYSITELIB}/IPython/nbformat/v2/rwbase.py
${PYSITELIB}/IPython/nbformat/v2/rwbase.pyc
${PYSITELIB}/IPython/nbformat/v2/rwbase.pyo
${PYSITELIB}/IPython/nbformat/v2/tests/__init__.py
${PYSITELIB}/IPython/nbformat/v2/tests/__init__.pyc
${PYSITELIB}/IPython/nbformat/v2/tests/__init__.pyo
${PYSITELIB}/IPython/nbformat/v2/tests/nbexamples.py
${PYSITELIB}/IPython/nbformat/v2/tests/nbexamples.pyc
${PYSITELIB}/IPython/nbformat/v2/tests/nbexamples.pyo
${PYSITELIB}/IPython/nbformat/v2/tests/test_json.py
${PYSITELIB}/IPython/nbformat/v2/tests/test_json.pyc
${PYSITELIB}/IPython/nbformat/v2/tests/test_json.pyo
${PYSITELIB}/IPython/nbformat/v2/tests/test_nbbase.py
${PYSITELIB}/IPython/nbformat/v2/tests/test_nbbase.pyc
${PYSITELIB}/IPython/nbformat/v2/tests/test_nbbase.pyo
${PYSITELIB}/IPython/nbformat/v2/tests/test_nbpy.py
${PYSITELIB}/IPython/nbformat/v2/tests/test_nbpy.pyc
${PYSITELIB}/IPython/nbformat/v2/tests/test_nbpy.pyo
${PYSITELIB}/IPython/nbformat/v3/__init__.py
${PYSITELIB}/IPython/nbformat/v3/__init__.pyc
${PYSITELIB}/IPython/nbformat/v3/__init__.pyo
${PYSITELIB}/IPython/nbformat/v3/convert.py
${PYSITELIB}/IPython/nbformat/v3/convert.pyc
${PYSITELIB}/IPython/nbformat/v3/convert.pyo
${PYSITELIB}/IPython/nbformat/v3/nbbase.py
${PYSITELIB}/IPython/nbformat/v3/nbbase.pyc
${PYSITELIB}/IPython/nbformat/v3/nbbase.pyo
${PYSITELIB}/IPython/nbformat/v3/nbjson.py
${PYSITELIB}/IPython/nbformat/v3/nbjson.pyc
${PYSITELIB}/IPython/nbformat/v3/nbjson.pyo
${PYSITELIB}/IPython/nbformat/v3/nbpy.py
${PYSITELIB}/IPython/nbformat/v3/nbpy.pyc
${PYSITELIB}/IPython/nbformat/v3/nbpy.pyo
${PYSITELIB}/IPython/nbformat/v3/rwbase.py
${PYSITELIB}/IPython/nbformat/v3/rwbase.pyc
${PYSITELIB}/IPython/nbformat/v3/rwbase.pyo
${PYSITELIB}/IPython/nbformat/v3/tests/__init__.py
${PYSITELIB}/IPython/nbformat/v3/tests/__init__.pyc
${PYSITELIB}/IPython/nbformat/v3/tests/__init__.pyo
${PYSITELIB}/IPython/nbformat/v3/tests/formattest.py
${PYSITELIB}/IPython/nbformat/v3/tests/formattest.pyc
${PYSITELIB}/IPython/nbformat/v3/tests/formattest.pyo
${PYSITELIB}/IPython/nbformat/v3/tests/nbexamples.py
${PYSITELIB}/IPython/nbformat/v3/tests/nbexamples.pyc
${PYSITELIB}/IPython/nbformat/v3/tests/nbexamples.pyo
${PYSITELIB}/IPython/nbformat/v3/tests/test_json.py
${PYSITELIB}/IPython/nbformat/v3/tests/test_json.pyc
${PYSITELIB}/IPython/nbformat/v3/tests/test_json.pyo
${PYSITELIB}/IPython/nbformat/v3/tests/test_nbbase.py
${PYSITELIB}/IPython/nbformat/v3/tests/test_nbbase.pyc
${PYSITELIB}/IPython/nbformat/v3/tests/test_nbbase.pyo
${PYSITELIB}/IPython/nbformat/v3/tests/test_nbpy.py
${PYSITELIB}/IPython/nbformat/v3/tests/test_nbpy.pyc
${PYSITELIB}/IPython/nbformat/v3/tests/test_nbpy.pyo
${PYSITELIB}/IPython/nbformat/v3/validator.py
${PYSITELIB}/IPython/nbformat/v3/validator.pyc
${PYSITELIB}/IPython/nbformat/v3/validator.pyo
${PYSITELIB}/IPython/parallel/__init__.py
${PYSITELIB}/IPython/parallel/__init__.pyc
${PYSITELIB}/IPython/parallel/__init__.pyo
${PYSITELIB}/IPython/parallel/apps/__init__.py
${PYSITELIB}/IPython/parallel/apps/__init__.pyc
${PYSITELIB}/IPython/parallel/apps/__init__.pyo
${PYSITELIB}/IPython/parallel/apps/baseapp.py
${PYSITELIB}/IPython/parallel/apps/baseapp.pyc
${PYSITELIB}/IPython/parallel/apps/baseapp.pyo
${PYSITELIB}/IPython/parallel/apps/ipclusterapp.py
${PYSITELIB}/IPython/parallel/apps/ipclusterapp.pyc
${PYSITELIB}/IPython/parallel/apps/ipclusterapp.pyo
${PYSITELIB}/IPython/parallel/apps/ipcontrollerapp.py
${PYSITELIB}/IPython/parallel/apps/ipcontrollerapp.pyc
${PYSITELIB}/IPython/parallel/apps/ipcontrollerapp.pyo
${PYSITELIB}/IPython/parallel/apps/ipengineapp.py
${PYSITELIB}/IPython/parallel/apps/ipengineapp.pyc
${PYSITELIB}/IPython/parallel/apps/ipengineapp.pyo
${PYSITELIB}/IPython/parallel/apps/iploggerapp.py
${PYSITELIB}/IPython/parallel/apps/iploggerapp.pyc
${PYSITELIB}/IPython/parallel/apps/iploggerapp.pyo
${PYSITELIB}/IPython/parallel/apps/launcher.py
${PYSITELIB}/IPython/parallel/apps/launcher.pyc
${PYSITELIB}/IPython/parallel/apps/launcher.pyo
${PYSITELIB}/IPython/parallel/apps/logwatcher.py
${PYSITELIB}/IPython/parallel/apps/logwatcher.pyc
${PYSITELIB}/IPython/parallel/apps/logwatcher.pyo
${PYSITELIB}/IPython/parallel/apps/win32support.py
${PYSITELIB}/IPython/parallel/apps/win32support.pyc
${PYSITELIB}/IPython/parallel/apps/win32support.pyo
${PYSITELIB}/IPython/parallel/apps/winhpcjob.py
${PYSITELIB}/IPython/parallel/apps/winhpcjob.pyc
${PYSITELIB}/IPython/parallel/apps/winhpcjob.pyo
${PYSITELIB}/IPython/parallel/client/__init__.py
${PYSITELIB}/IPython/parallel/client/__init__.pyc
${PYSITELIB}/IPython/parallel/client/__init__.pyo
${PYSITELIB}/IPython/parallel/client/asyncresult.py
${PYSITELIB}/IPython/parallel/client/asyncresult.pyc
${PYSITELIB}/IPython/parallel/client/asyncresult.pyo
${PYSITELIB}/IPython/parallel/client/client.py
${PYSITELIB}/IPython/parallel/client/client.pyc
${PYSITELIB}/IPython/parallel/client/client.pyo
${PYSITELIB}/IPython/parallel/client/magics.py
${PYSITELIB}/IPython/parallel/client/magics.pyc
${PYSITELIB}/IPython/parallel/client/magics.pyo
${PYSITELIB}/IPython/parallel/client/map.py
${PYSITELIB}/IPython/parallel/client/map.pyc
${PYSITELIB}/IPython/parallel/client/map.pyo
${PYSITELIB}/IPython/parallel/client/remotefunction.py
${PYSITELIB}/IPython/parallel/client/remotefunction.pyc
${PYSITELIB}/IPython/parallel/client/remotefunction.pyo
${PYSITELIB}/IPython/parallel/client/view.py
${PYSITELIB}/IPython/parallel/client/view.pyc
${PYSITELIB}/IPython/parallel/client/view.pyo
${PYSITELIB}/IPython/parallel/controller/__init__.py
${PYSITELIB}/IPython/parallel/controller/__init__.pyc
${PYSITELIB}/IPython/parallel/controller/__init__.pyo
${PYSITELIB}/IPython/parallel/controller/dependency.py
${PYSITELIB}/IPython/parallel/controller/dependency.pyc
${PYSITELIB}/IPython/parallel/controller/dependency.pyo
${PYSITELIB}/IPython/parallel/controller/dictdb.py
${PYSITELIB}/IPython/parallel/controller/dictdb.pyc
${PYSITELIB}/IPython/parallel/controller/dictdb.pyo
${PYSITELIB}/IPython/parallel/controller/heartmonitor.py
${PYSITELIB}/IPython/parallel/controller/heartmonitor.pyc
${PYSITELIB}/IPython/parallel/controller/heartmonitor.pyo
${PYSITELIB}/IPython/parallel/controller/hub.py
${PYSITELIB}/IPython/parallel/controller/hub.pyc
${PYSITELIB}/IPython/parallel/controller/hub.pyo
${PYSITELIB}/IPython/parallel/controller/mongodb.py
${PYSITELIB}/IPython/parallel/controller/mongodb.pyc
${PYSITELIB}/IPython/parallel/controller/mongodb.pyo
${PYSITELIB}/IPython/parallel/controller/scheduler.py
${PYSITELIB}/IPython/parallel/controller/scheduler.pyc
${PYSITELIB}/IPython/parallel/controller/scheduler.pyo
${PYSITELIB}/IPython/parallel/controller/sqlitedb.py
${PYSITELIB}/IPython/parallel/controller/sqlitedb.pyc
${PYSITELIB}/IPython/parallel/controller/sqlitedb.pyo
${PYSITELIB}/IPython/parallel/engine/__init__.py
${PYSITELIB}/IPython/parallel/engine/__init__.pyc
${PYSITELIB}/IPython/parallel/engine/__init__.pyo
${PYSITELIB}/IPython/parallel/engine/engine.py
${PYSITELIB}/IPython/parallel/engine/engine.pyc
${PYSITELIB}/IPython/parallel/engine/engine.pyo
${PYSITELIB}/IPython/parallel/error.py
${PYSITELIB}/IPython/parallel/error.pyc
${PYSITELIB}/IPython/parallel/error.pyo
${PYSITELIB}/IPython/parallel/factory.py
${PYSITELIB}/IPython/parallel/factory.pyc
${PYSITELIB}/IPython/parallel/factory.pyo
${PYSITELIB}/IPython/parallel/scripts/__init__.py
${PYSITELIB}/IPython/parallel/scripts/__init__.pyc
${PYSITELIB}/IPython/parallel/scripts/__init__.pyo
${PYSITELIB}/IPython/parallel/tests/__init__.py
${PYSITELIB}/IPython/parallel/tests/__init__.pyc
${PYSITELIB}/IPython/parallel/tests/__init__.pyo
${PYSITELIB}/IPython/parallel/tests/clienttest.py
${PYSITELIB}/IPython/parallel/tests/clienttest.pyc
${PYSITELIB}/IPython/parallel/tests/clienttest.pyo
${PYSITELIB}/IPython/parallel/tests/test_asyncresult.py
${PYSITELIB}/IPython/parallel/tests/test_asyncresult.pyc
${PYSITELIB}/IPython/parallel/tests/test_asyncresult.pyo
${PYSITELIB}/IPython/parallel/tests/test_client.py
${PYSITELIB}/IPython/parallel/tests/test_client.pyc
${PYSITELIB}/IPython/parallel/tests/test_client.pyo
${PYSITELIB}/IPython/parallel/tests/test_db.py
${PYSITELIB}/IPython/parallel/tests/test_db.pyc
${PYSITELIB}/IPython/parallel/tests/test_db.pyo
${PYSITELIB}/IPython/parallel/tests/test_dependency.py
${PYSITELIB}/IPython/parallel/tests/test_dependency.pyc
${PYSITELIB}/IPython/parallel/tests/test_dependency.pyo
${PYSITELIB}/IPython/parallel/tests/test_launcher.py
${PYSITELIB}/IPython/parallel/tests/test_launcher.pyc
${PYSITELIB}/IPython/parallel/tests/test_launcher.pyo
${PYSITELIB}/IPython/parallel/tests/test_lbview.py
${PYSITELIB}/IPython/parallel/tests/test_lbview.pyc
${PYSITELIB}/IPython/parallel/tests/test_lbview.pyo
${PYSITELIB}/IPython/parallel/tests/test_magics.py
${PYSITELIB}/IPython/parallel/tests/test_magics.pyc
${PYSITELIB}/IPython/parallel/tests/test_magics.pyo
${PYSITELIB}/IPython/parallel/tests/test_mongodb.py
${PYSITELIB}/IPython/parallel/tests/test_mongodb.pyc
${PYSITELIB}/IPython/parallel/tests/test_mongodb.pyo
${PYSITELIB}/IPython/parallel/tests/test_view.py
${PYSITELIB}/IPython/parallel/tests/test_view.pyc
${PYSITELIB}/IPython/parallel/tests/test_view.pyo
${PYSITELIB}/IPython/parallel/util.py
${PYSITELIB}/IPython/parallel/util.pyc
${PYSITELIB}/IPython/parallel/util.pyo
${PYSITELIB}/IPython/qt/__init__.py
${PYSITELIB}/IPython/qt/__init__.pyc
${PYSITELIB}/IPython/qt/__init__.pyo
${PYSITELIB}/IPython/qt/base_frontend_mixin.py
${PYSITELIB}/IPython/qt/base_frontend_mixin.pyc
${PYSITELIB}/IPython/qt/base_frontend_mixin.pyo
${PYSITELIB}/IPython/qt/client.py
${PYSITELIB}/IPython/qt/client.pyc
${PYSITELIB}/IPython/qt/client.pyo
${PYSITELIB}/IPython/qt/console/__init__.py
${PYSITELIB}/IPython/qt/console/__init__.pyc
${PYSITELIB}/IPython/qt/console/__init__.pyo
${PYSITELIB}/IPython/qt/console/ansi_code_processor.py
${PYSITELIB}/IPython/qt/console/ansi_code_processor.pyc
${PYSITELIB}/IPython/qt/console/ansi_code_processor.pyo
${PYSITELIB}/IPython/qt/console/bracket_matcher.py
${PYSITELIB}/IPython/qt/console/bracket_matcher.pyc
${PYSITELIB}/IPython/qt/console/bracket_matcher.pyo
${PYSITELIB}/IPython/qt/console/call_tip_widget.py
${PYSITELIB}/IPython/qt/console/call_tip_widget.pyc
${PYSITELIB}/IPython/qt/console/call_tip_widget.pyo
${PYSITELIB}/IPython/qt/console/completion_html.py
${PYSITELIB}/IPython/qt/console/completion_html.pyc
${PYSITELIB}/IPython/qt/console/completion_html.pyo
${PYSITELIB}/IPython/qt/console/completion_lexer.py
${PYSITELIB}/IPython/qt/console/completion_lexer.pyc
${PYSITELIB}/IPython/qt/console/completion_lexer.pyo
${PYSITELIB}/IPython/qt/console/completion_plain.py
${PYSITELIB}/IPython/qt/console/completion_plain.pyc
${PYSITELIB}/IPython/qt/console/completion_plain.pyo
${PYSITELIB}/IPython/qt/console/completion_widget.py
${PYSITELIB}/IPython/qt/console/completion_widget.pyc
${PYSITELIB}/IPython/qt/console/completion_widget.pyo
${PYSITELIB}/IPython/qt/console/console_widget.py
${PYSITELIB}/IPython/qt/console/console_widget.pyc
${PYSITELIB}/IPython/qt/console/console_widget.pyo
${PYSITELIB}/IPython/qt/console/frontend_widget.py
${PYSITELIB}/IPython/qt/console/frontend_widget.pyc
${PYSITELIB}/IPython/qt/console/frontend_widget.pyo
${PYSITELIB}/IPython/qt/console/history_console_widget.py
${PYSITELIB}/IPython/qt/console/history_console_widget.pyc
${PYSITELIB}/IPython/qt/console/history_console_widget.pyo
${PYSITELIB}/IPython/qt/console/ipython_widget.py
${PYSITELIB}/IPython/qt/console/ipython_widget.pyc
${PYSITELIB}/IPython/qt/console/ipython_widget.pyo
${PYSITELIB}/IPython/qt/console/kill_ring.py
${PYSITELIB}/IPython/qt/console/kill_ring.pyc
${PYSITELIB}/IPython/qt/console/kill_ring.pyo
${PYSITELIB}/IPython/qt/console/mainwindow.py
${PYSITELIB}/IPython/qt/console/mainwindow.pyc
${PYSITELIB}/IPython/qt/console/mainwindow.pyo
${PYSITELIB}/IPython/qt/console/pygments_highlighter.py
${PYSITELIB}/IPython/qt/console/pygments_highlighter.pyc
${PYSITELIB}/IPython/qt/console/pygments_highlighter.pyo
${PYSITELIB}/IPython/qt/console/qtconsoleapp.py
${PYSITELIB}/IPython/qt/console/qtconsoleapp.pyc
${PYSITELIB}/IPython/qt/console/qtconsoleapp.pyo
${PYSITELIB}/IPython/qt/console/resources/icon/IPythonConsole.svg
${PYSITELIB}/IPython/qt/console/rich_ipython_widget.py
${PYSITELIB}/IPython/qt/console/rich_ipython_widget.pyc
${PYSITELIB}/IPython/qt/console/rich_ipython_widget.pyo
${PYSITELIB}/IPython/qt/console/styles.py
${PYSITELIB}/IPython/qt/console/styles.pyc
${PYSITELIB}/IPython/qt/console/styles.pyo
${PYSITELIB}/IPython/qt/console/tests/__init__.py
${PYSITELIB}/IPython/qt/console/tests/__init__.pyc
${PYSITELIB}/IPython/qt/console/tests/__init__.pyo
${PYSITELIB}/IPython/qt/console/tests/test_ansi_code_processor.py
${PYSITELIB}/IPython/qt/console/tests/test_ansi_code_processor.pyc
${PYSITELIB}/IPython/qt/console/tests/test_ansi_code_processor.pyo
${PYSITELIB}/IPython/qt/console/tests/test_app.py
${PYSITELIB}/IPython/qt/console/tests/test_app.pyc
${PYSITELIB}/IPython/qt/console/tests/test_app.pyo
${PYSITELIB}/IPython/qt/console/tests/test_completion_lexer.py
${PYSITELIB}/IPython/qt/console/tests/test_completion_lexer.pyc
${PYSITELIB}/IPython/qt/console/tests/test_completion_lexer.pyo
${PYSITELIB}/IPython/qt/console/tests/test_console_widget.py
${PYSITELIB}/IPython/qt/console/tests/test_console_widget.pyc
${PYSITELIB}/IPython/qt/console/tests/test_console_widget.pyo
${PYSITELIB}/IPython/qt/console/tests/test_kill_ring.py
${PYSITELIB}/IPython/qt/console/tests/test_kill_ring.pyc
${PYSITELIB}/IPython/qt/console/tests/test_kill_ring.pyo
${PYSITELIB}/IPython/qt/inprocess.py
${PYSITELIB}/IPython/qt/inprocess.pyc
${PYSITELIB}/IPython/qt/inprocess.pyo
${PYSITELIB}/IPython/qt/kernel_mixins.py
${PYSITELIB}/IPython/qt/kernel_mixins.pyc
${PYSITELIB}/IPython/qt/kernel_mixins.pyo
${PYSITELIB}/IPython/qt/manager.py
${PYSITELIB}/IPython/qt/manager.pyc
${PYSITELIB}/IPython/qt/manager.pyo
${PYSITELIB}/IPython/qt/rich_text.py
${PYSITELIB}/IPython/qt/rich_text.pyc
${PYSITELIB}/IPython/qt/rich_text.pyo
${PYSITELIB}/IPython/qt/svg.py
${PYSITELIB}/IPython/qt/svg.pyc
${PYSITELIB}/IPython/qt/svg.pyo
${PYSITELIB}/IPython/qt/util.py
${PYSITELIB}/IPython/qt/util.pyc
${PYSITELIB}/IPython/qt/util.pyo
${PYSITELIB}/IPython/scripts/__init__.py
${PYSITELIB}/IPython/scripts/__init__.pyc
${PYSITELIB}/IPython/scripts/__init__.pyo
${PYSITELIB}/IPython/sphinxext/__init__.py
${PYSITELIB}/IPython/sphinxext/__init__.pyc
${PYSITELIB}/IPython/sphinxext/__init__.pyo
${PYSITELIB}/IPython/sphinxext/ipython_console_highlighting.py
${PYSITELIB}/IPython/sphinxext/ipython_console_highlighting.pyc
${PYSITELIB}/IPython/sphinxext/ipython_console_highlighting.pyo
${PYSITELIB}/IPython/sphinxext/ipython_directive.py
${PYSITELIB}/IPython/sphinxext/ipython_directive.pyc
${PYSITELIB}/IPython/sphinxext/ipython_directive.pyo
${PYSITELIB}/IPython/terminal/__init__.py
${PYSITELIB}/IPython/terminal/__init__.pyc
${PYSITELIB}/IPython/terminal/__init__.pyo
${PYSITELIB}/IPython/terminal/console/__init__.py
${PYSITELIB}/IPython/terminal/console/__init__.pyc
${PYSITELIB}/IPython/terminal/console/__init__.pyo
${PYSITELIB}/IPython/terminal/console/app.py
${PYSITELIB}/IPython/terminal/console/app.pyc
${PYSITELIB}/IPython/terminal/console/app.pyo
${PYSITELIB}/IPython/terminal/console/completer.py
${PYSITELIB}/IPython/terminal/console/completer.pyc
${PYSITELIB}/IPython/terminal/console/completer.pyo
${PYSITELIB}/IPython/terminal/console/interactiveshell.py
${PYSITELIB}/IPython/terminal/console/interactiveshell.pyc
${PYSITELIB}/IPython/terminal/console/interactiveshell.pyo
${PYSITELIB}/IPython/terminal/console/tests/__init__.py
${PYSITELIB}/IPython/terminal/console/tests/__init__.pyc
${PYSITELIB}/IPython/terminal/console/tests/__init__.pyo
${PYSITELIB}/IPython/terminal/console/tests/test_console.py
${PYSITELIB}/IPython/terminal/console/tests/test_console.pyc
${PYSITELIB}/IPython/terminal/console/tests/test_console.pyo
${PYSITELIB}/IPython/terminal/console/tests/test_image_handler.py
${PYSITELIB}/IPython/terminal/console/tests/test_image_handler.pyc
${PYSITELIB}/IPython/terminal/console/tests/test_image_handler.pyo
${PYSITELIB}/IPython/terminal/console/tests/writetofile.py
${PYSITELIB}/IPython/terminal/console/tests/writetofile.pyc
${PYSITELIB}/IPython/terminal/console/tests/writetofile.pyo
${PYSITELIB}/IPython/terminal/embed.py
${PYSITELIB}/IPython/terminal/embed.pyc
${PYSITELIB}/IPython/terminal/embed.pyo
${PYSITELIB}/IPython/terminal/interactiveshell.py
${PYSITELIB}/IPython/terminal/interactiveshell.pyc
${PYSITELIB}/IPython/terminal/interactiveshell.pyo
${PYSITELIB}/IPython/terminal/ipapp.py
${PYSITELIB}/IPython/terminal/ipapp.pyc
${PYSITELIB}/IPython/terminal/ipapp.pyo
${PYSITELIB}/IPython/terminal/tests/__init__.py
${PYSITELIB}/IPython/terminal/tests/__init__.pyc
${PYSITELIB}/IPython/terminal/tests/__init__.pyo
${PYSITELIB}/IPython/terminal/tests/test_help.py
${PYSITELIB}/IPython/terminal/tests/test_help.pyc
${PYSITELIB}/IPython/terminal/tests/test_help.pyo
${PYSITELIB}/IPython/terminal/tests/test_interactivshell.py
${PYSITELIB}/IPython/terminal/tests/test_interactivshell.pyc
${PYSITELIB}/IPython/terminal/tests/test_interactivshell.pyo
${PYSITELIB}/IPython/testing/__init__.py
${PYSITELIB}/IPython/testing/__init__.pyc
${PYSITELIB}/IPython/testing/__init__.pyo
${PYSITELIB}/IPython/testing/_paramtestpy2.py
${PYSITELIB}/IPython/testing/_paramtestpy2.pyc
${PYSITELIB}/IPython/testing/_paramtestpy2.pyo
${PYSITELIB}/IPython/testing/_paramtestpy3.py
${PYSITELIB}/IPython/testing/_paramtestpy3.pyc
${PYSITELIB}/IPython/testing/_paramtestpy3.pyo
${PYSITELIB}/IPython/testing/decorators.py
${PYSITELIB}/IPython/testing/decorators.pyc
${PYSITELIB}/IPython/testing/decorators.pyo
${PYSITELIB}/IPython/testing/globalipapp.py
${PYSITELIB}/IPython/testing/globalipapp.pyc
${PYSITELIB}/IPython/testing/globalipapp.pyo
${PYSITELIB}/IPython/testing/iptest.py
${PYSITELIB}/IPython/testing/iptest.pyc
${PYSITELIB}/IPython/testing/iptest.pyo
${PYSITELIB}/IPython/testing/ipunittest.py
${PYSITELIB}/IPython/testing/ipunittest.pyc
${PYSITELIB}/IPython/testing/ipunittest.pyo
${PYSITELIB}/IPython/testing/mkdoctests.py
${PYSITELIB}/IPython/testing/mkdoctests.pyc
${PYSITELIB}/IPython/testing/mkdoctests.pyo
${PYSITELIB}/IPython/testing/nose_assert_methods.py
${PYSITELIB}/IPython/testing/nose_assert_methods.pyc
${PYSITELIB}/IPython/testing/nose_assert_methods.pyo
${PYSITELIB}/IPython/testing/nosepatch.py
${PYSITELIB}/IPython/testing/nosepatch.pyc
${PYSITELIB}/IPython/testing/nosepatch.pyo
${PYSITELIB}/IPython/testing/plugin/README.txt
${PYSITELIB}/IPython/testing/plugin/__init__.py
${PYSITELIB}/IPython/testing/plugin/__init__.pyc
${PYSITELIB}/IPython/testing/plugin/__init__.pyo
${PYSITELIB}/IPython/testing/plugin/dtexample.py
${PYSITELIB}/IPython/testing/plugin/dtexample.pyc
${PYSITELIB}/IPython/testing/plugin/dtexample.pyo
${PYSITELIB}/IPython/testing/plugin/ipdoctest.py
${PYSITELIB}/IPython/testing/plugin/ipdoctest.pyc
${PYSITELIB}/IPython/testing/plugin/ipdoctest.pyo
${PYSITELIB}/IPython/testing/plugin/iptest.py
${PYSITELIB}/IPython/testing/plugin/iptest.pyc
${PYSITELIB}/IPython/testing/plugin/iptest.pyo
${PYSITELIB}/IPython/testing/plugin/setup.py
${PYSITELIB}/IPython/testing/plugin/setup.pyc
${PYSITELIB}/IPython/testing/plugin/setup.pyo
${PYSITELIB}/IPython/testing/plugin/show_refs.py
${PYSITELIB}/IPython/testing/plugin/show_refs.pyc
${PYSITELIB}/IPython/testing/plugin/show_refs.pyo
${PYSITELIB}/IPython/testing/plugin/simple.py
${PYSITELIB}/IPython/testing/plugin/simple.pyc
${PYSITELIB}/IPython/testing/plugin/simple.pyo
${PYSITELIB}/IPython/testing/plugin/simplevars.py
${PYSITELIB}/IPython/testing/plugin/simplevars.pyc
${PYSITELIB}/IPython/testing/plugin/simplevars.pyo
${PYSITELIB}/IPython/testing/plugin/test_combo.txt
${PYSITELIB}/IPython/testing/plugin/test_example.txt
${PYSITELIB}/IPython/testing/plugin/test_exampleip.txt
${PYSITELIB}/IPython/testing/plugin/test_ipdoctest.py
${PYSITELIB}/IPython/testing/plugin/test_ipdoctest.pyc
${PYSITELIB}/IPython/testing/plugin/test_ipdoctest.pyo
${PYSITELIB}/IPython/testing/plugin/test_refs.py
${PYSITELIB}/IPython/testing/plugin/test_refs.pyc
${PYSITELIB}/IPython/testing/plugin/test_refs.pyo
${PYSITELIB}/IPython/testing/skipdoctest.py
${PYSITELIB}/IPython/testing/skipdoctest.pyc
${PYSITELIB}/IPython/testing/skipdoctest.pyo
${PYSITELIB}/IPython/testing/tests/__init__.py
${PYSITELIB}/IPython/testing/tests/__init__.pyc
${PYSITELIB}/IPython/testing/tests/__init__.pyo
${PYSITELIB}/IPython/testing/tests/test_decorators.py
${PYSITELIB}/IPython/testing/tests/test_decorators.pyc
${PYSITELIB}/IPython/testing/tests/test_decorators.pyo
${PYSITELIB}/IPython/testing/tests/test_ipunittest.py
${PYSITELIB}/IPython/testing/tests/test_ipunittest.pyc
${PYSITELIB}/IPython/testing/tests/test_ipunittest.pyo
${PYSITELIB}/IPython/testing/tests/test_tools.py
${PYSITELIB}/IPython/testing/tests/test_tools.pyc
${PYSITELIB}/IPython/testing/tests/test_tools.pyo
${PYSITELIB}/IPython/testing/tools.py
${PYSITELIB}/IPython/testing/tools.pyc
${PYSITELIB}/IPython/testing/tools.pyo
${PYSITELIB}/IPython/utils/PyColorize.py
${PYSITELIB}/IPython/utils/PyColorize.pyc
${PYSITELIB}/IPython/utils/PyColorize.pyo
${PYSITELIB}/IPython/utils/__init__.py
${PYSITELIB}/IPython/utils/__init__.pyc
${PYSITELIB}/IPython/utils/__init__.pyo
${PYSITELIB}/IPython/utils/_process_common.py
${PYSITELIB}/IPython/utils/_process_common.pyc
${PYSITELIB}/IPython/utils/_process_common.pyo
${PYSITELIB}/IPython/utils/_process_posix.py
${PYSITELIB}/IPython/utils/_process_posix.pyc
${PYSITELIB}/IPython/utils/_process_posix.pyo
${PYSITELIB}/IPython/utils/_process_win32.py
${PYSITELIB}/IPython/utils/_process_win32.pyc
${PYSITELIB}/IPython/utils/_process_win32.pyo
${PYSITELIB}/IPython/utils/_process_win32_controller.py
${PYSITELIB}/IPython/utils/_process_win32_controller.pyc
${PYSITELIB}/IPython/utils/_process_win32_controller.pyo
${PYSITELIB}/IPython/utils/_sysinfo.py
${PYSITELIB}/IPython/utils/_sysinfo.pyc
${PYSITELIB}/IPython/utils/_sysinfo.pyo
${PYSITELIB}/IPython/utils/_tokenize_py2.py
${PYSITELIB}/IPython/utils/_tokenize_py2.pyc
${PYSITELIB}/IPython/utils/_tokenize_py2.pyo
${PYSITELIB}/IPython/utils/_tokenize_py3.py
${PYSITELIB}/IPython/utils/_tokenize_py3.pyc
${PYSITELIB}/IPython/utils/_tokenize_py3.pyo
${PYSITELIB}/IPython/utils/attic.py
${PYSITELIB}/IPython/utils/attic.pyc
${PYSITELIB}/IPython/utils/attic.pyo
${PYSITELIB}/IPython/utils/codeutil.py
${PYSITELIB}/IPython/utils/codeutil.pyc
${PYSITELIB}/IPython/utils/codeutil.pyo
${PYSITELIB}/IPython/utils/coloransi.py
${PYSITELIB}/IPython/utils/coloransi.pyc
${PYSITELIB}/IPython/utils/coloransi.pyo
${PYSITELIB}/IPython/utils/contexts.py
${PYSITELIB}/IPython/utils/contexts.pyc
${PYSITELIB}/IPython/utils/contexts.pyo
${PYSITELIB}/IPython/utils/daemonize.py
${PYSITELIB}/IPython/utils/daemonize.pyc
${PYSITELIB}/IPython/utils/daemonize.pyo
${PYSITELIB}/IPython/utils/data.py
${PYSITELIB}/IPython/utils/data.pyc
${PYSITELIB}/IPython/utils/data.pyo
${PYSITELIB}/IPython/utils/decorators.py
${PYSITELIB}/IPython/utils/decorators.pyc
${PYSITELIB}/IPython/utils/decorators.pyo
${PYSITELIB}/IPython/utils/dir2.py
${PYSITELIB}/IPython/utils/dir2.pyc
${PYSITELIB}/IPython/utils/dir2.pyo
${PYSITELIB}/IPython/utils/doctestreload.py
${PYSITELIB}/IPython/utils/doctestreload.pyc
${PYSITELIB}/IPython/utils/doctestreload.pyo
${PYSITELIB}/IPython/utils/encoding.py
${PYSITELIB}/IPython/utils/encoding.pyc
${PYSITELIB}/IPython/utils/encoding.pyo
${PYSITELIB}/IPython/utils/frame.py
${PYSITELIB}/IPython/utils/frame.pyc
${PYSITELIB}/IPython/utils/frame.pyo
${PYSITELIB}/IPython/utils/generics.py
${PYSITELIB}/IPython/utils/generics.pyc
${PYSITELIB}/IPython/utils/generics.pyo
${PYSITELIB}/IPython/utils/importstring.py
${PYSITELIB}/IPython/utils/importstring.pyc
${PYSITELIB}/IPython/utils/importstring.pyo
${PYSITELIB}/IPython/utils/io.py
${PYSITELIB}/IPython/utils/io.pyc
${PYSITELIB}/IPython/utils/io.pyo
${PYSITELIB}/IPython/utils/ipstruct.py
${PYSITELIB}/IPython/utils/ipstruct.pyc
${PYSITELIB}/IPython/utils/ipstruct.pyo
${PYSITELIB}/IPython/utils/jsonutil.py
${PYSITELIB}/IPython/utils/jsonutil.pyc
${PYSITELIB}/IPython/utils/jsonutil.pyo
${PYSITELIB}/IPython/utils/localinterfaces.py
${PYSITELIB}/IPython/utils/localinterfaces.pyc
${PYSITELIB}/IPython/utils/localinterfaces.pyo
${PYSITELIB}/IPython/utils/module_paths.py
${PYSITELIB}/IPython/utils/module_paths.pyc
${PYSITELIB}/IPython/utils/module_paths.pyo
${PYSITELIB}/IPython/utils/nested_context.py
${PYSITELIB}/IPython/utils/nested_context.pyc
${PYSITELIB}/IPython/utils/nested_context.pyo
${PYSITELIB}/IPython/utils/openpy.py
${PYSITELIB}/IPython/utils/openpy.pyc
${PYSITELIB}/IPython/utils/openpy.pyo
${PYSITELIB}/IPython/utils/path.py
${PYSITELIB}/IPython/utils/path.pyc
${PYSITELIB}/IPython/utils/path.pyo
${PYSITELIB}/IPython/utils/pickleshare.py
${PYSITELIB}/IPython/utils/pickleshare.pyc
${PYSITELIB}/IPython/utils/pickleshare.pyo
${PYSITELIB}/IPython/utils/pickleutil.py
${PYSITELIB}/IPython/utils/pickleutil.pyc
${PYSITELIB}/IPython/utils/pickleutil.pyo
${PYSITELIB}/IPython/utils/process.py
${PYSITELIB}/IPython/utils/process.pyc
${PYSITELIB}/IPython/utils/process.pyo
${PYSITELIB}/IPython/utils/py3compat.py
${PYSITELIB}/IPython/utils/py3compat.pyc
${PYSITELIB}/IPython/utils/py3compat.pyo
${PYSITELIB}/IPython/utils/rlineimpl.py
${PYSITELIB}/IPython/utils/rlineimpl.pyc
${PYSITELIB}/IPython/utils/rlineimpl.pyo
${PYSITELIB}/IPython/utils/strdispatch.py
${PYSITELIB}/IPython/utils/strdispatch.pyc
${PYSITELIB}/IPython/utils/strdispatch.pyo
${PYSITELIB}/IPython/utils/submodule.py
${PYSITELIB}/IPython/utils/submodule.pyc
${PYSITELIB}/IPython/utils/submodule.pyo
${PYSITELIB}/IPython/utils/sysinfo.py
${PYSITELIB}/IPython/utils/sysinfo.pyc
${PYSITELIB}/IPython/utils/sysinfo.pyo
${PYSITELIB}/IPython/utils/syspathcontext.py
${PYSITELIB}/IPython/utils/syspathcontext.pyc
${PYSITELIB}/IPython/utils/syspathcontext.pyo
${PYSITELIB}/IPython/utils/tempdir.py
${PYSITELIB}/IPython/utils/tempdir.pyc
${PYSITELIB}/IPython/utils/tempdir.pyo
${PYSITELIB}/IPython/utils/terminal.py
${PYSITELIB}/IPython/utils/terminal.pyc
${PYSITELIB}/IPython/utils/terminal.pyo
${PYSITELIB}/IPython/utils/tests/__init__.py
${PYSITELIB}/IPython/utils/tests/__init__.pyc
${PYSITELIB}/IPython/utils/tests/__init__.pyo
${PYSITELIB}/IPython/utils/tests/test_dir2.py
${PYSITELIB}/IPython/utils/tests/test_dir2.pyc
${PYSITELIB}/IPython/utils/tests/test_dir2.pyo
${PYSITELIB}/IPython/utils/tests/test_imports.py
${PYSITELIB}/IPython/utils/tests/test_imports.pyc
${PYSITELIB}/IPython/utils/tests/test_imports.pyo
${PYSITELIB}/IPython/utils/tests/test_importstring.py
${PYSITELIB}/IPython/utils/tests/test_importstring.pyc
${PYSITELIB}/IPython/utils/tests/test_importstring.pyo
${PYSITELIB}/IPython/utils/tests/test_io.py
${PYSITELIB}/IPython/utils/tests/test_io.pyc
${PYSITELIB}/IPython/utils/tests/test_io.pyo
${PYSITELIB}/IPython/utils/tests/test_jsonutil.py
${PYSITELIB}/IPython/utils/tests/test_jsonutil.pyc
${PYSITELIB}/IPython/utils/tests/test_jsonutil.pyo
${PYSITELIB}/IPython/utils/tests/test_module_paths.py
${PYSITELIB}/IPython/utils/tests/test_module_paths.pyc
${PYSITELIB}/IPython/utils/tests/test_module_paths.pyo
${PYSITELIB}/IPython/utils/tests/test_openpy.py
${PYSITELIB}/IPython/utils/tests/test_openpy.pyc
${PYSITELIB}/IPython/utils/tests/test_openpy.pyo
${PYSITELIB}/IPython/utils/tests/test_path.py
${PYSITELIB}/IPython/utils/tests/test_path.pyc
${PYSITELIB}/IPython/utils/tests/test_path.pyo
${PYSITELIB}/IPython/utils/tests/test_process.py
${PYSITELIB}/IPython/utils/tests/test_process.pyc
${PYSITELIB}/IPython/utils/tests/test_process.pyo
${PYSITELIB}/IPython/utils/tests/test_pycolorize.py
${PYSITELIB}/IPython/utils/tests/test_pycolorize.pyc
${PYSITELIB}/IPython/utils/tests/test_pycolorize.pyo
${PYSITELIB}/IPython/utils/tests/test_tempdir.py
${PYSITELIB}/IPython/utils/tests/test_tempdir.pyc
${PYSITELIB}/IPython/utils/tests/test_tempdir.pyo
${PYSITELIB}/IPython/utils/tests/test_text.py
${PYSITELIB}/IPython/utils/tests/test_text.pyc
${PYSITELIB}/IPython/utils/tests/test_text.pyo
${PYSITELIB}/IPython/utils/tests/test_traitlets.py
${PYSITELIB}/IPython/utils/tests/test_traitlets.pyc
${PYSITELIB}/IPython/utils/tests/test_traitlets.pyo
${PYSITELIB}/IPython/utils/tests/test_wildcard.py
${PYSITELIB}/IPython/utils/tests/test_wildcard.pyc
${PYSITELIB}/IPython/utils/tests/test_wildcard.pyo
${PYSITELIB}/IPython/utils/text.py
${PYSITELIB}/IPython/utils/text.pyc
${PYSITELIB}/IPython/utils/text.pyo
${PYSITELIB}/IPython/utils/timing.py
${PYSITELIB}/IPython/utils/timing.pyc
${PYSITELIB}/IPython/utils/timing.pyo
${PYSITELIB}/IPython/utils/tokenize2.py
${PYSITELIB}/IPython/utils/tokenize2.pyc
${PYSITELIB}/IPython/utils/tokenize2.pyo
${PYSITELIB}/IPython/utils/traitlets.py
${PYSITELIB}/IPython/utils/traitlets.pyc
${PYSITELIB}/IPython/utils/traitlets.pyo
${PYSITELIB}/IPython/utils/tz.py
${PYSITELIB}/IPython/utils/tz.pyc
${PYSITELIB}/IPython/utils/tz.pyo
${PYSITELIB}/IPython/utils/ulinecache.py
${PYSITELIB}/IPython/utils/ulinecache.pyc
${PYSITELIB}/IPython/utils/ulinecache.pyo
${PYSITELIB}/IPython/utils/version.py
${PYSITELIB}/IPython/utils/version.pyc
${PYSITELIB}/IPython/utils/version.pyo
${PYSITELIB}/IPython/utils/warn.py
${PYSITELIB}/IPython/utils/warn.pyc
${PYSITELIB}/IPython/utils/warn.pyo
${PYSITELIB}/IPython/utils/wildcard.py
${PYSITELIB}/IPython/utils/wildcard.pyc
${PYSITELIB}/IPython/utils/wildcard.pyo
${PYSITELIB}/IPython/utils/zmqrelated.py
${PYSITELIB}/IPython/utils/zmqrelated.pyc
${PYSITELIB}/IPython/utils/zmqrelated.pyo
man/man1/ipcluster.1
man/man1/ipcontroller.1
man/man1/ipengine.1
man/man1/iplogger.1
man/man1/ipython.1
man/man1/irunner.1
man/man1/pycolor.1
@pkgdir share/doc/ipython/extensions