summaryrefslogtreecommitdiff
path: root/textproc/py-nltk/PLIST
blob: 5e475fdd71ee1034bd2992e62ade13b1b257c6fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
@comment $NetBSD: PLIST,v 1.5 2022/12/15 23:15:24 adam Exp $
bin/nltk-${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/nltk/VERSION
${PYSITELIB}/nltk/__init__.py
${PYSITELIB}/nltk/__init__.pyc
${PYSITELIB}/nltk/__init__.pyo
${PYSITELIB}/nltk/app/__init__.py
${PYSITELIB}/nltk/app/__init__.pyc
${PYSITELIB}/nltk/app/__init__.pyo
${PYSITELIB}/nltk/app/chartparser_app.py
${PYSITELIB}/nltk/app/chartparser_app.pyc
${PYSITELIB}/nltk/app/chartparser_app.pyo
${PYSITELIB}/nltk/app/chunkparser_app.py
${PYSITELIB}/nltk/app/chunkparser_app.pyc
${PYSITELIB}/nltk/app/chunkparser_app.pyo
${PYSITELIB}/nltk/app/collocations_app.py
${PYSITELIB}/nltk/app/collocations_app.pyc
${PYSITELIB}/nltk/app/collocations_app.pyo
${PYSITELIB}/nltk/app/concordance_app.py
${PYSITELIB}/nltk/app/concordance_app.pyc
${PYSITELIB}/nltk/app/concordance_app.pyo
${PYSITELIB}/nltk/app/nemo_app.py
${PYSITELIB}/nltk/app/nemo_app.pyc
${PYSITELIB}/nltk/app/nemo_app.pyo
${PYSITELIB}/nltk/app/rdparser_app.py
${PYSITELIB}/nltk/app/rdparser_app.pyc
${PYSITELIB}/nltk/app/rdparser_app.pyo
${PYSITELIB}/nltk/app/srparser_app.py
${PYSITELIB}/nltk/app/srparser_app.pyc
${PYSITELIB}/nltk/app/srparser_app.pyo
${PYSITELIB}/nltk/app/wordfreq_app.py
${PYSITELIB}/nltk/app/wordfreq_app.pyc
${PYSITELIB}/nltk/app/wordfreq_app.pyo
${PYSITELIB}/nltk/app/wordnet_app.py
${PYSITELIB}/nltk/app/wordnet_app.pyc
${PYSITELIB}/nltk/app/wordnet_app.pyo
${PYSITELIB}/nltk/book.py
${PYSITELIB}/nltk/book.pyc
${PYSITELIB}/nltk/book.pyo
${PYSITELIB}/nltk/ccg/__init__.py
${PYSITELIB}/nltk/ccg/__init__.pyc
${PYSITELIB}/nltk/ccg/__init__.pyo
${PYSITELIB}/nltk/ccg/api.py
${PYSITELIB}/nltk/ccg/api.pyc
${PYSITELIB}/nltk/ccg/api.pyo
${PYSITELIB}/nltk/ccg/chart.py
${PYSITELIB}/nltk/ccg/chart.pyc
${PYSITELIB}/nltk/ccg/chart.pyo
${PYSITELIB}/nltk/ccg/combinator.py
${PYSITELIB}/nltk/ccg/combinator.pyc
${PYSITELIB}/nltk/ccg/combinator.pyo
${PYSITELIB}/nltk/ccg/lexicon.py
${PYSITELIB}/nltk/ccg/lexicon.pyc
${PYSITELIB}/nltk/ccg/lexicon.pyo
${PYSITELIB}/nltk/ccg/logic.py
${PYSITELIB}/nltk/ccg/logic.pyc
${PYSITELIB}/nltk/ccg/logic.pyo
${PYSITELIB}/nltk/chat/__init__.py
${PYSITELIB}/nltk/chat/__init__.pyc
${PYSITELIB}/nltk/chat/__init__.pyo
${PYSITELIB}/nltk/chat/eliza.py
${PYSITELIB}/nltk/chat/eliza.pyc
${PYSITELIB}/nltk/chat/eliza.pyo
${PYSITELIB}/nltk/chat/iesha.py
${PYSITELIB}/nltk/chat/iesha.pyc
${PYSITELIB}/nltk/chat/iesha.pyo
${PYSITELIB}/nltk/chat/rude.py
${PYSITELIB}/nltk/chat/rude.pyc
${PYSITELIB}/nltk/chat/rude.pyo
${PYSITELIB}/nltk/chat/suntsu.py
${PYSITELIB}/nltk/chat/suntsu.pyc
${PYSITELIB}/nltk/chat/suntsu.pyo
${PYSITELIB}/nltk/chat/util.py
${PYSITELIB}/nltk/chat/util.pyc
${PYSITELIB}/nltk/chat/util.pyo
${PYSITELIB}/nltk/chat/zen.py
${PYSITELIB}/nltk/chat/zen.pyc
${PYSITELIB}/nltk/chat/zen.pyo
${PYSITELIB}/nltk/chunk/__init__.py
${PYSITELIB}/nltk/chunk/__init__.pyc
${PYSITELIB}/nltk/chunk/__init__.pyo
${PYSITELIB}/nltk/chunk/api.py
${PYSITELIB}/nltk/chunk/api.pyc
${PYSITELIB}/nltk/chunk/api.pyo
${PYSITELIB}/nltk/chunk/named_entity.py
${PYSITELIB}/nltk/chunk/named_entity.pyc
${PYSITELIB}/nltk/chunk/named_entity.pyo
${PYSITELIB}/nltk/chunk/regexp.py
${PYSITELIB}/nltk/chunk/regexp.pyc
${PYSITELIB}/nltk/chunk/regexp.pyo
${PYSITELIB}/nltk/chunk/util.py
${PYSITELIB}/nltk/chunk/util.pyc
${PYSITELIB}/nltk/chunk/util.pyo
${PYSITELIB}/nltk/classify/__init__.py
${PYSITELIB}/nltk/classify/__init__.pyc
${PYSITELIB}/nltk/classify/__init__.pyo
${PYSITELIB}/nltk/classify/api.py
${PYSITELIB}/nltk/classify/api.pyc
${PYSITELIB}/nltk/classify/api.pyo
${PYSITELIB}/nltk/classify/decisiontree.py
${PYSITELIB}/nltk/classify/decisiontree.pyc
${PYSITELIB}/nltk/classify/decisiontree.pyo
${PYSITELIB}/nltk/classify/maxent.py
${PYSITELIB}/nltk/classify/maxent.pyc
${PYSITELIB}/nltk/classify/maxent.pyo
${PYSITELIB}/nltk/classify/megam.py
${PYSITELIB}/nltk/classify/megam.pyc
${PYSITELIB}/nltk/classify/megam.pyo
${PYSITELIB}/nltk/classify/naivebayes.py
${PYSITELIB}/nltk/classify/naivebayes.pyc
${PYSITELIB}/nltk/classify/naivebayes.pyo
${PYSITELIB}/nltk/classify/positivenaivebayes.py
${PYSITELIB}/nltk/classify/positivenaivebayes.pyc
${PYSITELIB}/nltk/classify/positivenaivebayes.pyo
${PYSITELIB}/nltk/classify/rte_classify.py
${PYSITELIB}/nltk/classify/rte_classify.pyc
${PYSITELIB}/nltk/classify/rte_classify.pyo
${PYSITELIB}/nltk/classify/scikitlearn.py
${PYSITELIB}/nltk/classify/scikitlearn.pyc
${PYSITELIB}/nltk/classify/scikitlearn.pyo
${PYSITELIB}/nltk/classify/senna.py
${PYSITELIB}/nltk/classify/senna.pyc
${PYSITELIB}/nltk/classify/senna.pyo
${PYSITELIB}/nltk/classify/svm.py
${PYSITELIB}/nltk/classify/svm.pyc
${PYSITELIB}/nltk/classify/svm.pyo
${PYSITELIB}/nltk/classify/tadm.py
${PYSITELIB}/nltk/classify/tadm.pyc
${PYSITELIB}/nltk/classify/tadm.pyo
${PYSITELIB}/nltk/classify/textcat.py
${PYSITELIB}/nltk/classify/textcat.pyc
${PYSITELIB}/nltk/classify/textcat.pyo
${PYSITELIB}/nltk/classify/util.py
${PYSITELIB}/nltk/classify/util.pyc
${PYSITELIB}/nltk/classify/util.pyo
${PYSITELIB}/nltk/classify/weka.py
${PYSITELIB}/nltk/classify/weka.pyc
${PYSITELIB}/nltk/classify/weka.pyo
${PYSITELIB}/nltk/cli.py
${PYSITELIB}/nltk/cli.pyc
${PYSITELIB}/nltk/cli.pyo
${PYSITELIB}/nltk/cluster/__init__.py
${PYSITELIB}/nltk/cluster/__init__.pyc
${PYSITELIB}/nltk/cluster/__init__.pyo
${PYSITELIB}/nltk/cluster/api.py
${PYSITELIB}/nltk/cluster/api.pyc
${PYSITELIB}/nltk/cluster/api.pyo
${PYSITELIB}/nltk/cluster/em.py
${PYSITELIB}/nltk/cluster/em.pyc
${PYSITELIB}/nltk/cluster/em.pyo
${PYSITELIB}/nltk/cluster/gaac.py
${PYSITELIB}/nltk/cluster/gaac.pyc
${PYSITELIB}/nltk/cluster/gaac.pyo
${PYSITELIB}/nltk/cluster/kmeans.py
${PYSITELIB}/nltk/cluster/kmeans.pyc
${PYSITELIB}/nltk/cluster/kmeans.pyo
${PYSITELIB}/nltk/cluster/util.py
${PYSITELIB}/nltk/cluster/util.pyc
${PYSITELIB}/nltk/cluster/util.pyo
${PYSITELIB}/nltk/collections.py
${PYSITELIB}/nltk/collections.pyc
${PYSITELIB}/nltk/collections.pyo
${PYSITELIB}/nltk/collocations.py
${PYSITELIB}/nltk/collocations.pyc
${PYSITELIB}/nltk/collocations.pyo
${PYSITELIB}/nltk/compat.py
${PYSITELIB}/nltk/compat.pyc
${PYSITELIB}/nltk/compat.pyo
${PYSITELIB}/nltk/corpus/__init__.py
${PYSITELIB}/nltk/corpus/__init__.pyc
${PYSITELIB}/nltk/corpus/__init__.pyo
${PYSITELIB}/nltk/corpus/europarl_raw.py
${PYSITELIB}/nltk/corpus/europarl_raw.pyc
${PYSITELIB}/nltk/corpus/europarl_raw.pyo
${PYSITELIB}/nltk/corpus/reader/__init__.py
${PYSITELIB}/nltk/corpus/reader/__init__.pyc
${PYSITELIB}/nltk/corpus/reader/__init__.pyo
${PYSITELIB}/nltk/corpus/reader/aligned.py
${PYSITELIB}/nltk/corpus/reader/aligned.pyc
${PYSITELIB}/nltk/corpus/reader/aligned.pyo
${PYSITELIB}/nltk/corpus/reader/api.py
${PYSITELIB}/nltk/corpus/reader/api.pyc
${PYSITELIB}/nltk/corpus/reader/api.pyo
${PYSITELIB}/nltk/corpus/reader/bcp47.py
${PYSITELIB}/nltk/corpus/reader/bcp47.pyc
${PYSITELIB}/nltk/corpus/reader/bcp47.pyo
${PYSITELIB}/nltk/corpus/reader/bnc.py
${PYSITELIB}/nltk/corpus/reader/bnc.pyc
${PYSITELIB}/nltk/corpus/reader/bnc.pyo
${PYSITELIB}/nltk/corpus/reader/bracket_parse.py
${PYSITELIB}/nltk/corpus/reader/bracket_parse.pyc
${PYSITELIB}/nltk/corpus/reader/bracket_parse.pyo
${PYSITELIB}/nltk/corpus/reader/categorized_sents.py
${PYSITELIB}/nltk/corpus/reader/categorized_sents.pyc
${PYSITELIB}/nltk/corpus/reader/categorized_sents.pyo
${PYSITELIB}/nltk/corpus/reader/chasen.py
${PYSITELIB}/nltk/corpus/reader/chasen.pyc
${PYSITELIB}/nltk/corpus/reader/chasen.pyo
${PYSITELIB}/nltk/corpus/reader/childes.py
${PYSITELIB}/nltk/corpus/reader/childes.pyc
${PYSITELIB}/nltk/corpus/reader/childes.pyo
${PYSITELIB}/nltk/corpus/reader/chunked.py
${PYSITELIB}/nltk/corpus/reader/chunked.pyc
${PYSITELIB}/nltk/corpus/reader/chunked.pyo
${PYSITELIB}/nltk/corpus/reader/cmudict.py
${PYSITELIB}/nltk/corpus/reader/cmudict.pyc
${PYSITELIB}/nltk/corpus/reader/cmudict.pyo
${PYSITELIB}/nltk/corpus/reader/comparative_sents.py
${PYSITELIB}/nltk/corpus/reader/comparative_sents.pyc
${PYSITELIB}/nltk/corpus/reader/comparative_sents.pyo
${PYSITELIB}/nltk/corpus/reader/conll.py
${PYSITELIB}/nltk/corpus/reader/conll.pyc
${PYSITELIB}/nltk/corpus/reader/conll.pyo
${PYSITELIB}/nltk/corpus/reader/crubadan.py
${PYSITELIB}/nltk/corpus/reader/crubadan.pyc
${PYSITELIB}/nltk/corpus/reader/crubadan.pyo
${PYSITELIB}/nltk/corpus/reader/dependency.py
${PYSITELIB}/nltk/corpus/reader/dependency.pyc
${PYSITELIB}/nltk/corpus/reader/dependency.pyo
${PYSITELIB}/nltk/corpus/reader/framenet.py
${PYSITELIB}/nltk/corpus/reader/framenet.pyc
${PYSITELIB}/nltk/corpus/reader/framenet.pyo
${PYSITELIB}/nltk/corpus/reader/ieer.py
${PYSITELIB}/nltk/corpus/reader/ieer.pyc
${PYSITELIB}/nltk/corpus/reader/ieer.pyo
${PYSITELIB}/nltk/corpus/reader/indian.py
${PYSITELIB}/nltk/corpus/reader/indian.pyc
${PYSITELIB}/nltk/corpus/reader/indian.pyo
${PYSITELIB}/nltk/corpus/reader/ipipan.py
${PYSITELIB}/nltk/corpus/reader/ipipan.pyc
${PYSITELIB}/nltk/corpus/reader/ipipan.pyo
${PYSITELIB}/nltk/corpus/reader/knbc.py
${PYSITELIB}/nltk/corpus/reader/knbc.pyc
${PYSITELIB}/nltk/corpus/reader/knbc.pyo
${PYSITELIB}/nltk/corpus/reader/lin.py
${PYSITELIB}/nltk/corpus/reader/lin.pyc
${PYSITELIB}/nltk/corpus/reader/lin.pyo
${PYSITELIB}/nltk/corpus/reader/markdown.py
${PYSITELIB}/nltk/corpus/reader/markdown.pyc
${PYSITELIB}/nltk/corpus/reader/markdown.pyo
${PYSITELIB}/nltk/corpus/reader/mte.py
${PYSITELIB}/nltk/corpus/reader/mte.pyc
${PYSITELIB}/nltk/corpus/reader/mte.pyo
${PYSITELIB}/nltk/corpus/reader/nkjp.py
${PYSITELIB}/nltk/corpus/reader/nkjp.pyc
${PYSITELIB}/nltk/corpus/reader/nkjp.pyo
${PYSITELIB}/nltk/corpus/reader/nombank.py
${PYSITELIB}/nltk/corpus/reader/nombank.pyc
${PYSITELIB}/nltk/corpus/reader/nombank.pyo
${PYSITELIB}/nltk/corpus/reader/nps_chat.py
${PYSITELIB}/nltk/corpus/reader/nps_chat.pyc
${PYSITELIB}/nltk/corpus/reader/nps_chat.pyo
${PYSITELIB}/nltk/corpus/reader/opinion_lexicon.py
${PYSITELIB}/nltk/corpus/reader/opinion_lexicon.pyc
${PYSITELIB}/nltk/corpus/reader/opinion_lexicon.pyo
${PYSITELIB}/nltk/corpus/reader/panlex_lite.py
${PYSITELIB}/nltk/corpus/reader/panlex_lite.pyc
${PYSITELIB}/nltk/corpus/reader/panlex_lite.pyo
${PYSITELIB}/nltk/corpus/reader/panlex_swadesh.py
${PYSITELIB}/nltk/corpus/reader/panlex_swadesh.pyc
${PYSITELIB}/nltk/corpus/reader/panlex_swadesh.pyo
${PYSITELIB}/nltk/corpus/reader/pl196x.py
${PYSITELIB}/nltk/corpus/reader/pl196x.pyc
${PYSITELIB}/nltk/corpus/reader/pl196x.pyo
${PYSITELIB}/nltk/corpus/reader/plaintext.py
${PYSITELIB}/nltk/corpus/reader/plaintext.pyc
${PYSITELIB}/nltk/corpus/reader/plaintext.pyo
${PYSITELIB}/nltk/corpus/reader/ppattach.py
${PYSITELIB}/nltk/corpus/reader/ppattach.pyc
${PYSITELIB}/nltk/corpus/reader/ppattach.pyo
${PYSITELIB}/nltk/corpus/reader/propbank.py
${PYSITELIB}/nltk/corpus/reader/propbank.pyc
${PYSITELIB}/nltk/corpus/reader/propbank.pyo
${PYSITELIB}/nltk/corpus/reader/pros_cons.py
${PYSITELIB}/nltk/corpus/reader/pros_cons.pyc
${PYSITELIB}/nltk/corpus/reader/pros_cons.pyo
${PYSITELIB}/nltk/corpus/reader/reviews.py
${PYSITELIB}/nltk/corpus/reader/reviews.pyc
${PYSITELIB}/nltk/corpus/reader/reviews.pyo
${PYSITELIB}/nltk/corpus/reader/rte.py
${PYSITELIB}/nltk/corpus/reader/rte.pyc
${PYSITELIB}/nltk/corpus/reader/rte.pyo
${PYSITELIB}/nltk/corpus/reader/semcor.py
${PYSITELIB}/nltk/corpus/reader/semcor.pyc
${PYSITELIB}/nltk/corpus/reader/semcor.pyo
${PYSITELIB}/nltk/corpus/reader/senseval.py
${PYSITELIB}/nltk/corpus/reader/senseval.pyc
${PYSITELIB}/nltk/corpus/reader/senseval.pyo
${PYSITELIB}/nltk/corpus/reader/sentiwordnet.py
${PYSITELIB}/nltk/corpus/reader/sentiwordnet.pyc
${PYSITELIB}/nltk/corpus/reader/sentiwordnet.pyo
${PYSITELIB}/nltk/corpus/reader/sinica_treebank.py
${PYSITELIB}/nltk/corpus/reader/sinica_treebank.pyc
${PYSITELIB}/nltk/corpus/reader/sinica_treebank.pyo
${PYSITELIB}/nltk/corpus/reader/string_category.py
${PYSITELIB}/nltk/corpus/reader/string_category.pyc
${PYSITELIB}/nltk/corpus/reader/string_category.pyo
${PYSITELIB}/nltk/corpus/reader/switchboard.py
${PYSITELIB}/nltk/corpus/reader/switchboard.pyc
${PYSITELIB}/nltk/corpus/reader/switchboard.pyo
${PYSITELIB}/nltk/corpus/reader/tagged.py
${PYSITELIB}/nltk/corpus/reader/tagged.pyc
${PYSITELIB}/nltk/corpus/reader/tagged.pyo
${PYSITELIB}/nltk/corpus/reader/timit.py
${PYSITELIB}/nltk/corpus/reader/timit.pyc
${PYSITELIB}/nltk/corpus/reader/timit.pyo
${PYSITELIB}/nltk/corpus/reader/toolbox.py
${PYSITELIB}/nltk/corpus/reader/toolbox.pyc
${PYSITELIB}/nltk/corpus/reader/toolbox.pyo
${PYSITELIB}/nltk/corpus/reader/twitter.py
${PYSITELIB}/nltk/corpus/reader/twitter.pyc
${PYSITELIB}/nltk/corpus/reader/twitter.pyo
${PYSITELIB}/nltk/corpus/reader/udhr.py
${PYSITELIB}/nltk/corpus/reader/udhr.pyc
${PYSITELIB}/nltk/corpus/reader/udhr.pyo
${PYSITELIB}/nltk/corpus/reader/util.py
${PYSITELIB}/nltk/corpus/reader/util.pyc
${PYSITELIB}/nltk/corpus/reader/util.pyo
${PYSITELIB}/nltk/corpus/reader/verbnet.py
${PYSITELIB}/nltk/corpus/reader/verbnet.pyc
${PYSITELIB}/nltk/corpus/reader/verbnet.pyo
${PYSITELIB}/nltk/corpus/reader/wordlist.py
${PYSITELIB}/nltk/corpus/reader/wordlist.pyc
${PYSITELIB}/nltk/corpus/reader/wordlist.pyo
${PYSITELIB}/nltk/corpus/reader/wordnet.py
${PYSITELIB}/nltk/corpus/reader/wordnet.pyc
${PYSITELIB}/nltk/corpus/reader/wordnet.pyo
${PYSITELIB}/nltk/corpus/reader/xmldocs.py
${PYSITELIB}/nltk/corpus/reader/xmldocs.pyc
${PYSITELIB}/nltk/corpus/reader/xmldocs.pyo
${PYSITELIB}/nltk/corpus/reader/ycoe.py
${PYSITELIB}/nltk/corpus/reader/ycoe.pyc
${PYSITELIB}/nltk/corpus/reader/ycoe.pyo
${PYSITELIB}/nltk/corpus/util.py
${PYSITELIB}/nltk/corpus/util.pyc
${PYSITELIB}/nltk/corpus/util.pyo
${PYSITELIB}/nltk/data.py
${PYSITELIB}/nltk/data.pyc
${PYSITELIB}/nltk/data.pyo
${PYSITELIB}/nltk/decorators.py
${PYSITELIB}/nltk/decorators.pyc
${PYSITELIB}/nltk/decorators.pyo
${PYSITELIB}/nltk/downloader.py
${PYSITELIB}/nltk/downloader.pyc
${PYSITELIB}/nltk/downloader.pyo
${PYSITELIB}/nltk/draw/__init__.py
${PYSITELIB}/nltk/draw/__init__.pyc
${PYSITELIB}/nltk/draw/__init__.pyo
${PYSITELIB}/nltk/draw/cfg.py
${PYSITELIB}/nltk/draw/cfg.pyc
${PYSITELIB}/nltk/draw/cfg.pyo
${PYSITELIB}/nltk/draw/dispersion.py
${PYSITELIB}/nltk/draw/dispersion.pyc
${PYSITELIB}/nltk/draw/dispersion.pyo
${PYSITELIB}/nltk/draw/table.py
${PYSITELIB}/nltk/draw/table.pyc
${PYSITELIB}/nltk/draw/table.pyo
${PYSITELIB}/nltk/draw/tree.py
${PYSITELIB}/nltk/draw/tree.pyc
${PYSITELIB}/nltk/draw/tree.pyo
${PYSITELIB}/nltk/draw/util.py
${PYSITELIB}/nltk/draw/util.pyc
${PYSITELIB}/nltk/draw/util.pyo
${PYSITELIB}/nltk/featstruct.py
${PYSITELIB}/nltk/featstruct.pyc
${PYSITELIB}/nltk/featstruct.pyo
${PYSITELIB}/nltk/grammar.py
${PYSITELIB}/nltk/grammar.pyc
${PYSITELIB}/nltk/grammar.pyo
${PYSITELIB}/nltk/help.py
${PYSITELIB}/nltk/help.pyc
${PYSITELIB}/nltk/help.pyo
${PYSITELIB}/nltk/inference/__init__.py
${PYSITELIB}/nltk/inference/__init__.pyc
${PYSITELIB}/nltk/inference/__init__.pyo
${PYSITELIB}/nltk/inference/api.py
${PYSITELIB}/nltk/inference/api.pyc
${PYSITELIB}/nltk/inference/api.pyo
${PYSITELIB}/nltk/inference/discourse.py
${PYSITELIB}/nltk/inference/discourse.pyc
${PYSITELIB}/nltk/inference/discourse.pyo
${PYSITELIB}/nltk/inference/mace.py
${PYSITELIB}/nltk/inference/mace.pyc
${PYSITELIB}/nltk/inference/mace.pyo
${PYSITELIB}/nltk/inference/nonmonotonic.py
${PYSITELIB}/nltk/inference/nonmonotonic.pyc
${PYSITELIB}/nltk/inference/nonmonotonic.pyo
${PYSITELIB}/nltk/inference/prover9.py
${PYSITELIB}/nltk/inference/prover9.pyc
${PYSITELIB}/nltk/inference/prover9.pyo
${PYSITELIB}/nltk/inference/resolution.py
${PYSITELIB}/nltk/inference/resolution.pyc
${PYSITELIB}/nltk/inference/resolution.pyo
${PYSITELIB}/nltk/inference/tableau.py
${PYSITELIB}/nltk/inference/tableau.pyc
${PYSITELIB}/nltk/inference/tableau.pyo
${PYSITELIB}/nltk/internals.py
${PYSITELIB}/nltk/internals.pyc
${PYSITELIB}/nltk/internals.pyo
${PYSITELIB}/nltk/jsontags.py
${PYSITELIB}/nltk/jsontags.pyc
${PYSITELIB}/nltk/jsontags.pyo
${PYSITELIB}/nltk/langnames.py
${PYSITELIB}/nltk/langnames.pyc
${PYSITELIB}/nltk/langnames.pyo
${PYSITELIB}/nltk/lazyimport.py
${PYSITELIB}/nltk/lazyimport.pyc
${PYSITELIB}/nltk/lazyimport.pyo
${PYSITELIB}/nltk/lm/__init__.py
${PYSITELIB}/nltk/lm/__init__.pyc
${PYSITELIB}/nltk/lm/__init__.pyo
${PYSITELIB}/nltk/lm/api.py
${PYSITELIB}/nltk/lm/api.pyc
${PYSITELIB}/nltk/lm/api.pyo
${PYSITELIB}/nltk/lm/counter.py
${PYSITELIB}/nltk/lm/counter.pyc
${PYSITELIB}/nltk/lm/counter.pyo
${PYSITELIB}/nltk/lm/models.py
${PYSITELIB}/nltk/lm/models.pyc
${PYSITELIB}/nltk/lm/models.pyo
${PYSITELIB}/nltk/lm/preprocessing.py
${PYSITELIB}/nltk/lm/preprocessing.pyc
${PYSITELIB}/nltk/lm/preprocessing.pyo
${PYSITELIB}/nltk/lm/smoothing.py
${PYSITELIB}/nltk/lm/smoothing.pyc
${PYSITELIB}/nltk/lm/smoothing.pyo
${PYSITELIB}/nltk/lm/util.py
${PYSITELIB}/nltk/lm/util.pyc
${PYSITELIB}/nltk/lm/util.pyo
${PYSITELIB}/nltk/lm/vocabulary.py
${PYSITELIB}/nltk/lm/vocabulary.pyc
${PYSITELIB}/nltk/lm/vocabulary.pyo
${PYSITELIB}/nltk/metrics/__init__.py
${PYSITELIB}/nltk/metrics/__init__.pyc
${PYSITELIB}/nltk/metrics/__init__.pyo
${PYSITELIB}/nltk/metrics/agreement.py
${PYSITELIB}/nltk/metrics/agreement.pyc
${PYSITELIB}/nltk/metrics/agreement.pyo
${PYSITELIB}/nltk/metrics/aline.py
${PYSITELIB}/nltk/metrics/aline.pyc
${PYSITELIB}/nltk/metrics/aline.pyo
${PYSITELIB}/nltk/metrics/association.py
${PYSITELIB}/nltk/metrics/association.pyc
${PYSITELIB}/nltk/metrics/association.pyo
${PYSITELIB}/nltk/metrics/confusionmatrix.py
${PYSITELIB}/nltk/metrics/confusionmatrix.pyc
${PYSITELIB}/nltk/metrics/confusionmatrix.pyo
${PYSITELIB}/nltk/metrics/distance.py
${PYSITELIB}/nltk/metrics/distance.pyc
${PYSITELIB}/nltk/metrics/distance.pyo
${PYSITELIB}/nltk/metrics/paice.py
${PYSITELIB}/nltk/metrics/paice.pyc
${PYSITELIB}/nltk/metrics/paice.pyo
${PYSITELIB}/nltk/metrics/scores.py
${PYSITELIB}/nltk/metrics/scores.pyc
${PYSITELIB}/nltk/metrics/scores.pyo
${PYSITELIB}/nltk/metrics/segmentation.py
${PYSITELIB}/nltk/metrics/segmentation.pyc
${PYSITELIB}/nltk/metrics/segmentation.pyo
${PYSITELIB}/nltk/metrics/spearman.py
${PYSITELIB}/nltk/metrics/spearman.pyc
${PYSITELIB}/nltk/metrics/spearman.pyo
${PYSITELIB}/nltk/misc/__init__.py
${PYSITELIB}/nltk/misc/__init__.pyc
${PYSITELIB}/nltk/misc/__init__.pyo
${PYSITELIB}/nltk/misc/babelfish.py
${PYSITELIB}/nltk/misc/babelfish.pyc
${PYSITELIB}/nltk/misc/babelfish.pyo
${PYSITELIB}/nltk/misc/chomsky.py
${PYSITELIB}/nltk/misc/chomsky.pyc
${PYSITELIB}/nltk/misc/chomsky.pyo
${PYSITELIB}/nltk/misc/minimalset.py
${PYSITELIB}/nltk/misc/minimalset.pyc
${PYSITELIB}/nltk/misc/minimalset.pyo
${PYSITELIB}/nltk/misc/sort.py
${PYSITELIB}/nltk/misc/sort.pyc
${PYSITELIB}/nltk/misc/sort.pyo
${PYSITELIB}/nltk/misc/wordfinder.py
${PYSITELIB}/nltk/misc/wordfinder.pyc
${PYSITELIB}/nltk/misc/wordfinder.pyo
${PYSITELIB}/nltk/parse/__init__.py
${PYSITELIB}/nltk/parse/__init__.pyc
${PYSITELIB}/nltk/parse/__init__.pyo
${PYSITELIB}/nltk/parse/api.py
${PYSITELIB}/nltk/parse/api.pyc
${PYSITELIB}/nltk/parse/api.pyo
${PYSITELIB}/nltk/parse/bllip.py
${PYSITELIB}/nltk/parse/bllip.pyc
${PYSITELIB}/nltk/parse/bllip.pyo
${PYSITELIB}/nltk/parse/chart.py
${PYSITELIB}/nltk/parse/chart.pyc
${PYSITELIB}/nltk/parse/chart.pyo
${PYSITELIB}/nltk/parse/corenlp.py
${PYSITELIB}/nltk/parse/corenlp.pyc
${PYSITELIB}/nltk/parse/corenlp.pyo
${PYSITELIB}/nltk/parse/dependencygraph.py
${PYSITELIB}/nltk/parse/dependencygraph.pyc
${PYSITELIB}/nltk/parse/dependencygraph.pyo
${PYSITELIB}/nltk/parse/earleychart.py
${PYSITELIB}/nltk/parse/earleychart.pyc
${PYSITELIB}/nltk/parse/earleychart.pyo
${PYSITELIB}/nltk/parse/evaluate.py
${PYSITELIB}/nltk/parse/evaluate.pyc
${PYSITELIB}/nltk/parse/evaluate.pyo
${PYSITELIB}/nltk/parse/featurechart.py
${PYSITELIB}/nltk/parse/featurechart.pyc
${PYSITELIB}/nltk/parse/featurechart.pyo
${PYSITELIB}/nltk/parse/generate.py
${PYSITELIB}/nltk/parse/generate.pyc
${PYSITELIB}/nltk/parse/generate.pyo
${PYSITELIB}/nltk/parse/malt.py
${PYSITELIB}/nltk/parse/malt.pyc
${PYSITELIB}/nltk/parse/malt.pyo
${PYSITELIB}/nltk/parse/nonprojectivedependencyparser.py
${PYSITELIB}/nltk/parse/nonprojectivedependencyparser.pyc
${PYSITELIB}/nltk/parse/nonprojectivedependencyparser.pyo
${PYSITELIB}/nltk/parse/pchart.py
${PYSITELIB}/nltk/parse/pchart.pyc
${PYSITELIB}/nltk/parse/pchart.pyo
${PYSITELIB}/nltk/parse/projectivedependencyparser.py
${PYSITELIB}/nltk/parse/projectivedependencyparser.pyc
${PYSITELIB}/nltk/parse/projectivedependencyparser.pyo
${PYSITELIB}/nltk/parse/recursivedescent.py
${PYSITELIB}/nltk/parse/recursivedescent.pyc
${PYSITELIB}/nltk/parse/recursivedescent.pyo
${PYSITELIB}/nltk/parse/shiftreduce.py
${PYSITELIB}/nltk/parse/shiftreduce.pyc
${PYSITELIB}/nltk/parse/shiftreduce.pyo
${PYSITELIB}/nltk/parse/stanford.py
${PYSITELIB}/nltk/parse/stanford.pyc
${PYSITELIB}/nltk/parse/stanford.pyo
${PYSITELIB}/nltk/parse/transitionparser.py
${PYSITELIB}/nltk/parse/transitionparser.pyc
${PYSITELIB}/nltk/parse/transitionparser.pyo
${PYSITELIB}/nltk/parse/util.py
${PYSITELIB}/nltk/parse/util.pyc
${PYSITELIB}/nltk/parse/util.pyo
${PYSITELIB}/nltk/parse/viterbi.py
${PYSITELIB}/nltk/parse/viterbi.pyc
${PYSITELIB}/nltk/parse/viterbi.pyo
${PYSITELIB}/nltk/probability.py
${PYSITELIB}/nltk/probability.pyc
${PYSITELIB}/nltk/probability.pyo
${PYSITELIB}/nltk/sem/__init__.py
${PYSITELIB}/nltk/sem/__init__.pyc
${PYSITELIB}/nltk/sem/__init__.pyo
${PYSITELIB}/nltk/sem/boxer.py
${PYSITELIB}/nltk/sem/boxer.pyc
${PYSITELIB}/nltk/sem/boxer.pyo
${PYSITELIB}/nltk/sem/chat80.py
${PYSITELIB}/nltk/sem/chat80.pyc
${PYSITELIB}/nltk/sem/chat80.pyo
${PYSITELIB}/nltk/sem/cooper_storage.py
${PYSITELIB}/nltk/sem/cooper_storage.pyc
${PYSITELIB}/nltk/sem/cooper_storage.pyo
${PYSITELIB}/nltk/sem/drt.py
${PYSITELIB}/nltk/sem/drt.pyc
${PYSITELIB}/nltk/sem/drt.pyo
${PYSITELIB}/nltk/sem/drt_glue_demo.py
${PYSITELIB}/nltk/sem/drt_glue_demo.pyc
${PYSITELIB}/nltk/sem/drt_glue_demo.pyo
${PYSITELIB}/nltk/sem/evaluate.py
${PYSITELIB}/nltk/sem/evaluate.pyc
${PYSITELIB}/nltk/sem/evaluate.pyo
${PYSITELIB}/nltk/sem/glue.py
${PYSITELIB}/nltk/sem/glue.pyc
${PYSITELIB}/nltk/sem/glue.pyo
${PYSITELIB}/nltk/sem/hole.py
${PYSITELIB}/nltk/sem/hole.pyc
${PYSITELIB}/nltk/sem/hole.pyo
${PYSITELIB}/nltk/sem/lfg.py
${PYSITELIB}/nltk/sem/lfg.pyc
${PYSITELIB}/nltk/sem/lfg.pyo
${PYSITELIB}/nltk/sem/linearlogic.py
${PYSITELIB}/nltk/sem/linearlogic.pyc
${PYSITELIB}/nltk/sem/linearlogic.pyo
${PYSITELIB}/nltk/sem/logic.py
${PYSITELIB}/nltk/sem/logic.pyc
${PYSITELIB}/nltk/sem/logic.pyo
${PYSITELIB}/nltk/sem/relextract.py
${PYSITELIB}/nltk/sem/relextract.pyc
${PYSITELIB}/nltk/sem/relextract.pyo
${PYSITELIB}/nltk/sem/skolemize.py
${PYSITELIB}/nltk/sem/skolemize.pyc
${PYSITELIB}/nltk/sem/skolemize.pyo
${PYSITELIB}/nltk/sem/util.py
${PYSITELIB}/nltk/sem/util.pyc
${PYSITELIB}/nltk/sem/util.pyo
${PYSITELIB}/nltk/sentiment/__init__.py
${PYSITELIB}/nltk/sentiment/__init__.pyc
${PYSITELIB}/nltk/sentiment/__init__.pyo
${PYSITELIB}/nltk/sentiment/sentiment_analyzer.py
${PYSITELIB}/nltk/sentiment/sentiment_analyzer.pyc
${PYSITELIB}/nltk/sentiment/sentiment_analyzer.pyo
${PYSITELIB}/nltk/sentiment/util.py
${PYSITELIB}/nltk/sentiment/util.pyc
${PYSITELIB}/nltk/sentiment/util.pyo
${PYSITELIB}/nltk/sentiment/vader.py
${PYSITELIB}/nltk/sentiment/vader.pyc
${PYSITELIB}/nltk/sentiment/vader.pyo
${PYSITELIB}/nltk/stem/__init__.py
${PYSITELIB}/nltk/stem/__init__.pyc
${PYSITELIB}/nltk/stem/__init__.pyo
${PYSITELIB}/nltk/stem/api.py
${PYSITELIB}/nltk/stem/api.pyc
${PYSITELIB}/nltk/stem/api.pyo
${PYSITELIB}/nltk/stem/arlstem.py
${PYSITELIB}/nltk/stem/arlstem.pyc
${PYSITELIB}/nltk/stem/arlstem.pyo
${PYSITELIB}/nltk/stem/arlstem2.py
${PYSITELIB}/nltk/stem/arlstem2.pyc
${PYSITELIB}/nltk/stem/arlstem2.pyo
${PYSITELIB}/nltk/stem/cistem.py
${PYSITELIB}/nltk/stem/cistem.pyc
${PYSITELIB}/nltk/stem/cistem.pyo
${PYSITELIB}/nltk/stem/isri.py
${PYSITELIB}/nltk/stem/isri.pyc
${PYSITELIB}/nltk/stem/isri.pyo
${PYSITELIB}/nltk/stem/lancaster.py
${PYSITELIB}/nltk/stem/lancaster.pyc
${PYSITELIB}/nltk/stem/lancaster.pyo
${PYSITELIB}/nltk/stem/porter.py
${PYSITELIB}/nltk/stem/porter.pyc
${PYSITELIB}/nltk/stem/porter.pyo
${PYSITELIB}/nltk/stem/regexp.py
${PYSITELIB}/nltk/stem/regexp.pyc
${PYSITELIB}/nltk/stem/regexp.pyo
${PYSITELIB}/nltk/stem/rslp.py
${PYSITELIB}/nltk/stem/rslp.pyc
${PYSITELIB}/nltk/stem/rslp.pyo
${PYSITELIB}/nltk/stem/snowball.py
${PYSITELIB}/nltk/stem/snowball.pyc
${PYSITELIB}/nltk/stem/snowball.pyo
${PYSITELIB}/nltk/stem/util.py
${PYSITELIB}/nltk/stem/util.pyc
${PYSITELIB}/nltk/stem/util.pyo
${PYSITELIB}/nltk/stem/wordnet.py
${PYSITELIB}/nltk/stem/wordnet.pyc
${PYSITELIB}/nltk/stem/wordnet.pyo
${PYSITELIB}/nltk/tag/__init__.py
${PYSITELIB}/nltk/tag/__init__.pyc
${PYSITELIB}/nltk/tag/__init__.pyo
${PYSITELIB}/nltk/tag/api.py
${PYSITELIB}/nltk/tag/api.pyc
${PYSITELIB}/nltk/tag/api.pyo
${PYSITELIB}/nltk/tag/brill.py
${PYSITELIB}/nltk/tag/brill.pyc
${PYSITELIB}/nltk/tag/brill.pyo
${PYSITELIB}/nltk/tag/brill_trainer.py
${PYSITELIB}/nltk/tag/brill_trainer.pyc
${PYSITELIB}/nltk/tag/brill_trainer.pyo
${PYSITELIB}/nltk/tag/crf.py
${PYSITELIB}/nltk/tag/crf.pyc
${PYSITELIB}/nltk/tag/crf.pyo
${PYSITELIB}/nltk/tag/hmm.py
${PYSITELIB}/nltk/tag/hmm.pyc
${PYSITELIB}/nltk/tag/hmm.pyo
${PYSITELIB}/nltk/tag/hunpos.py
${PYSITELIB}/nltk/tag/hunpos.pyc
${PYSITELIB}/nltk/tag/hunpos.pyo
${PYSITELIB}/nltk/tag/mapping.py
${PYSITELIB}/nltk/tag/mapping.pyc
${PYSITELIB}/nltk/tag/mapping.pyo
${PYSITELIB}/nltk/tag/perceptron.py
${PYSITELIB}/nltk/tag/perceptron.pyc
${PYSITELIB}/nltk/tag/perceptron.pyo
${PYSITELIB}/nltk/tag/senna.py
${PYSITELIB}/nltk/tag/senna.pyc
${PYSITELIB}/nltk/tag/senna.pyo
${PYSITELIB}/nltk/tag/sequential.py
${PYSITELIB}/nltk/tag/sequential.pyc
${PYSITELIB}/nltk/tag/sequential.pyo
${PYSITELIB}/nltk/tag/stanford.py
${PYSITELIB}/nltk/tag/stanford.pyc
${PYSITELIB}/nltk/tag/stanford.pyo
${PYSITELIB}/nltk/tag/tnt.py
${PYSITELIB}/nltk/tag/tnt.pyc
${PYSITELIB}/nltk/tag/tnt.pyo
${PYSITELIB}/nltk/tag/util.py
${PYSITELIB}/nltk/tag/util.pyc
${PYSITELIB}/nltk/tag/util.pyo
${PYSITELIB}/nltk/tbl/__init__.py
${PYSITELIB}/nltk/tbl/__init__.pyc
${PYSITELIB}/nltk/tbl/__init__.pyo
${PYSITELIB}/nltk/tbl/api.py
${PYSITELIB}/nltk/tbl/api.pyc
${PYSITELIB}/nltk/tbl/api.pyo
${PYSITELIB}/nltk/tbl/demo.py
${PYSITELIB}/nltk/tbl/demo.pyc
${PYSITELIB}/nltk/tbl/demo.pyo
${PYSITELIB}/nltk/tbl/erroranalysis.py
${PYSITELIB}/nltk/tbl/erroranalysis.pyc
${PYSITELIB}/nltk/tbl/erroranalysis.pyo
${PYSITELIB}/nltk/tbl/feature.py
${PYSITELIB}/nltk/tbl/feature.pyc
${PYSITELIB}/nltk/tbl/feature.pyo
${PYSITELIB}/nltk/tbl/rule.py
${PYSITELIB}/nltk/tbl/rule.pyc
${PYSITELIB}/nltk/tbl/rule.pyo
${PYSITELIB}/nltk/tbl/template.py
${PYSITELIB}/nltk/tbl/template.pyc
${PYSITELIB}/nltk/tbl/template.pyo
${PYSITELIB}/nltk/test/__init__.py
${PYSITELIB}/nltk/test/__init__.pyc
${PYSITELIB}/nltk/test/__init__.pyo
${PYSITELIB}/nltk/test/all.py
${PYSITELIB}/nltk/test/all.pyc
${PYSITELIB}/nltk/test/all.pyo
${PYSITELIB}/nltk/test/bleu.doctest
${PYSITELIB}/nltk/test/bnc.doctest
${PYSITELIB}/nltk/test/ccg.doctest
${PYSITELIB}/nltk/test/ccg_semantics.doctest
${PYSITELIB}/nltk/test/chat80.doctest
${PYSITELIB}/nltk/test/childes.doctest
${PYSITELIB}/nltk/test/childes_fixt.py
${PYSITELIB}/nltk/test/childes_fixt.pyc
${PYSITELIB}/nltk/test/childes_fixt.pyo
${PYSITELIB}/nltk/test/chunk.doctest
${PYSITELIB}/nltk/test/classify.doctest
${PYSITELIB}/nltk/test/classify_fixt.py
${PYSITELIB}/nltk/test/classify_fixt.pyc
${PYSITELIB}/nltk/test/classify_fixt.pyo
${PYSITELIB}/nltk/test/collections.doctest
${PYSITELIB}/nltk/test/collocations.doctest
${PYSITELIB}/nltk/test/concordance.doctest
${PYSITELIB}/nltk/test/conftest.py
${PYSITELIB}/nltk/test/conftest.pyc
${PYSITELIB}/nltk/test/conftest.pyo
${PYSITELIB}/nltk/test/corpus.doctest
${PYSITELIB}/nltk/test/crubadan.doctest
${PYSITELIB}/nltk/test/data.doctest
${PYSITELIB}/nltk/test/dependency.doctest
${PYSITELIB}/nltk/test/discourse.doctest
${PYSITELIB}/nltk/test/drt.doctest
${PYSITELIB}/nltk/test/featgram.doctest
${PYSITELIB}/nltk/test/featstruct.doctest
${PYSITELIB}/nltk/test/framenet.doctest
${PYSITELIB}/nltk/test/generate.doctest
${PYSITELIB}/nltk/test/gensim.doctest
${PYSITELIB}/nltk/test/gensim_fixt.py
${PYSITELIB}/nltk/test/gensim_fixt.pyc
${PYSITELIB}/nltk/test/gensim_fixt.pyo
${PYSITELIB}/nltk/test/gluesemantics.doctest
${PYSITELIB}/nltk/test/gluesemantics_malt.doctest
${PYSITELIB}/nltk/test/gluesemantics_malt_fixt.py
${PYSITELIB}/nltk/test/gluesemantics_malt_fixt.pyc
${PYSITELIB}/nltk/test/gluesemantics_malt_fixt.pyo
${PYSITELIB}/nltk/test/grammar.doctest
${PYSITELIB}/nltk/test/grammartestsuites.doctest
${PYSITELIB}/nltk/test/index.doctest
${PYSITELIB}/nltk/test/inference.doctest
${PYSITELIB}/nltk/test/internals.doctest
${PYSITELIB}/nltk/test/japanese.doctest
${PYSITELIB}/nltk/test/lm.doctest
${PYSITELIB}/nltk/test/logic.doctest
${PYSITELIB}/nltk/test/meteor.doctest
${PYSITELIB}/nltk/test/metrics.doctest
${PYSITELIB}/nltk/test/misc.doctest
${PYSITELIB}/nltk/test/nonmonotonic.doctest
${PYSITELIB}/nltk/test/paice.doctest
${PYSITELIB}/nltk/test/parse.doctest
${PYSITELIB}/nltk/test/portuguese_en.doctest
${PYSITELIB}/nltk/test/portuguese_en_fixt.py
${PYSITELIB}/nltk/test/portuguese_en_fixt.pyc
${PYSITELIB}/nltk/test/portuguese_en_fixt.pyo
${PYSITELIB}/nltk/test/probability.doctest
${PYSITELIB}/nltk/test/probability_fixt.py
${PYSITELIB}/nltk/test/probability_fixt.pyc
${PYSITELIB}/nltk/test/probability_fixt.pyo
${PYSITELIB}/nltk/test/propbank.doctest
${PYSITELIB}/nltk/test/relextract.doctest
${PYSITELIB}/nltk/test/resolution.doctest
${PYSITELIB}/nltk/test/semantics.doctest
${PYSITELIB}/nltk/test/sentiment.doctest
${PYSITELIB}/nltk/test/sentiwordnet.doctest
${PYSITELIB}/nltk/test/setup_fixt.py
${PYSITELIB}/nltk/test/setup_fixt.pyc
${PYSITELIB}/nltk/test/setup_fixt.pyo
${PYSITELIB}/nltk/test/simple.doctest
${PYSITELIB}/nltk/test/stem.doctest
${PYSITELIB}/nltk/test/tag.doctest
${PYSITELIB}/nltk/test/tokenize.doctest
${PYSITELIB}/nltk/test/toolbox.doctest
${PYSITELIB}/nltk/test/translate.doctest
${PYSITELIB}/nltk/test/tree.doctest
${PYSITELIB}/nltk/test/treeprettyprinter.doctest
${PYSITELIB}/nltk/test/treetransforms.doctest
${PYSITELIB}/nltk/test/unit/__init__.py
${PYSITELIB}/nltk/test/unit/__init__.pyc
${PYSITELIB}/nltk/test/unit/__init__.pyo
${PYSITELIB}/nltk/test/unit/lm/__init__.py
${PYSITELIB}/nltk/test/unit/lm/__init__.pyc
${PYSITELIB}/nltk/test/unit/lm/__init__.pyo
${PYSITELIB}/nltk/test/unit/lm/test_counter.py
${PYSITELIB}/nltk/test/unit/lm/test_counter.pyc
${PYSITELIB}/nltk/test/unit/lm/test_counter.pyo
${PYSITELIB}/nltk/test/unit/lm/test_models.py
${PYSITELIB}/nltk/test/unit/lm/test_models.pyc
${PYSITELIB}/nltk/test/unit/lm/test_models.pyo
${PYSITELIB}/nltk/test/unit/lm/test_preprocessing.py
${PYSITELIB}/nltk/test/unit/lm/test_preprocessing.pyc
${PYSITELIB}/nltk/test/unit/lm/test_preprocessing.pyo
${PYSITELIB}/nltk/test/unit/lm/test_vocabulary.py
${PYSITELIB}/nltk/test/unit/lm/test_vocabulary.pyc
${PYSITELIB}/nltk/test/unit/lm/test_vocabulary.pyo
${PYSITELIB}/nltk/test/unit/test_aline.py
${PYSITELIB}/nltk/test/unit/test_aline.pyc
${PYSITELIB}/nltk/test/unit/test_aline.pyo
${PYSITELIB}/nltk/test/unit/test_bllip.py
${PYSITELIB}/nltk/test/unit/test_bllip.pyc
${PYSITELIB}/nltk/test/unit/test_bllip.pyo
${PYSITELIB}/nltk/test/unit/test_brill.py
${PYSITELIB}/nltk/test/unit/test_brill.pyc
${PYSITELIB}/nltk/test/unit/test_brill.pyo
${PYSITELIB}/nltk/test/unit/test_cfd_mutation.py
${PYSITELIB}/nltk/test/unit/test_cfd_mutation.pyc
${PYSITELIB}/nltk/test/unit/test_cfd_mutation.pyo
${PYSITELIB}/nltk/test/unit/test_cfg2chomsky.py
${PYSITELIB}/nltk/test/unit/test_cfg2chomsky.pyc
${PYSITELIB}/nltk/test/unit/test_cfg2chomsky.pyo
${PYSITELIB}/nltk/test/unit/test_chunk.py
${PYSITELIB}/nltk/test/unit/test_chunk.pyc
${PYSITELIB}/nltk/test/unit/test_chunk.pyo
${PYSITELIB}/nltk/test/unit/test_classify.py
${PYSITELIB}/nltk/test/unit/test_classify.pyc
${PYSITELIB}/nltk/test/unit/test_classify.pyo
${PYSITELIB}/nltk/test/unit/test_collocations.py
${PYSITELIB}/nltk/test/unit/test_collocations.pyc
${PYSITELIB}/nltk/test/unit/test_collocations.pyo
${PYSITELIB}/nltk/test/unit/test_concordance.py
${PYSITELIB}/nltk/test/unit/test_concordance.pyc
${PYSITELIB}/nltk/test/unit/test_concordance.pyo
${PYSITELIB}/nltk/test/unit/test_corenlp.py
${PYSITELIB}/nltk/test/unit/test_corenlp.pyc
${PYSITELIB}/nltk/test/unit/test_corenlp.pyo
${PYSITELIB}/nltk/test/unit/test_corpora.py
${PYSITELIB}/nltk/test/unit/test_corpora.pyc
${PYSITELIB}/nltk/test/unit/test_corpora.pyo
${PYSITELIB}/nltk/test/unit/test_corpus_views.py
${PYSITELIB}/nltk/test/unit/test_corpus_views.pyc
${PYSITELIB}/nltk/test/unit/test_corpus_views.pyo
${PYSITELIB}/nltk/test/unit/test_data.py
${PYSITELIB}/nltk/test/unit/test_data.pyc
${PYSITELIB}/nltk/test/unit/test_data.pyo
${PYSITELIB}/nltk/test/unit/test_disagreement.py
${PYSITELIB}/nltk/test/unit/test_disagreement.pyc
${PYSITELIB}/nltk/test/unit/test_disagreement.pyo
${PYSITELIB}/nltk/test/unit/test_distance.py
${PYSITELIB}/nltk/test/unit/test_distance.pyc
${PYSITELIB}/nltk/test/unit/test_distance.pyo
${PYSITELIB}/nltk/test/unit/test_downloader.py
${PYSITELIB}/nltk/test/unit/test_downloader.pyc
${PYSITELIB}/nltk/test/unit/test_downloader.pyo
${PYSITELIB}/nltk/test/unit/test_freqdist.py
${PYSITELIB}/nltk/test/unit/test_freqdist.pyc
${PYSITELIB}/nltk/test/unit/test_freqdist.pyo
${PYSITELIB}/nltk/test/unit/test_hmm.py
${PYSITELIB}/nltk/test/unit/test_hmm.pyc
${PYSITELIB}/nltk/test/unit/test_hmm.pyo
${PYSITELIB}/nltk/test/unit/test_json2csv_corpus.py
${PYSITELIB}/nltk/test/unit/test_json2csv_corpus.pyc
${PYSITELIB}/nltk/test/unit/test_json2csv_corpus.pyo
${PYSITELIB}/nltk/test/unit/test_json_serialization.py
${PYSITELIB}/nltk/test/unit/test_json_serialization.pyc
${PYSITELIB}/nltk/test/unit/test_json_serialization.pyo
${PYSITELIB}/nltk/test/unit/test_metrics.py
${PYSITELIB}/nltk/test/unit/test_metrics.pyc
${PYSITELIB}/nltk/test/unit/test_metrics.pyo
${PYSITELIB}/nltk/test/unit/test_naivebayes.py
${PYSITELIB}/nltk/test/unit/test_naivebayes.pyc
${PYSITELIB}/nltk/test/unit/test_naivebayes.pyo
${PYSITELIB}/nltk/test/unit/test_nombank.py
${PYSITELIB}/nltk/test/unit/test_nombank.pyc
${PYSITELIB}/nltk/test/unit/test_nombank.pyo
${PYSITELIB}/nltk/test/unit/test_pl196x.py
${PYSITELIB}/nltk/test/unit/test_pl196x.pyc
${PYSITELIB}/nltk/test/unit/test_pl196x.pyo
${PYSITELIB}/nltk/test/unit/test_pos_tag.py
${PYSITELIB}/nltk/test/unit/test_pos_tag.pyc
${PYSITELIB}/nltk/test/unit/test_pos_tag.pyo
${PYSITELIB}/nltk/test/unit/test_ribes.py
${PYSITELIB}/nltk/test/unit/test_ribes.pyc
${PYSITELIB}/nltk/test/unit/test_ribes.pyo
${PYSITELIB}/nltk/test/unit/test_rte_classify.py
${PYSITELIB}/nltk/test/unit/test_rte_classify.pyc
${PYSITELIB}/nltk/test/unit/test_rte_classify.pyo
${PYSITELIB}/nltk/test/unit/test_seekable_unicode_stream_reader.py
${PYSITELIB}/nltk/test/unit/test_seekable_unicode_stream_reader.pyc
${PYSITELIB}/nltk/test/unit/test_seekable_unicode_stream_reader.pyo
${PYSITELIB}/nltk/test/unit/test_senna.py
${PYSITELIB}/nltk/test/unit/test_senna.pyc
${PYSITELIB}/nltk/test/unit/test_senna.pyo
${PYSITELIB}/nltk/test/unit/test_stem.py
${PYSITELIB}/nltk/test/unit/test_stem.pyc
${PYSITELIB}/nltk/test/unit/test_stem.pyo
${PYSITELIB}/nltk/test/unit/test_tag.py
${PYSITELIB}/nltk/test/unit/test_tag.pyc
${PYSITELIB}/nltk/test/unit/test_tag.pyo
${PYSITELIB}/nltk/test/unit/test_tgrep.py
${PYSITELIB}/nltk/test/unit/test_tgrep.pyc
${PYSITELIB}/nltk/test/unit/test_tgrep.pyo
${PYSITELIB}/nltk/test/unit/test_tokenize.py
${PYSITELIB}/nltk/test/unit/test_tokenize.pyc
${PYSITELIB}/nltk/test/unit/test_tokenize.pyo
${PYSITELIB}/nltk/test/unit/test_twitter_auth.py
${PYSITELIB}/nltk/test/unit/test_twitter_auth.pyc
${PYSITELIB}/nltk/test/unit/test_twitter_auth.pyo
${PYSITELIB}/nltk/test/unit/test_util.py
${PYSITELIB}/nltk/test/unit/test_util.pyc
${PYSITELIB}/nltk/test/unit/test_util.pyo
${PYSITELIB}/nltk/test/unit/test_wordnet.py
${PYSITELIB}/nltk/test/unit/test_wordnet.pyc
${PYSITELIB}/nltk/test/unit/test_wordnet.pyo
${PYSITELIB}/nltk/test/unit/translate/__init__.py
${PYSITELIB}/nltk/test/unit/translate/__init__.pyc
${PYSITELIB}/nltk/test/unit/translate/__init__.pyo
${PYSITELIB}/nltk/test/unit/translate/test_bleu.py
${PYSITELIB}/nltk/test/unit/translate/test_bleu.pyc
${PYSITELIB}/nltk/test/unit/translate/test_bleu.pyo
${PYSITELIB}/nltk/test/unit/translate/test_gdfa.py
${PYSITELIB}/nltk/test/unit/translate/test_gdfa.pyc
${PYSITELIB}/nltk/test/unit/translate/test_gdfa.pyo
${PYSITELIB}/nltk/test/unit/translate/test_ibm1.py
${PYSITELIB}/nltk/test/unit/translate/test_ibm1.pyc
${PYSITELIB}/nltk/test/unit/translate/test_ibm1.pyo
${PYSITELIB}/nltk/test/unit/translate/test_ibm2.py
${PYSITELIB}/nltk/test/unit/translate/test_ibm2.pyc
${PYSITELIB}/nltk/test/unit/translate/test_ibm2.pyo
${PYSITELIB}/nltk/test/unit/translate/test_ibm3.py
${PYSITELIB}/nltk/test/unit/translate/test_ibm3.pyc
${PYSITELIB}/nltk/test/unit/translate/test_ibm3.pyo
${PYSITELIB}/nltk/test/unit/translate/test_ibm4.py
${PYSITELIB}/nltk/test/unit/translate/test_ibm4.pyc
${PYSITELIB}/nltk/test/unit/translate/test_ibm4.pyo
${PYSITELIB}/nltk/test/unit/translate/test_ibm5.py
${PYSITELIB}/nltk/test/unit/translate/test_ibm5.pyc
${PYSITELIB}/nltk/test/unit/translate/test_ibm5.pyo
${PYSITELIB}/nltk/test/unit/translate/test_ibm_model.py
${PYSITELIB}/nltk/test/unit/translate/test_ibm_model.pyc
${PYSITELIB}/nltk/test/unit/translate/test_ibm_model.pyo
${PYSITELIB}/nltk/test/unit/translate/test_meteor.py
${PYSITELIB}/nltk/test/unit/translate/test_meteor.pyc
${PYSITELIB}/nltk/test/unit/translate/test_meteor.pyo
${PYSITELIB}/nltk/test/unit/translate/test_nist.py
${PYSITELIB}/nltk/test/unit/translate/test_nist.pyc
${PYSITELIB}/nltk/test/unit/translate/test_nist.pyo
${PYSITELIB}/nltk/test/unit/translate/test_stack_decoder.py
${PYSITELIB}/nltk/test/unit/translate/test_stack_decoder.pyc
${PYSITELIB}/nltk/test/unit/translate/test_stack_decoder.pyo
${PYSITELIB}/nltk/test/util.doctest
${PYSITELIB}/nltk/test/wordnet.doctest
${PYSITELIB}/nltk/test/wordnet_lch.doctest
${PYSITELIB}/nltk/test/wsd.doctest
${PYSITELIB}/nltk/text.py
${PYSITELIB}/nltk/text.pyc
${PYSITELIB}/nltk/text.pyo
${PYSITELIB}/nltk/tgrep.py
${PYSITELIB}/nltk/tgrep.pyc
${PYSITELIB}/nltk/tgrep.pyo
${PYSITELIB}/nltk/tokenize/__init__.py
${PYSITELIB}/nltk/tokenize/__init__.pyc
${PYSITELIB}/nltk/tokenize/__init__.pyo
${PYSITELIB}/nltk/tokenize/api.py
${PYSITELIB}/nltk/tokenize/api.pyc
${PYSITELIB}/nltk/tokenize/api.pyo
${PYSITELIB}/nltk/tokenize/casual.py
${PYSITELIB}/nltk/tokenize/casual.pyc
${PYSITELIB}/nltk/tokenize/casual.pyo
${PYSITELIB}/nltk/tokenize/destructive.py
${PYSITELIB}/nltk/tokenize/destructive.pyc
${PYSITELIB}/nltk/tokenize/destructive.pyo
${PYSITELIB}/nltk/tokenize/legality_principle.py
${PYSITELIB}/nltk/tokenize/legality_principle.pyc
${PYSITELIB}/nltk/tokenize/legality_principle.pyo
${PYSITELIB}/nltk/tokenize/mwe.py
${PYSITELIB}/nltk/tokenize/mwe.pyc
${PYSITELIB}/nltk/tokenize/mwe.pyo
${PYSITELIB}/nltk/tokenize/nist.py
${PYSITELIB}/nltk/tokenize/nist.pyc
${PYSITELIB}/nltk/tokenize/nist.pyo
${PYSITELIB}/nltk/tokenize/punkt.py
${PYSITELIB}/nltk/tokenize/punkt.pyc
${PYSITELIB}/nltk/tokenize/punkt.pyo
${PYSITELIB}/nltk/tokenize/regexp.py
${PYSITELIB}/nltk/tokenize/regexp.pyc
${PYSITELIB}/nltk/tokenize/regexp.pyo
${PYSITELIB}/nltk/tokenize/repp.py
${PYSITELIB}/nltk/tokenize/repp.pyc
${PYSITELIB}/nltk/tokenize/repp.pyo
${PYSITELIB}/nltk/tokenize/sexpr.py
${PYSITELIB}/nltk/tokenize/sexpr.pyc
${PYSITELIB}/nltk/tokenize/sexpr.pyo
${PYSITELIB}/nltk/tokenize/simple.py
${PYSITELIB}/nltk/tokenize/simple.pyc
${PYSITELIB}/nltk/tokenize/simple.pyo
${PYSITELIB}/nltk/tokenize/sonority_sequencing.py
${PYSITELIB}/nltk/tokenize/sonority_sequencing.pyc
${PYSITELIB}/nltk/tokenize/sonority_sequencing.pyo
${PYSITELIB}/nltk/tokenize/stanford.py
${PYSITELIB}/nltk/tokenize/stanford.pyc
${PYSITELIB}/nltk/tokenize/stanford.pyo
${PYSITELIB}/nltk/tokenize/stanford_segmenter.py
${PYSITELIB}/nltk/tokenize/stanford_segmenter.pyc
${PYSITELIB}/nltk/tokenize/stanford_segmenter.pyo
${PYSITELIB}/nltk/tokenize/texttiling.py
${PYSITELIB}/nltk/tokenize/texttiling.pyc
${PYSITELIB}/nltk/tokenize/texttiling.pyo
${PYSITELIB}/nltk/tokenize/toktok.py
${PYSITELIB}/nltk/tokenize/toktok.pyc
${PYSITELIB}/nltk/tokenize/toktok.pyo
${PYSITELIB}/nltk/tokenize/treebank.py
${PYSITELIB}/nltk/tokenize/treebank.pyc
${PYSITELIB}/nltk/tokenize/treebank.pyo
${PYSITELIB}/nltk/tokenize/util.py
${PYSITELIB}/nltk/tokenize/util.pyc
${PYSITELIB}/nltk/tokenize/util.pyo
${PYSITELIB}/nltk/toolbox.py
${PYSITELIB}/nltk/toolbox.pyc
${PYSITELIB}/nltk/toolbox.pyo
${PYSITELIB}/nltk/translate/__init__.py
${PYSITELIB}/nltk/translate/__init__.pyc
${PYSITELIB}/nltk/translate/__init__.pyo
${PYSITELIB}/nltk/translate/api.py
${PYSITELIB}/nltk/translate/api.pyc
${PYSITELIB}/nltk/translate/api.pyo
${PYSITELIB}/nltk/translate/bleu_score.py
${PYSITELIB}/nltk/translate/bleu_score.pyc
${PYSITELIB}/nltk/translate/bleu_score.pyo
${PYSITELIB}/nltk/translate/chrf_score.py
${PYSITELIB}/nltk/translate/chrf_score.pyc
${PYSITELIB}/nltk/translate/chrf_score.pyo
${PYSITELIB}/nltk/translate/gale_church.py
${PYSITELIB}/nltk/translate/gale_church.pyc
${PYSITELIB}/nltk/translate/gale_church.pyo
${PYSITELIB}/nltk/translate/gdfa.py
${PYSITELIB}/nltk/translate/gdfa.pyc
${PYSITELIB}/nltk/translate/gdfa.pyo
${PYSITELIB}/nltk/translate/gleu_score.py
${PYSITELIB}/nltk/translate/gleu_score.pyc
${PYSITELIB}/nltk/translate/gleu_score.pyo
${PYSITELIB}/nltk/translate/ibm1.py
${PYSITELIB}/nltk/translate/ibm1.pyc
${PYSITELIB}/nltk/translate/ibm1.pyo
${PYSITELIB}/nltk/translate/ibm2.py
${PYSITELIB}/nltk/translate/ibm2.pyc
${PYSITELIB}/nltk/translate/ibm2.pyo
${PYSITELIB}/nltk/translate/ibm3.py
${PYSITELIB}/nltk/translate/ibm3.pyc
${PYSITELIB}/nltk/translate/ibm3.pyo
${PYSITELIB}/nltk/translate/ibm4.py
${PYSITELIB}/nltk/translate/ibm4.pyc
${PYSITELIB}/nltk/translate/ibm4.pyo
${PYSITELIB}/nltk/translate/ibm5.py
${PYSITELIB}/nltk/translate/ibm5.pyc
${PYSITELIB}/nltk/translate/ibm5.pyo
${PYSITELIB}/nltk/translate/ibm_model.py
${PYSITELIB}/nltk/translate/ibm_model.pyc
${PYSITELIB}/nltk/translate/ibm_model.pyo
${PYSITELIB}/nltk/translate/meteor_score.py
${PYSITELIB}/nltk/translate/meteor_score.pyc
${PYSITELIB}/nltk/translate/meteor_score.pyo
${PYSITELIB}/nltk/translate/metrics.py
${PYSITELIB}/nltk/translate/metrics.pyc
${PYSITELIB}/nltk/translate/metrics.pyo
${PYSITELIB}/nltk/translate/nist_score.py
${PYSITELIB}/nltk/translate/nist_score.pyc
${PYSITELIB}/nltk/translate/nist_score.pyo
${PYSITELIB}/nltk/translate/phrase_based.py
${PYSITELIB}/nltk/translate/phrase_based.pyc
${PYSITELIB}/nltk/translate/phrase_based.pyo
${PYSITELIB}/nltk/translate/ribes_score.py
${PYSITELIB}/nltk/translate/ribes_score.pyc
${PYSITELIB}/nltk/translate/ribes_score.pyo
${PYSITELIB}/nltk/translate/stack_decoder.py
${PYSITELIB}/nltk/translate/stack_decoder.pyc
${PYSITELIB}/nltk/translate/stack_decoder.pyo
${PYSITELIB}/nltk/tree/__init__.py
${PYSITELIB}/nltk/tree/__init__.pyc
${PYSITELIB}/nltk/tree/__init__.pyo
${PYSITELIB}/nltk/tree/immutable.py
${PYSITELIB}/nltk/tree/immutable.pyc
${PYSITELIB}/nltk/tree/immutable.pyo
${PYSITELIB}/nltk/tree/parented.py
${PYSITELIB}/nltk/tree/parented.pyc
${PYSITELIB}/nltk/tree/parented.pyo
${PYSITELIB}/nltk/tree/parsing.py
${PYSITELIB}/nltk/tree/parsing.pyc
${PYSITELIB}/nltk/tree/parsing.pyo
${PYSITELIB}/nltk/tree/prettyprinter.py
${PYSITELIB}/nltk/tree/prettyprinter.pyc
${PYSITELIB}/nltk/tree/prettyprinter.pyo
${PYSITELIB}/nltk/tree/probabilistic.py
${PYSITELIB}/nltk/tree/probabilistic.pyc
${PYSITELIB}/nltk/tree/probabilistic.pyo
${PYSITELIB}/nltk/tree/transforms.py
${PYSITELIB}/nltk/tree/transforms.pyc
${PYSITELIB}/nltk/tree/transforms.pyo
${PYSITELIB}/nltk/tree/tree.py
${PYSITELIB}/nltk/tree/tree.pyc
${PYSITELIB}/nltk/tree/tree.pyo
${PYSITELIB}/nltk/treeprettyprinter.py
${PYSITELIB}/nltk/treeprettyprinter.pyc
${PYSITELIB}/nltk/treeprettyprinter.pyo
${PYSITELIB}/nltk/treetransforms.py
${PYSITELIB}/nltk/treetransforms.pyc
${PYSITELIB}/nltk/treetransforms.pyo
${PYSITELIB}/nltk/twitter/__init__.py
${PYSITELIB}/nltk/twitter/__init__.pyc
${PYSITELIB}/nltk/twitter/__init__.pyo
${PYSITELIB}/nltk/twitter/api.py
${PYSITELIB}/nltk/twitter/api.pyc
${PYSITELIB}/nltk/twitter/api.pyo
${PYSITELIB}/nltk/twitter/common.py
${PYSITELIB}/nltk/twitter/common.pyc
${PYSITELIB}/nltk/twitter/common.pyo
${PYSITELIB}/nltk/twitter/twitter_demo.py
${PYSITELIB}/nltk/twitter/twitter_demo.pyc
${PYSITELIB}/nltk/twitter/twitter_demo.pyo
${PYSITELIB}/nltk/twitter/twitterclient.py
${PYSITELIB}/nltk/twitter/twitterclient.pyc
${PYSITELIB}/nltk/twitter/twitterclient.pyo
${PYSITELIB}/nltk/twitter/util.py
${PYSITELIB}/nltk/twitter/util.pyc
${PYSITELIB}/nltk/twitter/util.pyo
${PYSITELIB}/nltk/util.py
${PYSITELIB}/nltk/util.pyc
${PYSITELIB}/nltk/util.pyo
${PYSITELIB}/nltk/wsd.py
${PYSITELIB}/nltk/wsd.pyc
${PYSITELIB}/nltk/wsd.pyo