aboutsummaryrefslogtreecommitdiff
path: root/java/eclipse-pydev/pkg-plist
blob: 01e4807db946973307dd89046c71f7cc6f21c365 (plain) (blame)
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
share/eclipse/dropins/pydev/eclipse/features/org.python.pydev.feature.source_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/features/org.python.pydev.feature.source_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.feature/pom.properties
share/eclipse/dropins/pydev/eclipse/features/org.python.pydev.feature.source_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.feature/pom.xml
share/eclipse/dropins/pydev/eclipse/features/org.python.pydev.feature.source_8.2.0.202102211157/feature.properties
share/eclipse/dropins/pydev/eclipse/features/org.python.pydev.feature.source_8.2.0.202102211157/feature.xml
share/eclipse/dropins/pydev/eclipse/features/org.python.pydev.feature_8.2.0.202102211157/LICENSE.txt
share/eclipse/dropins/pydev/eclipse/features/org.python.pydev.feature_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/features/org.python.pydev.feature_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/features/org.python.pydev.feature_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/features/org.python.pydev.feature_8.2.0.202102211157/feature.xml
share/eclipse/dropins/pydev/eclipse/features/org.python.pydev.mylyn.feature_0.6.0/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/features/org.python.pydev.mylyn.feature_0.6.0/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/features/org.python.pydev.mylyn.feature_0.6.0/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/features/org.python.pydev.mylyn.feature_0.6.0/feature.xml
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.analysis.source_8.2.0.202102211157.jar
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.analysis_8.2.0.202102211157/LICENSE.TXT
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.analysis_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.analysis_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.analysis_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.analysis_8.2.0.202102211157/META-INF/maven/org.python.pydev/com.python.pydev.analysis/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.analysis_8.2.0.202102211157/META-INF/maven/org.python.pydev/com.python.pydev.analysis/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.analysis_8.2.0.202102211157/analysis.jar
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.analysis_8.2.0.202102211157/icons/opentype.gif
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.analysis_8.2.0.202102211157/icons/python_file.gif
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.analysis_8.2.0.202102211157/plugin.xml
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.debug.source_8.2.0.202102211157.jar
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.debug_8.2.0.202102211157/LICENSE.TXT
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.debug_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.debug_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.debug_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.debug_8.2.0.202102211157/META-INF/maven/org.python.pydev/com.python.pydev.debug/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.debug_8.2.0.202102211157/META-INF/maven/org.python.pydev/com.python.pydev.debug/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.debug_8.2.0.202102211157/debug.jar
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.debug_8.2.0.202102211157/icons/attach_to_process.png
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.debug_8.2.0.202102211157/icons/python.gif
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.debug_8.2.0.202102211157/icons/start_debug_server.gif
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.debug_8.2.0.202102211157/icons/term_debug_server.gif
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.debug_8.2.0.202102211157/plugin.xml
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.refactoring.source_8.2.0.202102211157.jar
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.refactoring_8.2.0.202102211157/LICENSE.TXT
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.refactoring_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.refactoring_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.refactoring_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.refactoring_8.2.0.202102211157/META-INF/maven/org.python.pydev/com.python.pydev.refactoring/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.refactoring_8.2.0.202102211157/META-INF/maven/org.python.pydev/com.python.pydev.refactoring/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.refactoring_8.2.0.202102211157/plugin.properties
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.refactoring_8.2.0.202102211157/plugin.xml
share/eclipse/dropins/pydev/eclipse/plugins/com.python.pydev.refactoring_8.2.0.202102211157/refactoring.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast.source_8.2.0.202102211157.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/LICENSE.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.ast/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.ast/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/ast.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/plugin.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/schema/org.python.pydev.pydev_builder.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/schema/org.python.pydev.pydev_completion.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/schema/org.python.pydev.pydev_interpreter_info_builder.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/schema/org.python.pydev.pydev_interpreter_new_custom_entries.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/schema/org.python.pydev.pydev_interpreter_observer.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/schema/org.python.pydev.pydev_manager_observer.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/schema/org.python.pydev.pydev_modules_observer.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/schema/org.python.pydev.pydev_python_module_resolver.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/schema/org.python.pydev.pydev_pythonpath_contrib.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/schema/org.python.pydev.pydev_refactoring.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.ast_8.2.0.202102211157/schema/org.python.pydev.pydev_simpleassist.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core.source_8.2.0.202102211157.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/LICENSE.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.core/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.core/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/core.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/helpers/load-conda-vars
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/helpers/load-conda-vars.bat
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/plugin.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/.github/install_and_run_debug_py.sh
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/.github/workflows/pydevd-tests-python.yml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/LICENSE
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/MANIFEST.in
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/README.rst
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/_pydev_calltip_util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/_pydev_completer.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/_pydev_filesystem_encoding.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/_pydev_getopt.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/_pydev_imports_tipper.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/_pydev_jy_imports_tipper.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/_pydev_log.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/_pydev_tipper_common.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/pydev_console_utils.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/pydev_import_hook.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/pydev_imports.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/pydev_ipython_console.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/pydev_ipython_console_011.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/pydev_is_thread_alive.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/pydev_localhost.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/pydev_log.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/pydev_monkey.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/pydev_monkey_qt.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/pydev_override.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/pydev_umd.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/pydev_versioncheck.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_imps/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_imps/_pydev_BaseHTTPServer.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_imps/_pydev_SimpleXMLRPCServer.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_imps/_pydev_SocketServer.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_imps/_pydev_execfile.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_imps/_pydev_inspect.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_imps/_pydev_pkgutil_old.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_imps/_pydev_saved_modules.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_imps/_pydev_sys_patch.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_imps/_pydev_xmlrpclib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_runfiles/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_runfiles/pydev_runfiles.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_runfiles/pydev_runfiles_coverage.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_runfiles/pydev_runfiles_nose.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_runfiles/pydev_runfiles_parallel.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_runfiles/pydev_runfiles_parallel_client.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_runfiles/pydev_runfiles_pytest2.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_runfiles/pydev_runfiles_unittest.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_runfiles/pydev_runfiles_xml_rpc.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/_debug_adapter/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/_debug_adapter/__main__pydevd_gen_debug_adapter_protocol.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/_debug_adapter/debugProtocol.json
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/_debug_adapter/debugProtocolCustom.json
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/_debug_adapter/pydevd_base_schema.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/_debug_adapter/pydevd_schema.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/_debug_adapter/pydevd_schema_log.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevconsole_code_for_ironpython.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_additional_thread_info.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_additional_thread_info_regular.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_api.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_breakpoints.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_code_to_source.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_collect_bytecode_info.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_comm.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_comm_constants.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_command_line_handling.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_console.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_constants.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_custom_frames.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_cython.c
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_cython.pxd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_cython.pyx
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_cython_win32_27_32.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_cython_win32_27_64.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_cython_win32_36_32.cp36-win32.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_cython_win32_36_64.cp36-win_amd64.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_cython_win32_37_32.cp37-win32.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_cython_win32_37_64.cp37-win_amd64.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_cython_win32_38_32.cp38-win32.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_cython_win32_38_64.cp38-win_amd64.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_cython_win32_39_32.cp39-win32.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_cython_win32_39_64.cp39-win_amd64.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_cython_wrapper.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_daemon_thread.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_defaults.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_dont_trace.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_dont_trace_files.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_exec.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_exec2.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_extension_api.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_extension_utils.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_filtering.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_frame.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_frame_utils.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_import_class.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_io.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_json_debug_options.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_net_command.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_net_command_factory_json.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_net_command_factory_xml.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_plugin_utils.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_process_net_command.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_process_net_command_json.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_referrers.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_reload.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_resolver.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_safe_repr.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_save_locals.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_signature.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_source_mapping.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_stackless.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_suspended_frames.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_thread_lifecycle.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_timeout.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_trace_api.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_trace_dispatch.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_trace_dispatch_regular.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_traceproperty.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_utils.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_vars.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_vm_type.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/pydevd_xml.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_frame_eval_cython_wrapper.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_frame_eval_main.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_frame_evaluator.c
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_frame_evaluator.cp38-win32.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_frame_evaluator.cp38-win_amd64.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_frame_evaluator.cp39-win32.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_frame_evaluator.cp39-win_amd64.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_frame_evaluator.pxd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_frame_evaluator.pyx
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_frame_evaluator.template.pyx
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_frame_evaluator_win32_36_32.cp36-win32.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_frame_evaluator_win32_36_64.cp36-win_amd64.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_frame_evaluator_win32_37_32.cp37-win32.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_frame_evaluator_win32_37_64.cp37-win_amd64.pyd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_frame_tracing.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/pydevd_modify_bytecode.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/release_mem.h
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/README.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/bytecode.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/cfg.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/concrete.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/flags.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/instr.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/peephole_opt.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/tests/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/tests/test_bytecode.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/tests/test_cfg.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/tests/test_code.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/tests/test_concrete.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/tests/test_flags.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/tests/test_instr.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/tests/test_misc.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/bytecode/tests/test_peephole_opt.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/vendored/pydevd_fix_code.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/build_tools/build.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/build_tools/build_binaries_osx.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/build_tools/build_binaries_windows.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/build_tools/check_no_git_modifications.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/build_tools/generate_code.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/build_tools/names_to_rename.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/build_tools/pydevd_release_process.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/build_tools/rename_pep8.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/conftest.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/interpreterInfo.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pycompletionserver.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_app_engine_debug_startup.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_coverage.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/README
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/inputhook.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/inputhookglut.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/inputhookgtk.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/inputhookgtk3.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/inputhookpyglet.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/inputhookqt4.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/inputhookqt5.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/inputhooktk.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/inputhookwx.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/matplotlibtools.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/qt.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/qt_for_kernel.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/qt_loaders.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_ipython/version.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_pysrc.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_run_in_console.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_sitecustomize/__not_in_default_pythonpath.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydev_sitecustomize/sitecustomize.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevconsole.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/README.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/_always_live_program.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/_check.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/_test_attach_to_process.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/_test_attach_to_process_linux.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/add_code_to_python_process.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/attach_amd64.dll
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/attach_linux_amd64.so
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/attach_linux_x86.so
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/attach_pydevd.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/attach_script.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/attach_x86.dll
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/attach_x86.dylib
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/attach_x86_64.dylib
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/common/py_custom_pyeval_settrace.hpp
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/common/py_settrace.hpp
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/common/py_utils.hpp
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/common/py_version.hpp
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/common/python.h
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/common/ref_utils.hpp
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/inject_dll_amd64.exe
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/inject_dll_x86.exe
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/linux_and_mac/attach.cpp
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/linux_and_mac/compile_linux.sh
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/linux_and_mac/compile_mac.sh
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/linux_and_mac/lldb_prepare.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/run_code_on_dllmain_amd64.dll
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/run_code_on_dllmain_x86.dll
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/breakpoint.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/compat.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/crash.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/debug.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/disasm.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/event.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/interactive.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/module.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/plugins/README
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/plugins/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/plugins/do_example.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/plugins/do_exchain.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/plugins/do_exploitable.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/plugins/do_symfix.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/process.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/registry.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/search.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/sql.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/system.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/textio.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/thread.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/advapi32.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/context_amd64.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/context_i386.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/dbghelp.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/defines.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/gdi32.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/kernel32.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/ntdll.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/peb_teb.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/psapi.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/shell32.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/shlwapi.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/user32.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/version.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/wtsapi32.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/window.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/windows/attach.cpp
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/windows/attach.h
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/windows/compile_windows.bat
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/windows/inject_dll.cpp
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/windows/py_win_helpers.hpp
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/windows/run_code_in_memory.hpp
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/windows/run_code_on_dllmain.cpp
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/windows/stdafx.cpp
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/windows/stdafx.h
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/windows/targetver.h
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_concurrency_analyser/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_concurrency_analyser/pydevd_concurrency_logger.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_concurrency_analyser/pydevd_thread_wrappers.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_file_utils.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_plugins/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_plugins/django_debug.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_plugins/extensions/README.md
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_plugins/extensions/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_plugins/extensions/types/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_plugins/extensions/types/pydevd_helpers.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_plugins/extensions/types/pydevd_plugin_numpy_types.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_plugins/extensions/types/pydevd_plugins_django_form_str.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_plugins/jinja2_debug.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_tracing.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pytest.ini
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/runfiles.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/setup.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/setup_cython.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/stubs/_django_manager_body.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/stubs/_get_tips.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/stubs/pycompletion.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/cython_json.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/isort_container/backports/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/isort_container/backports/functools_lru_cache.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/isort_container/isort/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/isort_container/isort/__main__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/isort_container/isort/finders.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/isort_container/isort/hooks.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/isort_container/isort/isort.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/isort_container/isort/main.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/isort_container/isort/natural.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/isort_container/isort/pie_slice.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/isort_container/isort/pylama_isort.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/isort_container/isort/settings.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/isort_container/isort/utils.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/autopep8.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/Grammar.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/PatternGrammar.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/__main__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/btm_matcher.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/btm_utils.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixer_base.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixer_util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_apply.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_basestring.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_buffer.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_callable.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_dict.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_except.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_exec.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_execfile.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_exitfunc.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_filter.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_funcattrs.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_future.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_getcwdu.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_has_key.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_idioms.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_import.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_imports.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_imports2.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_input.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_intern.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_isinstance.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_itertools.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_itertools_imports.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_long.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_map.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_metaclass.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_methodattrs.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_ne.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_next.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_nonzero.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_numliterals.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_operator.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_paren.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_print.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_raise.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_raw_input.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_reduce.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_renames.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_repr.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_set_literal.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_standarderror.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_sys_exc.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_throw.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_tuple_params.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_types.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_unicode.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_urllib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_ws_comma.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_xrange.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_xreadlines.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/fixes/fix_zip.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/main.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/patcomp.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/pgen2/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/pgen2/conv.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/pgen2/driver.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/pgen2/grammar.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/pgen2/literals.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/pgen2/parse.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/pgen2/pgen.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/pgen2/token.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/pgen2/tokenize.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/pygram.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/pytree.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/lib2to3/lib2to3/refactor.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/pycodestyle.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/tests_cython_json.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/wrapped_for_pydev/ctypes/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/wrapped_for_pydev/ctypes/_ctypes.dll
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/wrapped_for_pydev/ctypes/_endian.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/wrapped_for_pydev/ctypes/ctypes-README.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/wrapped_for_pydev/ctypes/macholib/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/wrapped_for_pydev/ctypes/macholib/dyld.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/wrapped_for_pydev/ctypes/macholib/dylib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/wrapped_for_pydev/ctypes/macholib/framework.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/wrapped_for_pydev/ctypes/util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/wrapped_for_pydev/ctypes/wintypes.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/wrapped_for_pydev/not_in_default_pythonpath.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations.source_8.2.0.202102211157.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/LICENSE.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.customizations/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.customizations/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/customizations.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/icons/AppEngine-128.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/icons/AppEngine-16.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/icons/AppEngine-256.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/icons/AppEngine-32.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/icons/AppEngine-48.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/icons/AppEngine-64.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/icons/app_engine.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/icons/app_engine_16_16.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/icons/appengine-noborder-120x30.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/plugin.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/templates/google_app_engine/ask_login/app.yaml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/templates/google_app_engine/ask_login/asklogin.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/templates/google_app_engine/ask_login/description.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/templates/google_app_engine/hello_webapp_world/app.yaml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/templates/google_app_engine/hello_webapp_world/description.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/templates/google_app_engine/hello_webapp_world/helloworld.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/templates/google_app_engine/hello_world/app.yaml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/templates/google_app_engine/hello_world/description.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.customizations_8.2.0.202102211157/templates/google_app_engine/hello_world/helloworld.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug.source_8.2.0.202102211157.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/LICENSE.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.debug/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.debug/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/arguments.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/breakmarker.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/breakmarker_conditional.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/breakmarker_django.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/breakmarker_django_gray.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/breakmarker_gray.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/breakmarker_gray_conditional.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/failures.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/greendot.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/greendot_big.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/ironpython_run.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/ironpython_unit.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/jython_run.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/jython_unit.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/ovr16/error_ovr.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/ovr16/failed_ovr.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/ovr16/success_ovr.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/pin.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/pin_arrow.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/python_16x16.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/python_coverage.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/python_exception_breakpoint.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/python_profile.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/python_refactor.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/python_run.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/python_unit.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/pyunit.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/pyunit_old.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/reddot.GIF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/referrers.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/refresh.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/return_value.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/setnext_co.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/setnext_co_dis.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/stepover_co.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/tasklet.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/testerrors_ovr.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/testfailures_ovr.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/icons/watch_exp.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/libs/winp-1.26.0.7.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/plugin.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/pydev-debug.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/schema/pydev_debug_command_line_participant.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.debug_8.2.0.202102211157/schema/pydev_debug_console_input_listener.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.django.source_8.2.0.202102211157.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.django_8.2.0.202102211157/LICENSE.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.django_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.django_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.django_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.django_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.django/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.django_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.django/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.django_8.2.0.202102211157/icons/djangoNature.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.django_8.2.0.202102211157/icons/django_16x16.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.django_8.2.0.202102211157/icons/django_7x7.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.django_8.2.0.202102211157/icons/django_logo.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.django_8.2.0.202102211157/icons/django_nature.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.django_8.2.0.202102211157/icons/django_remove_nature.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.django_8.2.0.202102211157/plugin.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.django_8.2.0.202102211157/pydev_django.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.help_8.2.0.202102211157/LICENSE.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.help_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.help_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.help_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.help_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.help/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.help_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.help/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.help_8.2.0.202102211157/html/index.html
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.help_8.2.0.202102211157/html/links.html
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.help_8.2.0.202102211157/plugin.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.help_8.2.0.202102211157/toc_main.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython.source_8.2.0.202102211157.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/LICENSE.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/LICENSE_JYTHON.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/LICENSE_PYHON.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/BaseHTTPServer.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/CGIHTTPServer.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/ConfigParser.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/Cookie.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/DocXMLRPCServer.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/HTMLParser.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/MimeWriter.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/Queue.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/SimpleHTTPServer.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/SimpleXMLRPCServer.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/SocketServer.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/StringIO.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/UserDict.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/UserList.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/UserString.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/_LWPCookieJar.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/_MozillaCookieJar.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/__future__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/_abcoll.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/_fsum.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/_google_ipaddr_r234.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/_jyio.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/_pyio.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/_rawffi.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/_strptime.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/_threading_local.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/_weakrefset.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/abc.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/aifc.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/anydbm.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/argparse.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/ast.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/asynchat.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/asyncore.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/atexit.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/base64.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/bdb.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/binhex.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/bisect.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/calendar.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/cgi.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/cgitb.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/chunk.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/cmd.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/code.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/codecs.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/codeop.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/collections.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/colorsys.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/commands.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/compileall.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/compiler/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/compiler/ast.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/compiler/consts.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/compiler/future.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/compiler/misc.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/compiler/pyassem.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/compiler/pycodegen.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/compiler/symbols.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/compiler/syntax.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/compiler/transformer.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/compiler/visitor.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/contextlib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/cookielib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/copy.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/copy_reg.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/csv.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/ctypes/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/datetime.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/dbexts.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/decimal.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/difflib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/dircache.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/dis.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/README
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/archive_util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/bcppcompiler.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/ccompiler.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/cmd.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/bdist.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/bdist_dumb.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/bdist_msi.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/bdist_rpm.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/bdist_wininst.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/build.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/build_clib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/build_ext.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/build_py.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/build_scripts.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/check.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/clean.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/command_template
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/config.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/install.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/install_data.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/install_egg_info.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/install_headers.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/install_lib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/install_scripts.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/register.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/sdist.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/upload.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/config.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/core.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/cygwinccompiler.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/debug.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/dep_util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/dir_util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/dist.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/emxccompiler.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/errors.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/extension.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/fancy_getopt.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/file_util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/filelist.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/jythoncompiler.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/log.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/msvc9compiler.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/msvccompiler.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/spawn.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/sysconfig.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/Setup.sample
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/setuptools_build_ext.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/setuptools_extension.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/support.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_archive_util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_bdist.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_bdist_dumb.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_bdist_msi.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_bdist_rpm.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_bdist_wininst.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_build.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_build_clib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_build_ext.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_build_py.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_build_scripts.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_ccompiler.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_check.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_clean.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_cmd.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_config.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_config_cmd.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_core.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_dep_util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_dir_util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_dist.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_file_util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_filelist.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_install.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_install_data.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_install_headers.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_install_lib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_install_scripts.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_msvc9compiler.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_register.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_sdist.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_spawn.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_sysconfig.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_text_file.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_unixccompiler.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_upload.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_version.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/tests/test_versionpredicate.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/text_file.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/unixccompiler.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/version.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/versionpredicate.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/doctest.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/dumbdbm.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/dummy_thread.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/dummy_threading.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/Charset.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/Encoders.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/Errors.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/Generator.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/Header.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/Iterators.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/Message.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/Parser.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/Utils.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/_parseaddr.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/base64MIME.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/feedparser.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/mime/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/mime/application.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/mime/audio.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/mime/base.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/mime/image.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/mime/message.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/mime/multipart.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/mime/nonmultipart.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/mime/text.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/quopriMIME.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/aliases.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/ascii.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/base64_codec.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/big5.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/big5hkscs.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/bz2_codec.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/charmap.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp037.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp1006.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp1026.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp1140.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp1250.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp1251.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp1252.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp1253.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp1254.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp1255.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp1256.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp1257.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp1258.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp424.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp437.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp500.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp720.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp737.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp775.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp850.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp852.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp855.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp856.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp857.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp858.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp860.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp861.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp862.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp863.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp864.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp865.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp866.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp869.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp874.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp875.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp932.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp949.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/cp950.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/euc_jis_2004.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/euc_jisx0213.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/euc_jp.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/euc_kr.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/gb18030.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/gb2312.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/gbk.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/hex_codec.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/hp_roman8.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/hz.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/idna.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso2022_jp.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso2022_jp_1.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso2022_jp_2.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso2022_jp_2004.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso2022_jp_3.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso2022_jp_ext.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso2022_kr.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso8859_1.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso8859_10.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso8859_11.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso8859_13.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso8859_14.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso8859_15.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso8859_16.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso8859_2.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso8859_3.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso8859_4.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso8859_5.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso8859_6.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso8859_7.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso8859_8.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/iso8859_9.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/johab.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/koi8_r.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/koi8_u.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/latin_1.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/mac_arabic.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/mac_centeuro.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/mac_croatian.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/mac_cyrillic.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/mac_farsi.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/mac_greek.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/mac_iceland.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/mac_latin2.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/mac_roman.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/mac_romanian.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/mac_turkish.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/mbcs.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/palmos.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/ptcp154.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/punycode.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/quopri_codec.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/raw_unicode_escape.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/rot_13.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/shift_jis.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/shift_jis_2004.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/shift_jisx0213.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/string_escape.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/tis_620.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/undefined.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/unicode_escape.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/unicode_internal.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/utf_16.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/utf_16_be.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/utf_16_le.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/utf_32.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/utf_32_be.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/utf_32_le.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/utf_7.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/utf_8.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/utf_8_sig.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/uu_codec.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/encodings/zlib_codec.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/filecmp.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/fileinput.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/fnmatch.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/formatter.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/fpformat.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/fractions.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/ftplib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/functools.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/future_builtins.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/genericpath.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/getopt.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/getpass.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/gettext.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/glob.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/grp.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/gzip.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/hashlib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/heapq.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/hmac.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/htmlentitydefs.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/htmllib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/httplib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/ihooks.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/imaplib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/imghdr.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/importlib/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/inspect.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/io.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/isql.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/javapath.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/javashell.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/decoder.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/encoder.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/scanner.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_check_circular.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_decode.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_default.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_dump.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_encode_basestring_ascii.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_fail.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_float.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_indent.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_pass1.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_pass2.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_pass3.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_recursion.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_scanstring.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_separators.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_speedups.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_tool.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tests/test_unicode.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/json/tool.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/keyword.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/linecache.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/locale.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/logging/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/logging/config.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/logging/handlers.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/macpath.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/macurl2path.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/mailbox.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/mailcap.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/markupbase.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/marshal.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/md5.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/mhlib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/mimetools.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/mimetypes.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/mimify.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/modjy/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/modjy/modjy.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/modjy/modjy_exceptions.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/modjy/modjy_impl.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/modjy/modjy_input.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/modjy/modjy_log.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/modjy/modjy_params.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/modjy/modjy_publish.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/modjy/modjy_response.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/modjy/modjy_write.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/modjy/modjy_wsgi.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/multifile.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/mutex.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/netrc.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/new.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/nntplib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/ntpath.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/nturl2path.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/numbers.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/opcode.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/optparse.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/os.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pawt/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pawt/colors.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pawt/swing.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pdb.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pickle.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pickletools.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pipes.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pkgutil.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/platform.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/plistlib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/popen2.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/poplib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/posixfile.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/posixpath.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pprint.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/profile.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pstats.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pty.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pwd.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/py_compile.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pycimport.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pyclbr.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pydoc.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/pyexpat.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/quopri.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/random.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/re.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/readline.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/repr.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/rfc822.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/rlcompleter.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/robotparser.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/runpy.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/sched.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/select.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/sets.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/sgmllib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/sha.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/shelve.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/shlex.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/shutil.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/signal.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/site-packages/README
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/site.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/smtpd.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/smtplib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/sndhdr.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/socket.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/sre.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/sre_compile.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/sre_constants.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/sre_parse.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/ssl.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/stat.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/string.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/subprocess.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/symbol.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/sysconfig.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/tabnanny.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/tarfile.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/telnetlib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/tempfile.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/textwrap.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/this.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/threading.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/timeit.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/token.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/tokenize.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/trace.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/traceback.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/tty.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/types.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unicodedata.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/__main__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/case.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/loader.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/main.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/result.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/runner.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/signals.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/suite.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/test/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/test/dummy.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/test/support.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/test/test_assertions.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/test/test_break.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/test/test_case.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/test/test_discovery.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/test/test_functiontestcase.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/test/test_loader.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/test/test_program.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/test/test_result.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/test/test_runner.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/test/test_setups.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/test/test_skipping.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/test/test_suite.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/unittest/util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/urllib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/urllib2.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/urlparse.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/user.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/uu.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/uuid.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/warnings.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/weakref.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/whichdb.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/wsgiref.egg-info
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/wsgiref/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/wsgiref/handlers.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/wsgiref/headers.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/wsgiref/simple_server.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/wsgiref/util.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/wsgiref/validate.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xdrlib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/FtCore.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/Uri.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/dom/MessageSource.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/dom/NodeFilter.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/dom/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/dom/domreg.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/dom/minicompat.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/dom/minidom.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/dom/pulldom.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/dom/xmlbuilder.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/etree/ElementInclude.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/etree/ElementPath.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/etree/ElementTree.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/etree/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/etree/cElementTree.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/parsers/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/parsers/expat.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/sax/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/sax/_exceptions.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/sax/drivers2/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/sax/drivers2/drv_javasax.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/sax/handler.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/sax/saxlib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/sax/saxutils.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/sax/xmlreader.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xmllib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xmlrpclib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/zipfile.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/zlib.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.jython/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.jython/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/icons/python_file.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/icons/python_scripting.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/about.html
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/assign_params_to_attributes_action.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/assign_params_to_attributes_assist.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/assist_proposal.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/assist_regex_based_proposal.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/convert_api_to_pypredef.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/pyedit_assign_params_to_attributes.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/pyedit_assist_assign_value_to_var_if_None.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/pyedit_clear_templates_cache.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/pyedit_create_lines_on_commas.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/pyedit_enable_editor_wrap.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/pyedit_example.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/pyedit_example2.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/pyedit_exec_line_in_shell.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/pyedit_import_to_string.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/pyedit_kill_shells.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/pyedit_marker_example.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/pyedit_switch_equals.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/pyedit_wrap_expression.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/pyedit_wrap_paragraph.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/pytemplate_defaults.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/split_text_in_commas.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/template_helper.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/tests/__init__.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/tests/test_assign_to_self_attributes.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/tests/test_convert.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jysrc/tests/test_templates.py
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/jython.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/plugin.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.jython_8.2.0.202102211157/pydev-jython.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/META-INF/maven/org.python.pydev/org.python.pydev.mylyn/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/META-INF/maven/org.python.pydev/org.python.pydev.mylyn/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/icons/elcl16/interest-filtering.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/icons/etool16/junit-tab.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/icons/etool16/launch-junit-pde.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/icons/etool16/launch-junit.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/icons/etool16/link-with-editor.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/icons/etool16/no-scroll.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/icons/etool16/wizard-prefs.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/icons/eview16/active-hierarchy.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/icons/eview16/editor-mylar-class.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/icons/eview16/editor-mylar-java.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/icons/eview16/mylar.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/icons/wizban/banner-prefs.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/org/python/pydev/mylyn/Activator.class
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/org/python/pydev/mylyn/PyFocusExplorerAction.class
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.mylyn_0.6.0/plugin.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.parser.source_8.2.0.202102211157.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.parser_8.2.0.202102211157/LICENSE.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.parser_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.parser_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.parser_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.parser_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.parser/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.parser_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.parser/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.parser_8.2.0.202102211157/parser.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.parser_8.2.0.202102211157/plugin.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.parser_8.2.0.202102211157/schema/pydev_parser_observer.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.refactoring.source_8.2.0.202102211157.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.refactoring_8.2.0.202102211157/LICENSE.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.refactoring_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.refactoring_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.refactoring_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.refactoring_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.refactoring/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.refactoring_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.refactoring/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.refactoring_8.2.0.202102211157/icons/attrpub_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.refactoring_8.2.0.202102211157/icons/class_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.refactoring_8.2.0.202102211157/icons/logo.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.refactoring_8.2.0.202102211157/icons/logo.ufo
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.refactoring_8.2.0.202102211157/icons/methpub_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.refactoring_8.2.0.202102211157/plugin.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.refactoring_8.2.0.202102211157/refactoring.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_core.source_8.2.0.202102211157.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_core_8.2.0.202102211157/LICENSE.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_core_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_core_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_core_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_core_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.shared_core/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_core_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.shared_core/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_core_8.2.0.202102211157/libs/README.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_core_8.2.0.202102211157/libs/lucene-analyzers-common-6.1.0.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_core_8.2.0.202102211157/libs/lucene-core-6.1.0.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_core_8.2.0.202102211157/libs/snakeyaml-engine-2.1-20200105.160423-4.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_core_8.2.0.202102211157/shared_core.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console.source_8.2.0.202102211157.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/LICENSE.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.shared_interactive_console/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.shared_interactive_console/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/commons-logging-1.1.1.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/icons/interrupt.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/icons/save.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/icons/sync_ed.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/icons/terminate.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/interactive_console.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/plugin.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/ws-commons-util-1.0.2.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/xmlrpc-client-3.1.3.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/xmlrpc-common-3.1.3.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_interactive_console_8.2.0.202102211157/xmlrpc-server-3.1.3.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui.source_8.2.0.202102211157.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/LICENSE.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.shared_ui/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev.shared_ui/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/add_correction.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/alphab_sort_co.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/annotation_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/backward_nav.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/build_var_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/builtin_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/class_hi.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/close.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/collapseall.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/console_disabled.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/console_enabled.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/copy.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/correction_move.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/cpyqual_menu.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/custom_init.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/custom_python_file.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/cython.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/cython_file.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/decoration_class_obj.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/decoration_static_obj.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/down_arrow.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/environment_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/error_decoration.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/error_small.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/expand.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/failures.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/field_private_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/field_protected_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/field_public_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/fields_co.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/file.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/filter.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/flake8.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/folder.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/forward_nav.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/gotten_from.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/history_list.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/home_nav.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/jar_desc_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/jar_l_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/jar_lsrc_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/jar_nonexist_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/jar_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/jar_remove_l_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/jar_src_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/jython_run.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/library_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/line_match.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/magic_co.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/mainfunction.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/__imp_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/action.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/attrpub_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/class_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/create_attrpub_obj.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/create_class_obj.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/create_method_obj.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/create_python_module.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/imp_dec.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/imp_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/imp_obj.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/imp_rel_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/method_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/old_imp_rel_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/template.pdn
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/new/xml_tag.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/package_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/packagefolder_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/packagefolder_obj_remove.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/parameters_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/private_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/project.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/project_source_folder.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/protected_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/pydev_package_explorer.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/pylint.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/pythonNature.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/python_16x16.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/python_comment.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/python_comment_black.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/python_coverage.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/python_file.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/python_logging.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/python_logo.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/python_module.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/python_nature.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/python_perspective.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/python_refactor.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/python_run.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/python_unit.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/refresh_nav.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/relaunch.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/relaunch1.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/relaunch_background_disabled.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/relaunch_background_enabled.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/relaunch_errors.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/remove.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/remove_all.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/remove_nature.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/sample.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/save.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/search.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/search_docs.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/searchm_obj.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/showerr_tsk.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/static_co.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/sync_ed.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/tabs_active.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/tabs_inactive.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/template.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/terminate.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/terminate_all.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/toggle_tabs.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/up_arrow.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/warning.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/warning_decoration.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/icons/workset.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/plugin.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.shared_ui_8.2.0.202102211157/shared_ui.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev.source_8.2.0.202102211157.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/LICENSE.txt
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/META-INF/MANIFEST.MF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/META-INF/TE-3C6A6.RSA
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/META-INF/TE-3C6A6.SF
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev/pom.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/META-INF/maven/org.python.pydev/org.python.pydev/pom.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/about.ini
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/about.mappings
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/css/dark/e4-pydev-dark_preferencestyle.css
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/icons/opentype.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/icons/python_16x16.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/icons/python_file.gif
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/libs/WinRegistry-4.5.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/plugin.properties
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/plugin.xml
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/pydev.jar
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/pydev.png
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/schema/pydev_ctrl_1.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/schema/pydev_debug_preferences_page.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/schema/pydev_formatter.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/schema/pydev_globals_browser.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/schema/pydev_hover2.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/schema/pydev_interpreter_provider.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/schema/pydev_organize_imports.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/schema/pydev_pyedit_listener.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/schema/pydev_quick_outline.exsd
share/eclipse/dropins/pydev/eclipse/plugins/org.python.pydev_8.2.0.202102211157/schema/pydev_view_created_observer.exsd