summaryrefslogtreecommitdiff
path: root/devel/py-mercurial/PLIST
blob: 39b9839225a5a3418a56d2f4e61e902e89a26a34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
@comment $NetBSD: PLIST,v 1.42 2022/07/17 09:51:33 wiz Exp $
bin/hg
${PYSITELIB}/hgdemandimport/__init__.py
${PYSITELIB}/hgdemandimport/__init__.pyc
${PYSITELIB}/hgdemandimport/__init__.pyo
${PYSITELIB}/hgdemandimport/demandimportpy3.py
${PYSITELIB}/hgdemandimport/demandimportpy3.pyc
${PYSITELIB}/hgdemandimport/demandimportpy3.pyo
${PYSITELIB}/hgdemandimport/tracing.py
${PYSITELIB}/hgdemandimport/tracing.pyc
${PYSITELIB}/hgdemandimport/tracing.pyo
${PYSITELIB}/hgext/__init__.py
${PYSITELIB}/hgext/__init__.pyc
${PYSITELIB}/hgext/__init__.pyo
${PYSITELIB}/hgext/absorb.py
${PYSITELIB}/hgext/absorb.pyc
${PYSITELIB}/hgext/absorb.pyo
${PYSITELIB}/hgext/acl.py
${PYSITELIB}/hgext/acl.pyc
${PYSITELIB}/hgext/acl.pyo
${PYSITELIB}/hgext/amend.py
${PYSITELIB}/hgext/amend.pyc
${PYSITELIB}/hgext/amend.pyo
${PYSITELIB}/hgext/automv.py
${PYSITELIB}/hgext/automv.pyc
${PYSITELIB}/hgext/automv.pyo
${PYSITELIB}/hgext/beautifygraph.py
${PYSITELIB}/hgext/beautifygraph.pyc
${PYSITELIB}/hgext/beautifygraph.pyo
${PYSITELIB}/hgext/blackbox.py
${PYSITELIB}/hgext/blackbox.pyc
${PYSITELIB}/hgext/blackbox.pyo
${PYSITELIB}/hgext/bookflow.py
${PYSITELIB}/hgext/bookflow.pyc
${PYSITELIB}/hgext/bookflow.pyo
${PYSITELIB}/hgext/bugzilla.py
${PYSITELIB}/hgext/bugzilla.pyc
${PYSITELIB}/hgext/bugzilla.pyo
${PYSITELIB}/hgext/censor.py
${PYSITELIB}/hgext/censor.pyc
${PYSITELIB}/hgext/censor.pyo
${PYSITELIB}/hgext/children.py
${PYSITELIB}/hgext/children.pyc
${PYSITELIB}/hgext/children.pyo
${PYSITELIB}/hgext/churn.py
${PYSITELIB}/hgext/churn.pyc
${PYSITELIB}/hgext/churn.pyo
${PYSITELIB}/hgext/clonebundles.py
${PYSITELIB}/hgext/clonebundles.pyc
${PYSITELIB}/hgext/clonebundles.pyo
${PYSITELIB}/hgext/closehead.py
${PYSITELIB}/hgext/closehead.pyc
${PYSITELIB}/hgext/closehead.pyo
${PYSITELIB}/hgext/commitextras.py
${PYSITELIB}/hgext/commitextras.pyc
${PYSITELIB}/hgext/commitextras.pyo
${PYSITELIB}/hgext/convert/__init__.py
${PYSITELIB}/hgext/convert/__init__.pyc
${PYSITELIB}/hgext/convert/__init__.pyo
${PYSITELIB}/hgext/convert/bzr.py
${PYSITELIB}/hgext/convert/bzr.pyc
${PYSITELIB}/hgext/convert/bzr.pyo
${PYSITELIB}/hgext/convert/common.py
${PYSITELIB}/hgext/convert/common.pyc
${PYSITELIB}/hgext/convert/common.pyo
${PYSITELIB}/hgext/convert/convcmd.py
${PYSITELIB}/hgext/convert/convcmd.pyc
${PYSITELIB}/hgext/convert/convcmd.pyo
${PYSITELIB}/hgext/convert/cvs.py
${PYSITELIB}/hgext/convert/cvs.pyc
${PYSITELIB}/hgext/convert/cvs.pyo
${PYSITELIB}/hgext/convert/cvsps.py
${PYSITELIB}/hgext/convert/cvsps.pyc
${PYSITELIB}/hgext/convert/cvsps.pyo
${PYSITELIB}/hgext/convert/darcs.py
${PYSITELIB}/hgext/convert/darcs.pyc
${PYSITELIB}/hgext/convert/darcs.pyo
${PYSITELIB}/hgext/convert/filemap.py
${PYSITELIB}/hgext/convert/filemap.pyc
${PYSITELIB}/hgext/convert/filemap.pyo
${PYSITELIB}/hgext/convert/git.py
${PYSITELIB}/hgext/convert/git.pyc
${PYSITELIB}/hgext/convert/git.pyo
${PYSITELIB}/hgext/convert/gnuarch.py
${PYSITELIB}/hgext/convert/gnuarch.pyc
${PYSITELIB}/hgext/convert/gnuarch.pyo
${PYSITELIB}/hgext/convert/hg.py
${PYSITELIB}/hgext/convert/hg.pyc
${PYSITELIB}/hgext/convert/hg.pyo
${PYSITELIB}/hgext/convert/monotone.py
${PYSITELIB}/hgext/convert/monotone.pyc
${PYSITELIB}/hgext/convert/monotone.pyo
${PYSITELIB}/hgext/convert/p4.py
${PYSITELIB}/hgext/convert/p4.pyc
${PYSITELIB}/hgext/convert/p4.pyo
${PYSITELIB}/hgext/convert/subversion.py
${PYSITELIB}/hgext/convert/subversion.pyc
${PYSITELIB}/hgext/convert/subversion.pyo
${PYSITELIB}/hgext/convert/transport.py
${PYSITELIB}/hgext/convert/transport.pyc
${PYSITELIB}/hgext/convert/transport.pyo
${PYSITELIB}/hgext/eol.py
${PYSITELIB}/hgext/eol.pyc
${PYSITELIB}/hgext/eol.pyo
${PYSITELIB}/hgext/extdiff.py
${PYSITELIB}/hgext/extdiff.pyc
${PYSITELIB}/hgext/extdiff.pyo
${PYSITELIB}/hgext/factotum.py
${PYSITELIB}/hgext/factotum.pyc
${PYSITELIB}/hgext/factotum.pyo
${PYSITELIB}/hgext/fastannotate/__init__.py
${PYSITELIB}/hgext/fastannotate/__init__.pyc
${PYSITELIB}/hgext/fastannotate/__init__.pyo
${PYSITELIB}/hgext/fastannotate/commands.py
${PYSITELIB}/hgext/fastannotate/commands.pyc
${PYSITELIB}/hgext/fastannotate/commands.pyo
${PYSITELIB}/hgext/fastannotate/context.py
${PYSITELIB}/hgext/fastannotate/context.pyc
${PYSITELIB}/hgext/fastannotate/context.pyo
${PYSITELIB}/hgext/fastannotate/error.py
${PYSITELIB}/hgext/fastannotate/error.pyc
${PYSITELIB}/hgext/fastannotate/error.pyo
${PYSITELIB}/hgext/fastannotate/formatter.py
${PYSITELIB}/hgext/fastannotate/formatter.pyc
${PYSITELIB}/hgext/fastannotate/formatter.pyo
${PYSITELIB}/hgext/fastannotate/protocol.py
${PYSITELIB}/hgext/fastannotate/protocol.pyc
${PYSITELIB}/hgext/fastannotate/protocol.pyo
${PYSITELIB}/hgext/fastannotate/revmap.py
${PYSITELIB}/hgext/fastannotate/revmap.pyc
${PYSITELIB}/hgext/fastannotate/revmap.pyo
${PYSITELIB}/hgext/fastannotate/support.py
${PYSITELIB}/hgext/fastannotate/support.pyc
${PYSITELIB}/hgext/fastannotate/support.pyo
${PYSITELIB}/hgext/fastexport.py
${PYSITELIB}/hgext/fastexport.pyc
${PYSITELIB}/hgext/fastexport.pyo
${PYSITELIB}/hgext/fetch.py
${PYSITELIB}/hgext/fetch.pyc
${PYSITELIB}/hgext/fetch.pyo
${PYSITELIB}/hgext/fix.py
${PYSITELIB}/hgext/fix.pyc
${PYSITELIB}/hgext/fix.pyo
${PYSITELIB}/hgext/fsmonitor/__init__.py
${PYSITELIB}/hgext/fsmonitor/__init__.pyc
${PYSITELIB}/hgext/fsmonitor/__init__.pyo
${PYSITELIB}/hgext/fsmonitor/pywatchman/__init__.py
${PYSITELIB}/hgext/fsmonitor/pywatchman/__init__.pyc
${PYSITELIB}/hgext/fsmonitor/pywatchman/__init__.pyo
${PYSITELIB}/hgext/fsmonitor/pywatchman/bser.so
${PYSITELIB}/hgext/fsmonitor/pywatchman/capabilities.py
${PYSITELIB}/hgext/fsmonitor/pywatchman/capabilities.pyc
${PYSITELIB}/hgext/fsmonitor/pywatchman/capabilities.pyo
${PYSITELIB}/hgext/fsmonitor/pywatchman/compat.py
${PYSITELIB}/hgext/fsmonitor/pywatchman/compat.pyc
${PYSITELIB}/hgext/fsmonitor/pywatchman/compat.pyo
${PYSITELIB}/hgext/fsmonitor/pywatchman/encoding.py
${PYSITELIB}/hgext/fsmonitor/pywatchman/encoding.pyc
${PYSITELIB}/hgext/fsmonitor/pywatchman/encoding.pyo
${PYSITELIB}/hgext/fsmonitor/pywatchman/load.py
${PYSITELIB}/hgext/fsmonitor/pywatchman/load.pyc
${PYSITELIB}/hgext/fsmonitor/pywatchman/load.pyo
${PYSITELIB}/hgext/fsmonitor/pywatchman/pybser.py
${PYSITELIB}/hgext/fsmonitor/pywatchman/pybser.pyc
${PYSITELIB}/hgext/fsmonitor/pywatchman/pybser.pyo
${PYSITELIB}/hgext/fsmonitor/state.py
${PYSITELIB}/hgext/fsmonitor/state.pyc
${PYSITELIB}/hgext/fsmonitor/state.pyo
${PYSITELIB}/hgext/fsmonitor/watchmanclient.py
${PYSITELIB}/hgext/fsmonitor/watchmanclient.pyc
${PYSITELIB}/hgext/fsmonitor/watchmanclient.pyo
${PYSITELIB}/hgext/git/__init__.py
${PYSITELIB}/hgext/git/__init__.pyc
${PYSITELIB}/hgext/git/__init__.pyo
${PYSITELIB}/hgext/git/dirstate.py
${PYSITELIB}/hgext/git/dirstate.pyc
${PYSITELIB}/hgext/git/dirstate.pyo
${PYSITELIB}/hgext/git/gitlog.py
${PYSITELIB}/hgext/git/gitlog.pyc
${PYSITELIB}/hgext/git/gitlog.pyo
${PYSITELIB}/hgext/git/gitutil.py
${PYSITELIB}/hgext/git/gitutil.pyc
${PYSITELIB}/hgext/git/gitutil.pyo
${PYSITELIB}/hgext/git/index.py
${PYSITELIB}/hgext/git/index.pyc
${PYSITELIB}/hgext/git/index.pyo
${PYSITELIB}/hgext/git/manifest.py
${PYSITELIB}/hgext/git/manifest.pyc
${PYSITELIB}/hgext/git/manifest.pyo
${PYSITELIB}/hgext/githelp.py
${PYSITELIB}/hgext/githelp.pyc
${PYSITELIB}/hgext/githelp.pyo
${PYSITELIB}/hgext/gpg.py
${PYSITELIB}/hgext/gpg.pyc
${PYSITELIB}/hgext/gpg.pyo
${PYSITELIB}/hgext/graphlog.py
${PYSITELIB}/hgext/graphlog.pyc
${PYSITELIB}/hgext/graphlog.pyo
${PYSITELIB}/hgext/hgk.py
${PYSITELIB}/hgext/hgk.pyc
${PYSITELIB}/hgext/hgk.pyo
${PYSITELIB}/hgext/highlight/__init__.py
${PYSITELIB}/hgext/highlight/__init__.pyc
${PYSITELIB}/hgext/highlight/__init__.pyo
${PYSITELIB}/hgext/highlight/highlight.py
${PYSITELIB}/hgext/highlight/highlight.pyc
${PYSITELIB}/hgext/highlight/highlight.pyo
${PYSITELIB}/hgext/histedit.py
${PYSITELIB}/hgext/histedit.pyc
${PYSITELIB}/hgext/histedit.pyo
${PYSITELIB}/hgext/hooklib/__init__.py
${PYSITELIB}/hgext/hooklib/__init__.pyc
${PYSITELIB}/hgext/hooklib/__init__.pyo
${PYSITELIB}/hgext/hooklib/changeset_obsoleted.py
${PYSITELIB}/hgext/hooklib/changeset_obsoleted.pyc
${PYSITELIB}/hgext/hooklib/changeset_obsoleted.pyo
${PYSITELIB}/hgext/hooklib/changeset_published.py
${PYSITELIB}/hgext/hooklib/changeset_published.pyc
${PYSITELIB}/hgext/hooklib/changeset_published.pyo
${PYSITELIB}/hgext/hooklib/enforce_draft_commits.py
${PYSITELIB}/hgext/hooklib/enforce_draft_commits.pyc
${PYSITELIB}/hgext/hooklib/enforce_draft_commits.pyo
${PYSITELIB}/hgext/hooklib/reject_merge_commits.py
${PYSITELIB}/hgext/hooklib/reject_merge_commits.pyc
${PYSITELIB}/hgext/hooklib/reject_merge_commits.pyo
${PYSITELIB}/hgext/hooklib/reject_new_heads.py
${PYSITELIB}/hgext/hooklib/reject_new_heads.pyc
${PYSITELIB}/hgext/hooklib/reject_new_heads.pyo
${PYSITELIB}/hgext/infinitepush/__init__.py
${PYSITELIB}/hgext/infinitepush/__init__.pyc
${PYSITELIB}/hgext/infinitepush/__init__.pyo
${PYSITELIB}/hgext/infinitepush/bundleparts.py
${PYSITELIB}/hgext/infinitepush/bundleparts.pyc
${PYSITELIB}/hgext/infinitepush/bundleparts.pyo
${PYSITELIB}/hgext/infinitepush/common.py
${PYSITELIB}/hgext/infinitepush/common.pyc
${PYSITELIB}/hgext/infinitepush/common.pyo
${PYSITELIB}/hgext/infinitepush/fileindexapi.py
${PYSITELIB}/hgext/infinitepush/fileindexapi.pyc
${PYSITELIB}/hgext/infinitepush/fileindexapi.pyo
${PYSITELIB}/hgext/infinitepush/indexapi.py
${PYSITELIB}/hgext/infinitepush/indexapi.pyc
${PYSITELIB}/hgext/infinitepush/indexapi.pyo
${PYSITELIB}/hgext/infinitepush/sqlindexapi.py
${PYSITELIB}/hgext/infinitepush/sqlindexapi.pyc
${PYSITELIB}/hgext/infinitepush/sqlindexapi.pyo
${PYSITELIB}/hgext/infinitepush/store.py
${PYSITELIB}/hgext/infinitepush/store.pyc
${PYSITELIB}/hgext/infinitepush/store.pyo
${PYSITELIB}/hgext/journal.py
${PYSITELIB}/hgext/journal.pyc
${PYSITELIB}/hgext/journal.pyo
${PYSITELIB}/hgext/keyword.py
${PYSITELIB}/hgext/keyword.pyc
${PYSITELIB}/hgext/keyword.pyo
${PYSITELIB}/hgext/largefiles/__init__.py
${PYSITELIB}/hgext/largefiles/__init__.pyc
${PYSITELIB}/hgext/largefiles/__init__.pyo
${PYSITELIB}/hgext/largefiles/basestore.py
${PYSITELIB}/hgext/largefiles/basestore.pyc
${PYSITELIB}/hgext/largefiles/basestore.pyo
${PYSITELIB}/hgext/largefiles/lfcommands.py
${PYSITELIB}/hgext/largefiles/lfcommands.pyc
${PYSITELIB}/hgext/largefiles/lfcommands.pyo
${PYSITELIB}/hgext/largefiles/lfutil.py
${PYSITELIB}/hgext/largefiles/lfutil.pyc
${PYSITELIB}/hgext/largefiles/lfutil.pyo
${PYSITELIB}/hgext/largefiles/localstore.py
${PYSITELIB}/hgext/largefiles/localstore.pyc
${PYSITELIB}/hgext/largefiles/localstore.pyo
${PYSITELIB}/hgext/largefiles/overrides.py
${PYSITELIB}/hgext/largefiles/overrides.pyc
${PYSITELIB}/hgext/largefiles/overrides.pyo
${PYSITELIB}/hgext/largefiles/proto.py
${PYSITELIB}/hgext/largefiles/proto.pyc
${PYSITELIB}/hgext/largefiles/proto.pyo
${PYSITELIB}/hgext/largefiles/remotestore.py
${PYSITELIB}/hgext/largefiles/remotestore.pyc
${PYSITELIB}/hgext/largefiles/remotestore.pyo
${PYSITELIB}/hgext/largefiles/reposetup.py
${PYSITELIB}/hgext/largefiles/reposetup.pyc
${PYSITELIB}/hgext/largefiles/reposetup.pyo
${PYSITELIB}/hgext/largefiles/storefactory.py
${PYSITELIB}/hgext/largefiles/storefactory.pyc
${PYSITELIB}/hgext/largefiles/storefactory.pyo
${PYSITELIB}/hgext/largefiles/wirestore.py
${PYSITELIB}/hgext/largefiles/wirestore.pyc
${PYSITELIB}/hgext/largefiles/wirestore.pyo
${PYSITELIB}/hgext/lfs/__init__.py
${PYSITELIB}/hgext/lfs/__init__.pyc
${PYSITELIB}/hgext/lfs/__init__.pyo
${PYSITELIB}/hgext/lfs/blobstore.py
${PYSITELIB}/hgext/lfs/blobstore.pyc
${PYSITELIB}/hgext/lfs/blobstore.pyo
${PYSITELIB}/hgext/lfs/pointer.py
${PYSITELIB}/hgext/lfs/pointer.pyc
${PYSITELIB}/hgext/lfs/pointer.pyo
${PYSITELIB}/hgext/lfs/wireprotolfsserver.py
${PYSITELIB}/hgext/lfs/wireprotolfsserver.pyc
${PYSITELIB}/hgext/lfs/wireprotolfsserver.pyo
${PYSITELIB}/hgext/lfs/wrapper.py
${PYSITELIB}/hgext/lfs/wrapper.pyc
${PYSITELIB}/hgext/lfs/wrapper.pyo
${PYSITELIB}/hgext/logtoprocess.py
${PYSITELIB}/hgext/logtoprocess.pyc
${PYSITELIB}/hgext/logtoprocess.pyo
${PYSITELIB}/hgext/mq.py
${PYSITELIB}/hgext/mq.pyc
${PYSITELIB}/hgext/mq.pyo
${PYSITELIB}/hgext/narrow/__init__.py
${PYSITELIB}/hgext/narrow/__init__.pyc
${PYSITELIB}/hgext/narrow/__init__.pyo
${PYSITELIB}/hgext/narrow/narrowbundle2.py
${PYSITELIB}/hgext/narrow/narrowbundle2.pyc
${PYSITELIB}/hgext/narrow/narrowbundle2.pyo
${PYSITELIB}/hgext/narrow/narrowcommands.py
${PYSITELIB}/hgext/narrow/narrowcommands.pyc
${PYSITELIB}/hgext/narrow/narrowcommands.pyo
${PYSITELIB}/hgext/narrow/narrowdirstate.py
${PYSITELIB}/hgext/narrow/narrowdirstate.pyc
${PYSITELIB}/hgext/narrow/narrowdirstate.pyo
${PYSITELIB}/hgext/narrow/narrowrepo.py
${PYSITELIB}/hgext/narrow/narrowrepo.pyc
${PYSITELIB}/hgext/narrow/narrowrepo.pyo
${PYSITELIB}/hgext/narrow/narrowtemplates.py
${PYSITELIB}/hgext/narrow/narrowtemplates.pyc
${PYSITELIB}/hgext/narrow/narrowtemplates.pyo
${PYSITELIB}/hgext/narrow/narrowwirepeer.py
${PYSITELIB}/hgext/narrow/narrowwirepeer.pyc
${PYSITELIB}/hgext/narrow/narrowwirepeer.pyo
${PYSITELIB}/hgext/notify.py
${PYSITELIB}/hgext/notify.pyc
${PYSITELIB}/hgext/notify.pyo
${PYSITELIB}/hgext/pager.py
${PYSITELIB}/hgext/pager.pyc
${PYSITELIB}/hgext/pager.pyo
${PYSITELIB}/hgext/patchbomb.py
${PYSITELIB}/hgext/patchbomb.pyc
${PYSITELIB}/hgext/patchbomb.pyo
${PYSITELIB}/hgext/phabricator.py
${PYSITELIB}/hgext/phabricator.pyc
${PYSITELIB}/hgext/phabricator.pyo
${PYSITELIB}/hgext/purge.py
${PYSITELIB}/hgext/purge.pyc
${PYSITELIB}/hgext/purge.pyo
${PYSITELIB}/hgext/rebase.py
${PYSITELIB}/hgext/rebase.pyc
${PYSITELIB}/hgext/rebase.pyo
${PYSITELIB}/hgext/record.py
${PYSITELIB}/hgext/record.pyc
${PYSITELIB}/hgext/record.pyo
${PYSITELIB}/hgext/releasenotes.py
${PYSITELIB}/hgext/releasenotes.pyc
${PYSITELIB}/hgext/releasenotes.pyo
${PYSITELIB}/hgext/relink.py
${PYSITELIB}/hgext/relink.pyc
${PYSITELIB}/hgext/relink.pyo
${PYSITELIB}/hgext/remotefilelog/__init__.py
${PYSITELIB}/hgext/remotefilelog/__init__.pyc
${PYSITELIB}/hgext/remotefilelog/__init__.pyo
${PYSITELIB}/hgext/remotefilelog/basepack.py
${PYSITELIB}/hgext/remotefilelog/basepack.pyc
${PYSITELIB}/hgext/remotefilelog/basepack.pyo
${PYSITELIB}/hgext/remotefilelog/basestore.py
${PYSITELIB}/hgext/remotefilelog/basestore.pyc
${PYSITELIB}/hgext/remotefilelog/basestore.pyo
${PYSITELIB}/hgext/remotefilelog/connectionpool.py
${PYSITELIB}/hgext/remotefilelog/connectionpool.pyc
${PYSITELIB}/hgext/remotefilelog/connectionpool.pyo
${PYSITELIB}/hgext/remotefilelog/constants.py
${PYSITELIB}/hgext/remotefilelog/constants.pyc
${PYSITELIB}/hgext/remotefilelog/constants.pyo
${PYSITELIB}/hgext/remotefilelog/contentstore.py
${PYSITELIB}/hgext/remotefilelog/contentstore.pyc
${PYSITELIB}/hgext/remotefilelog/contentstore.pyo
${PYSITELIB}/hgext/remotefilelog/datapack.py
${PYSITELIB}/hgext/remotefilelog/datapack.pyc
${PYSITELIB}/hgext/remotefilelog/datapack.pyo
${PYSITELIB}/hgext/remotefilelog/debugcommands.py
${PYSITELIB}/hgext/remotefilelog/debugcommands.pyc
${PYSITELIB}/hgext/remotefilelog/debugcommands.pyo
${PYSITELIB}/hgext/remotefilelog/fileserverclient.py
${PYSITELIB}/hgext/remotefilelog/fileserverclient.pyc
${PYSITELIB}/hgext/remotefilelog/fileserverclient.pyo
${PYSITELIB}/hgext/remotefilelog/historypack.py
${PYSITELIB}/hgext/remotefilelog/historypack.pyc
${PYSITELIB}/hgext/remotefilelog/historypack.pyo
${PYSITELIB}/hgext/remotefilelog/metadatastore.py
${PYSITELIB}/hgext/remotefilelog/metadatastore.pyc
${PYSITELIB}/hgext/remotefilelog/metadatastore.pyo
${PYSITELIB}/hgext/remotefilelog/remotefilectx.py
${PYSITELIB}/hgext/remotefilelog/remotefilectx.pyc
${PYSITELIB}/hgext/remotefilelog/remotefilectx.pyo
${PYSITELIB}/hgext/remotefilelog/remotefilelog.py
${PYSITELIB}/hgext/remotefilelog/remotefilelog.pyc
${PYSITELIB}/hgext/remotefilelog/remotefilelog.pyo
${PYSITELIB}/hgext/remotefilelog/remotefilelogserver.py
${PYSITELIB}/hgext/remotefilelog/remotefilelogserver.pyc
${PYSITELIB}/hgext/remotefilelog/remotefilelogserver.pyo
${PYSITELIB}/hgext/remotefilelog/repack.py
${PYSITELIB}/hgext/remotefilelog/repack.pyc
${PYSITELIB}/hgext/remotefilelog/repack.pyo
${PYSITELIB}/hgext/remotefilelog/shallowbundle.py
${PYSITELIB}/hgext/remotefilelog/shallowbundle.pyc
${PYSITELIB}/hgext/remotefilelog/shallowbundle.pyo
${PYSITELIB}/hgext/remotefilelog/shallowrepo.py
${PYSITELIB}/hgext/remotefilelog/shallowrepo.pyc
${PYSITELIB}/hgext/remotefilelog/shallowrepo.pyo
${PYSITELIB}/hgext/remotefilelog/shallowstore.py
${PYSITELIB}/hgext/remotefilelog/shallowstore.pyc
${PYSITELIB}/hgext/remotefilelog/shallowstore.pyo
${PYSITELIB}/hgext/remotefilelog/shallowutil.py
${PYSITELIB}/hgext/remotefilelog/shallowutil.pyc
${PYSITELIB}/hgext/remotefilelog/shallowutil.pyo
${PYSITELIB}/hgext/remotefilelog/shallowverifier.py
${PYSITELIB}/hgext/remotefilelog/shallowverifier.pyc
${PYSITELIB}/hgext/remotefilelog/shallowverifier.pyo
${PYSITELIB}/hgext/remotenames.py
${PYSITELIB}/hgext/remotenames.pyc
${PYSITELIB}/hgext/remotenames.pyo
${PYSITELIB}/hgext/schemes.py
${PYSITELIB}/hgext/schemes.pyc
${PYSITELIB}/hgext/schemes.pyo
${PYSITELIB}/hgext/share.py
${PYSITELIB}/hgext/share.pyc
${PYSITELIB}/hgext/share.pyo
${PYSITELIB}/hgext/show.py
${PYSITELIB}/hgext/show.pyc
${PYSITELIB}/hgext/show.pyo
${PYSITELIB}/hgext/sparse.py
${PYSITELIB}/hgext/sparse.pyc
${PYSITELIB}/hgext/sparse.pyo
${PYSITELIB}/hgext/split.py
${PYSITELIB}/hgext/split.pyc
${PYSITELIB}/hgext/split.pyo
${PYSITELIB}/hgext/sqlitestore.py
${PYSITELIB}/hgext/sqlitestore.pyc
${PYSITELIB}/hgext/sqlitestore.pyo
${PYSITELIB}/hgext/strip.py
${PYSITELIB}/hgext/strip.pyc
${PYSITELIB}/hgext/strip.pyo
${PYSITELIB}/hgext/transplant.py
${PYSITELIB}/hgext/transplant.pyc
${PYSITELIB}/hgext/transplant.pyo
${PYSITELIB}/hgext/uncommit.py
${PYSITELIB}/hgext/uncommit.pyc
${PYSITELIB}/hgext/uncommit.pyo
${PYSITELIB}/hgext/win32mbcs.py
${PYSITELIB}/hgext/win32mbcs.pyc
${PYSITELIB}/hgext/win32mbcs.pyo
${PYSITELIB}/hgext/win32text.py
${PYSITELIB}/hgext/win32text.pyc
${PYSITELIB}/hgext/win32text.pyo
${PYSITELIB}/hgext/zeroconf/Zeroconf.py
${PYSITELIB}/hgext/zeroconf/Zeroconf.pyc
${PYSITELIB}/hgext/zeroconf/Zeroconf.pyo
${PYSITELIB}/hgext/zeroconf/__init__.py
${PYSITELIB}/hgext/zeroconf/__init__.pyc
${PYSITELIB}/hgext/zeroconf/__init__.pyo
${PYSITELIB}/hgext3rd/__init__.py
${PYSITELIB}/hgext3rd/__init__.pyc
${PYSITELIB}/hgext3rd/__init__.pyo
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/mercurial/__init__.py
${PYSITELIB}/mercurial/__init__.pyc
${PYSITELIB}/mercurial/__init__.pyo
${PYSITELIB}/mercurial/__modulepolicy__.py
${PYSITELIB}/mercurial/__modulepolicy__.pyc
${PYSITELIB}/mercurial/__modulepolicy__.pyo
${PYSITELIB}/mercurial/__version__.py
${PYSITELIB}/mercurial/__version__.pyc
${PYSITELIB}/mercurial/__version__.pyo
${PYSITELIB}/mercurial/ancestor.py
${PYSITELIB}/mercurial/ancestor.pyc
${PYSITELIB}/mercurial/ancestor.pyo
${PYSITELIB}/mercurial/archival.py
${PYSITELIB}/mercurial/archival.pyc
${PYSITELIB}/mercurial/archival.pyo
${PYSITELIB}/mercurial/bookmarks.py
${PYSITELIB}/mercurial/bookmarks.pyc
${PYSITELIB}/mercurial/bookmarks.pyo
${PYSITELIB}/mercurial/branchmap.py
${PYSITELIB}/mercurial/branchmap.pyc
${PYSITELIB}/mercurial/branchmap.pyo
${PYSITELIB}/mercurial/bundle2.py
${PYSITELIB}/mercurial/bundle2.pyc
${PYSITELIB}/mercurial/bundle2.pyo
${PYSITELIB}/mercurial/bundlecaches.py
${PYSITELIB}/mercurial/bundlecaches.pyc
${PYSITELIB}/mercurial/bundlecaches.pyo
${PYSITELIB}/mercurial/bundlerepo.py
${PYSITELIB}/mercurial/bundlerepo.pyc
${PYSITELIB}/mercurial/bundlerepo.pyo
${PYSITELIB}/mercurial/cacheutil.py
${PYSITELIB}/mercurial/cacheutil.pyc
${PYSITELIB}/mercurial/cacheutil.pyo
${PYSITELIB}/mercurial/cext/__init__.py
${PYSITELIB}/mercurial/cext/__init__.pyc
${PYSITELIB}/mercurial/cext/__init__.pyo
${PYSITELIB}/mercurial/cext/base85.so
${PYSITELIB}/mercurial/cext/bdiff.so
${PYSITELIB}/mercurial/cext/mpatch.so
${PYSITELIB}/mercurial/cext/osutil.so
${PYSITELIB}/mercurial/cext/parsers.so
${PYSITELIB}/mercurial/cffi/__init__.py
${PYSITELIB}/mercurial/cffi/__init__.pyc
${PYSITELIB}/mercurial/cffi/__init__.pyo
${PYSITELIB}/mercurial/cffi/bdiff.py
${PYSITELIB}/mercurial/cffi/bdiff.pyc
${PYSITELIB}/mercurial/cffi/bdiff.pyo
${PYSITELIB}/mercurial/cffi/bdiffbuild.py
${PYSITELIB}/mercurial/cffi/bdiffbuild.pyc
${PYSITELIB}/mercurial/cffi/bdiffbuild.pyo
${PYSITELIB}/mercurial/cffi/mpatch.py
${PYSITELIB}/mercurial/cffi/mpatch.pyc
${PYSITELIB}/mercurial/cffi/mpatch.pyo
${PYSITELIB}/mercurial/cffi/mpatchbuild.py
${PYSITELIB}/mercurial/cffi/mpatchbuild.pyc
${PYSITELIB}/mercurial/cffi/mpatchbuild.pyo
${PYSITELIB}/mercurial/cffi/osutil.py
${PYSITELIB}/mercurial/cffi/osutil.pyc
${PYSITELIB}/mercurial/cffi/osutil.pyo
${PYSITELIB}/mercurial/cffi/osutilbuild.py
${PYSITELIB}/mercurial/cffi/osutilbuild.pyc
${PYSITELIB}/mercurial/cffi/osutilbuild.pyo
${PYSITELIB}/mercurial/changegroup.py
${PYSITELIB}/mercurial/changegroup.pyc
${PYSITELIB}/mercurial/changegroup.pyo
${PYSITELIB}/mercurial/changelog.py
${PYSITELIB}/mercurial/changelog.pyc
${PYSITELIB}/mercurial/changelog.pyo
${PYSITELIB}/mercurial/chgserver.py
${PYSITELIB}/mercurial/chgserver.pyc
${PYSITELIB}/mercurial/chgserver.pyo
${PYSITELIB}/mercurial/cmdutil.py
${PYSITELIB}/mercurial/cmdutil.pyc
${PYSITELIB}/mercurial/cmdutil.pyo
${PYSITELIB}/mercurial/color.py
${PYSITELIB}/mercurial/color.pyc
${PYSITELIB}/mercurial/color.pyo
${PYSITELIB}/mercurial/commands.py
${PYSITELIB}/mercurial/commands.pyc
${PYSITELIB}/mercurial/commands.pyo
${PYSITELIB}/mercurial/commandserver.py
${PYSITELIB}/mercurial/commandserver.pyc
${PYSITELIB}/mercurial/commandserver.pyo
${PYSITELIB}/mercurial/commit.py
${PYSITELIB}/mercurial/commit.pyc
${PYSITELIB}/mercurial/commit.pyo
${PYSITELIB}/mercurial/config.py
${PYSITELIB}/mercurial/config.pyc
${PYSITELIB}/mercurial/config.pyo
${PYSITELIB}/mercurial/configitems.py
${PYSITELIB}/mercurial/configitems.pyc
${PYSITELIB}/mercurial/configitems.pyo
${PYSITELIB}/mercurial/context.py
${PYSITELIB}/mercurial/context.pyc
${PYSITELIB}/mercurial/context.pyo
${PYSITELIB}/mercurial/copies.py
${PYSITELIB}/mercurial/copies.pyc
${PYSITELIB}/mercurial/copies.pyo
${PYSITELIB}/mercurial/crecord.py
${PYSITELIB}/mercurial/crecord.pyc
${PYSITELIB}/mercurial/crecord.pyo
${PYSITELIB}/mercurial/dagop.py
${PYSITELIB}/mercurial/dagop.pyc
${PYSITELIB}/mercurial/dagop.pyo
${PYSITELIB}/mercurial/dagparser.py
${PYSITELIB}/mercurial/dagparser.pyc
${PYSITELIB}/mercurial/dagparser.pyo
${PYSITELIB}/mercurial/debugcommands.py
${PYSITELIB}/mercurial/debugcommands.pyc
${PYSITELIB}/mercurial/debugcommands.pyo
${PYSITELIB}/mercurial/defaultrc/__init__.py
${PYSITELIB}/mercurial/defaultrc/__init__.pyc
${PYSITELIB}/mercurial/defaultrc/__init__.pyo
${PYSITELIB}/mercurial/defaultrc/mergetools.rc
${PYSITELIB}/mercurial/destutil.py
${PYSITELIB}/mercurial/destutil.pyc
${PYSITELIB}/mercurial/destutil.pyo
${PYSITELIB}/mercurial/diffhelper.py
${PYSITELIB}/mercurial/diffhelper.pyc
${PYSITELIB}/mercurial/diffhelper.pyo
${PYSITELIB}/mercurial/diffutil.py
${PYSITELIB}/mercurial/diffutil.pyc
${PYSITELIB}/mercurial/diffutil.pyo
${PYSITELIB}/mercurial/dirstate.py
${PYSITELIB}/mercurial/dirstate.pyc
${PYSITELIB}/mercurial/dirstate.pyo
${PYSITELIB}/mercurial/dirstateguard.py
${PYSITELIB}/mercurial/dirstateguard.pyc
${PYSITELIB}/mercurial/dirstateguard.pyo
${PYSITELIB}/mercurial/dirstatemap.py
${PYSITELIB}/mercurial/dirstatemap.pyc
${PYSITELIB}/mercurial/dirstatemap.pyo
${PYSITELIB}/mercurial/dirstateutils/__init__.py
${PYSITELIB}/mercurial/dirstateutils/__init__.pyc
${PYSITELIB}/mercurial/dirstateutils/__init__.pyo
${PYSITELIB}/mercurial/dirstateutils/docket.py
${PYSITELIB}/mercurial/dirstateutils/docket.pyc
${PYSITELIB}/mercurial/dirstateutils/docket.pyo
${PYSITELIB}/mercurial/dirstateutils/timestamp.py
${PYSITELIB}/mercurial/dirstateutils/timestamp.pyc
${PYSITELIB}/mercurial/dirstateutils/timestamp.pyo
${PYSITELIB}/mercurial/dirstateutils/v2.py
${PYSITELIB}/mercurial/dirstateutils/v2.pyc
${PYSITELIB}/mercurial/dirstateutils/v2.pyo
${PYSITELIB}/mercurial/discovery.py
${PYSITELIB}/mercurial/discovery.pyc
${PYSITELIB}/mercurial/discovery.pyo
${PYSITELIB}/mercurial/dispatch.py
${PYSITELIB}/mercurial/dispatch.pyc
${PYSITELIB}/mercurial/dispatch.pyo
${PYSITELIB}/mercurial/dummycert.pem
${PYSITELIB}/mercurial/encoding.py
${PYSITELIB}/mercurial/encoding.pyc
${PYSITELIB}/mercurial/encoding.pyo
${PYSITELIB}/mercurial/error.py
${PYSITELIB}/mercurial/error.pyc
${PYSITELIB}/mercurial/error.pyo
${PYSITELIB}/mercurial/exchange.py
${PYSITELIB}/mercurial/exchange.pyc
${PYSITELIB}/mercurial/exchange.pyo
${PYSITELIB}/mercurial/extensions.py
${PYSITELIB}/mercurial/extensions.pyc
${PYSITELIB}/mercurial/extensions.pyo
${PYSITELIB}/mercurial/exthelper.py
${PYSITELIB}/mercurial/exthelper.pyc
${PYSITELIB}/mercurial/exthelper.pyo
${PYSITELIB}/mercurial/fancyopts.py
${PYSITELIB}/mercurial/fancyopts.pyc
${PYSITELIB}/mercurial/fancyopts.pyo
${PYSITELIB}/mercurial/filelog.py
${PYSITELIB}/mercurial/filelog.pyc
${PYSITELIB}/mercurial/filelog.pyo
${PYSITELIB}/mercurial/filemerge.py
${PYSITELIB}/mercurial/filemerge.pyc
${PYSITELIB}/mercurial/filemerge.pyo
${PYSITELIB}/mercurial/fileset.py
${PYSITELIB}/mercurial/fileset.pyc
${PYSITELIB}/mercurial/fileset.pyo
${PYSITELIB}/mercurial/filesetlang.py
${PYSITELIB}/mercurial/filesetlang.pyc
${PYSITELIB}/mercurial/filesetlang.pyo
${PYSITELIB}/mercurial/formatter.py
${PYSITELIB}/mercurial/formatter.pyc
${PYSITELIB}/mercurial/formatter.pyo
${PYSITELIB}/mercurial/graphmod.py
${PYSITELIB}/mercurial/graphmod.pyc
${PYSITELIB}/mercurial/graphmod.pyo
${PYSITELIB}/mercurial/grep.py
${PYSITELIB}/mercurial/grep.pyc
${PYSITELIB}/mercurial/grep.pyo
${PYSITELIB}/mercurial/hbisect.py
${PYSITELIB}/mercurial/hbisect.pyc
${PYSITELIB}/mercurial/hbisect.pyo
${PYSITELIB}/mercurial/help.py
${PYSITELIB}/mercurial/help.pyc
${PYSITELIB}/mercurial/help.pyo
${PYSITELIB}/mercurial/helptext/__init__.py
${PYSITELIB}/mercurial/helptext/__init__.pyc
${PYSITELIB}/mercurial/helptext/__init__.pyo
${PYSITELIB}/mercurial/helptext/bundlespec.txt
${PYSITELIB}/mercurial/helptext/color.txt
${PYSITELIB}/mercurial/helptext/common.txt
${PYSITELIB}/mercurial/helptext/config.txt
${PYSITELIB}/mercurial/helptext/dates.txt
${PYSITELIB}/mercurial/helptext/deprecated.txt
${PYSITELIB}/mercurial/helptext/diffs.txt
${PYSITELIB}/mercurial/helptext/environment.txt
${PYSITELIB}/mercurial/helptext/evolution.txt
${PYSITELIB}/mercurial/helptext/extensions.txt
${PYSITELIB}/mercurial/helptext/filesets.txt
${PYSITELIB}/mercurial/helptext/flags.txt
${PYSITELIB}/mercurial/helptext/glossary.txt
${PYSITELIB}/mercurial/helptext/hg-ssh.8.txt
${PYSITELIB}/mercurial/helptext/hg.1.txt
${PYSITELIB}/mercurial/helptext/hgignore.5.txt
${PYSITELIB}/mercurial/helptext/hgignore.txt
${PYSITELIB}/mercurial/helptext/hgrc.5.txt
${PYSITELIB}/mercurial/helptext/hgweb.txt
${PYSITELIB}/mercurial/helptext/internals/__init__.py
${PYSITELIB}/mercurial/helptext/internals/__init__.pyc
${PYSITELIB}/mercurial/helptext/internals/__init__.pyo
${PYSITELIB}/mercurial/helptext/internals/bid-merge.txt
${PYSITELIB}/mercurial/helptext/internals/bundle2.txt
${PYSITELIB}/mercurial/helptext/internals/bundles.txt
${PYSITELIB}/mercurial/helptext/internals/cbor.txt
${PYSITELIB}/mercurial/helptext/internals/censor.txt
${PYSITELIB}/mercurial/helptext/internals/changegroups.txt
${PYSITELIB}/mercurial/helptext/internals/config.txt
${PYSITELIB}/mercurial/helptext/internals/dirstate-v2.txt
${PYSITELIB}/mercurial/helptext/internals/extensions.txt
${PYSITELIB}/mercurial/helptext/internals/linelog.txt
${PYSITELIB}/mercurial/helptext/internals/mergestate.txt
${PYSITELIB}/mercurial/helptext/internals/requirements.txt
${PYSITELIB}/mercurial/helptext/internals/revlogs.txt
${PYSITELIB}/mercurial/helptext/internals/wireprotocol.txt
${PYSITELIB}/mercurial/helptext/internals/wireprotocolrpc.txt
${PYSITELIB}/mercurial/helptext/internals/wireprotocolv2.txt
${PYSITELIB}/mercurial/helptext/merge-tools.txt
${PYSITELIB}/mercurial/helptext/pager.txt
${PYSITELIB}/mercurial/helptext/patterns.txt
${PYSITELIB}/mercurial/helptext/phases.txt
${PYSITELIB}/mercurial/helptext/revisions.txt
${PYSITELIB}/mercurial/helptext/rust.txt
${PYSITELIB}/mercurial/helptext/scripting.txt
${PYSITELIB}/mercurial/helptext/subrepos.txt
${PYSITELIB}/mercurial/helptext/templates.txt
${PYSITELIB}/mercurial/helptext/urls.txt
${PYSITELIB}/mercurial/hg.py
${PYSITELIB}/mercurial/hg.pyc
${PYSITELIB}/mercurial/hg.pyo
${PYSITELIB}/mercurial/hgweb/__init__.py
${PYSITELIB}/mercurial/hgweb/__init__.pyc
${PYSITELIB}/mercurial/hgweb/__init__.pyo
${PYSITELIB}/mercurial/hgweb/common.py
${PYSITELIB}/mercurial/hgweb/common.pyc
${PYSITELIB}/mercurial/hgweb/common.pyo
${PYSITELIB}/mercurial/hgweb/hgweb_mod.py
${PYSITELIB}/mercurial/hgweb/hgweb_mod.pyc
${PYSITELIB}/mercurial/hgweb/hgweb_mod.pyo
${PYSITELIB}/mercurial/hgweb/hgwebdir_mod.py
${PYSITELIB}/mercurial/hgweb/hgwebdir_mod.pyc
${PYSITELIB}/mercurial/hgweb/hgwebdir_mod.pyo
${PYSITELIB}/mercurial/hgweb/request.py
${PYSITELIB}/mercurial/hgweb/request.pyc
${PYSITELIB}/mercurial/hgweb/request.pyo
${PYSITELIB}/mercurial/hgweb/server.py
${PYSITELIB}/mercurial/hgweb/server.pyc
${PYSITELIB}/mercurial/hgweb/server.pyo
${PYSITELIB}/mercurial/hgweb/webcommands.py
${PYSITELIB}/mercurial/hgweb/webcommands.pyc
${PYSITELIB}/mercurial/hgweb/webcommands.pyo
${PYSITELIB}/mercurial/hgweb/webutil.py
${PYSITELIB}/mercurial/hgweb/webutil.pyc
${PYSITELIB}/mercurial/hgweb/webutil.pyo
${PYSITELIB}/mercurial/hgweb/wsgicgi.py
${PYSITELIB}/mercurial/hgweb/wsgicgi.pyc
${PYSITELIB}/mercurial/hgweb/wsgicgi.pyo
${PYSITELIB}/mercurial/hgweb/wsgiheaders.py
${PYSITELIB}/mercurial/hgweb/wsgiheaders.pyc
${PYSITELIB}/mercurial/hgweb/wsgiheaders.pyo
${PYSITELIB}/mercurial/hook.py
${PYSITELIB}/mercurial/hook.pyc
${PYSITELIB}/mercurial/hook.pyo
${PYSITELIB}/mercurial/httpconnection.py
${PYSITELIB}/mercurial/httpconnection.pyc
${PYSITELIB}/mercurial/httpconnection.pyo
${PYSITELIB}/mercurial/httppeer.py
${PYSITELIB}/mercurial/httppeer.pyc
${PYSITELIB}/mercurial/httppeer.pyo
${PYSITELIB}/mercurial/i18n.py
${PYSITELIB}/mercurial/i18n.pyc
${PYSITELIB}/mercurial/i18n.pyo
${PYSITELIB}/mercurial/interfaces/__init__.py
${PYSITELIB}/mercurial/interfaces/__init__.pyc
${PYSITELIB}/mercurial/interfaces/__init__.pyo
${PYSITELIB}/mercurial/interfaces/dirstate.py
${PYSITELIB}/mercurial/interfaces/dirstate.pyc
${PYSITELIB}/mercurial/interfaces/dirstate.pyo
${PYSITELIB}/mercurial/interfaces/repository.py
${PYSITELIB}/mercurial/interfaces/repository.pyc
${PYSITELIB}/mercurial/interfaces/repository.pyo
${PYSITELIB}/mercurial/interfaces/util.py
${PYSITELIB}/mercurial/interfaces/util.pyc
${PYSITELIB}/mercurial/interfaces/util.pyo
${PYSITELIB}/mercurial/keepalive.py
${PYSITELIB}/mercurial/keepalive.pyc
${PYSITELIB}/mercurial/keepalive.pyo
${PYSITELIB}/mercurial/linelog.py
${PYSITELIB}/mercurial/linelog.pyc
${PYSITELIB}/mercurial/linelog.pyo
${PYSITELIB}/mercurial/locale/da/LC_MESSAGES/hg.mo
${PYSITELIB}/mercurial/locale/de/LC_MESSAGES/hg.mo
${PYSITELIB}/mercurial/locale/el/LC_MESSAGES/hg.mo
${PYSITELIB}/mercurial/locale/fr/LC_MESSAGES/hg.mo
${PYSITELIB}/mercurial/locale/it/LC_MESSAGES/hg.mo
${PYSITELIB}/mercurial/locale/ja/LC_MESSAGES/hg.mo
${PYSITELIB}/mercurial/locale/pt_BR/LC_MESSAGES/hg.mo
${PYSITELIB}/mercurial/locale/ro/LC_MESSAGES/hg.mo
${PYSITELIB}/mercurial/locale/ru/LC_MESSAGES/hg.mo
${PYSITELIB}/mercurial/locale/sv/LC_MESSAGES/hg.mo
${PYSITELIB}/mercurial/locale/zh_CN/LC_MESSAGES/hg.mo
${PYSITELIB}/mercurial/locale/zh_TW/LC_MESSAGES/hg.mo
${PYSITELIB}/mercurial/localrepo.py
${PYSITELIB}/mercurial/localrepo.pyc
${PYSITELIB}/mercurial/localrepo.pyo
${PYSITELIB}/mercurial/lock.py
${PYSITELIB}/mercurial/lock.pyc
${PYSITELIB}/mercurial/lock.pyo
${PYSITELIB}/mercurial/logcmdutil.py
${PYSITELIB}/mercurial/logcmdutil.pyc
${PYSITELIB}/mercurial/logcmdutil.pyo
${PYSITELIB}/mercurial/logexchange.py
${PYSITELIB}/mercurial/logexchange.pyc
${PYSITELIB}/mercurial/logexchange.pyo
${PYSITELIB}/mercurial/loggingutil.py
${PYSITELIB}/mercurial/loggingutil.pyc
${PYSITELIB}/mercurial/loggingutil.pyo
${PYSITELIB}/mercurial/lsprof.py
${PYSITELIB}/mercurial/lsprof.pyc
${PYSITELIB}/mercurial/lsprof.pyo
${PYSITELIB}/mercurial/lsprofcalltree.py
${PYSITELIB}/mercurial/lsprofcalltree.pyc
${PYSITELIB}/mercurial/lsprofcalltree.pyo
${PYSITELIB}/mercurial/mail.py
${PYSITELIB}/mercurial/mail.pyc
${PYSITELIB}/mercurial/mail.pyo
${PYSITELIB}/mercurial/manifest.py
${PYSITELIB}/mercurial/manifest.pyc
${PYSITELIB}/mercurial/manifest.pyo
${PYSITELIB}/mercurial/match.py
${PYSITELIB}/mercurial/match.pyc
${PYSITELIB}/mercurial/match.pyo
${PYSITELIB}/mercurial/mdiff.py
${PYSITELIB}/mercurial/mdiff.pyc
${PYSITELIB}/mercurial/mdiff.pyo
${PYSITELIB}/mercurial/merge.py
${PYSITELIB}/mercurial/merge.pyc
${PYSITELIB}/mercurial/merge.pyo
${PYSITELIB}/mercurial/mergestate.py
${PYSITELIB}/mercurial/mergestate.pyc
${PYSITELIB}/mercurial/mergestate.pyo
${PYSITELIB}/mercurial/mergeutil.py
${PYSITELIB}/mercurial/mergeutil.pyc
${PYSITELIB}/mercurial/mergeutil.pyo
${PYSITELIB}/mercurial/metadata.py
${PYSITELIB}/mercurial/metadata.pyc
${PYSITELIB}/mercurial/metadata.pyo
${PYSITELIB}/mercurial/minifileset.py
${PYSITELIB}/mercurial/minifileset.pyc
${PYSITELIB}/mercurial/minifileset.pyo
${PYSITELIB}/mercurial/minirst.py
${PYSITELIB}/mercurial/minirst.pyc
${PYSITELIB}/mercurial/minirst.pyo
${PYSITELIB}/mercurial/namespaces.py
${PYSITELIB}/mercurial/namespaces.pyc
${PYSITELIB}/mercurial/namespaces.pyo
${PYSITELIB}/mercurial/narrowspec.py
${PYSITELIB}/mercurial/narrowspec.pyc
${PYSITELIB}/mercurial/narrowspec.pyo
${PYSITELIB}/mercurial/node.py
${PYSITELIB}/mercurial/node.pyc
${PYSITELIB}/mercurial/node.pyo
${PYSITELIB}/mercurial/obsolete.py
${PYSITELIB}/mercurial/obsolete.pyc
${PYSITELIB}/mercurial/obsolete.pyo
${PYSITELIB}/mercurial/obsutil.py
${PYSITELIB}/mercurial/obsutil.pyc
${PYSITELIB}/mercurial/obsutil.pyo
${PYSITELIB}/mercurial/parser.py
${PYSITELIB}/mercurial/parser.pyc
${PYSITELIB}/mercurial/parser.pyo
${PYSITELIB}/mercurial/patch.py
${PYSITELIB}/mercurial/patch.pyc
${PYSITELIB}/mercurial/patch.pyo
${PYSITELIB}/mercurial/pathutil.py
${PYSITELIB}/mercurial/pathutil.pyc
${PYSITELIB}/mercurial/pathutil.pyo
${PYSITELIB}/mercurial/phases.py
${PYSITELIB}/mercurial/phases.pyc
${PYSITELIB}/mercurial/phases.pyo
${PYSITELIB}/mercurial/policy.py
${PYSITELIB}/mercurial/policy.pyc
${PYSITELIB}/mercurial/policy.pyo
${PYSITELIB}/mercurial/posix.py
${PYSITELIB}/mercurial/posix.pyc
${PYSITELIB}/mercurial/posix.pyo
${PYSITELIB}/mercurial/profiling.py
${PYSITELIB}/mercurial/profiling.pyc
${PYSITELIB}/mercurial/profiling.pyo
${PYSITELIB}/mercurial/progress.py
${PYSITELIB}/mercurial/progress.pyc
${PYSITELIB}/mercurial/progress.pyo
${PYSITELIB}/mercurial/pure/__init__.py
${PYSITELIB}/mercurial/pure/__init__.pyc
${PYSITELIB}/mercurial/pure/__init__.pyo
${PYSITELIB}/mercurial/pure/base85.py
${PYSITELIB}/mercurial/pure/base85.pyc
${PYSITELIB}/mercurial/pure/base85.pyo
${PYSITELIB}/mercurial/pure/bdiff.py
${PYSITELIB}/mercurial/pure/bdiff.pyc
${PYSITELIB}/mercurial/pure/bdiff.pyo
${PYSITELIB}/mercurial/pure/charencode.py
${PYSITELIB}/mercurial/pure/charencode.pyc
${PYSITELIB}/mercurial/pure/charencode.pyo
${PYSITELIB}/mercurial/pure/mpatch.py
${PYSITELIB}/mercurial/pure/mpatch.pyc
${PYSITELIB}/mercurial/pure/mpatch.pyo
${PYSITELIB}/mercurial/pure/osutil.py
${PYSITELIB}/mercurial/pure/osutil.pyc
${PYSITELIB}/mercurial/pure/osutil.pyo
${PYSITELIB}/mercurial/pure/parsers.py
${PYSITELIB}/mercurial/pure/parsers.pyc
${PYSITELIB}/mercurial/pure/parsers.pyo
${PYSITELIB}/mercurial/pushkey.py
${PYSITELIB}/mercurial/pushkey.pyc
${PYSITELIB}/mercurial/pushkey.pyo
${PYSITELIB}/mercurial/pvec.py
${PYSITELIB}/mercurial/pvec.pyc
${PYSITELIB}/mercurial/pvec.pyo
${PYSITELIB}/mercurial/pycompat.py
${PYSITELIB}/mercurial/pycompat.pyc
${PYSITELIB}/mercurial/pycompat.pyo
${PYSITELIB}/mercurial/rcutil.py
${PYSITELIB}/mercurial/rcutil.pyc
${PYSITELIB}/mercurial/rcutil.pyo
${PYSITELIB}/mercurial/registrar.py
${PYSITELIB}/mercurial/registrar.pyc
${PYSITELIB}/mercurial/registrar.pyo
${PYSITELIB}/mercurial/repair.py
${PYSITELIB}/mercurial/repair.pyc
${PYSITELIB}/mercurial/repair.pyo
${PYSITELIB}/mercurial/repocache.py
${PYSITELIB}/mercurial/repocache.pyc
${PYSITELIB}/mercurial/repocache.pyo
${PYSITELIB}/mercurial/repoview.py
${PYSITELIB}/mercurial/repoview.pyc
${PYSITELIB}/mercurial/repoview.pyo
${PYSITELIB}/mercurial/requirements.py
${PYSITELIB}/mercurial/requirements.pyc
${PYSITELIB}/mercurial/requirements.pyo
${PYSITELIB}/mercurial/revlog.py
${PYSITELIB}/mercurial/revlog.pyc
${PYSITELIB}/mercurial/revlog.pyo
${PYSITELIB}/mercurial/revlogutils/__init__.py
${PYSITELIB}/mercurial/revlogutils/__init__.pyc
${PYSITELIB}/mercurial/revlogutils/__init__.pyo
${PYSITELIB}/mercurial/revlogutils/concurrency_checker.py
${PYSITELIB}/mercurial/revlogutils/concurrency_checker.pyc
${PYSITELIB}/mercurial/revlogutils/concurrency_checker.pyo
${PYSITELIB}/mercurial/revlogutils/constants.py
${PYSITELIB}/mercurial/revlogutils/constants.pyc
${PYSITELIB}/mercurial/revlogutils/constants.pyo
${PYSITELIB}/mercurial/revlogutils/debug.py
${PYSITELIB}/mercurial/revlogutils/debug.pyc
${PYSITELIB}/mercurial/revlogutils/debug.pyo
${PYSITELIB}/mercurial/revlogutils/deltas.py
${PYSITELIB}/mercurial/revlogutils/deltas.pyc
${PYSITELIB}/mercurial/revlogutils/deltas.pyo
${PYSITELIB}/mercurial/revlogutils/docket.py
${PYSITELIB}/mercurial/revlogutils/docket.pyc
${PYSITELIB}/mercurial/revlogutils/docket.pyo
${PYSITELIB}/mercurial/revlogutils/flagutil.py
${PYSITELIB}/mercurial/revlogutils/flagutil.pyc
${PYSITELIB}/mercurial/revlogutils/flagutil.pyo
${PYSITELIB}/mercurial/revlogutils/nodemap.py
${PYSITELIB}/mercurial/revlogutils/nodemap.pyc
${PYSITELIB}/mercurial/revlogutils/nodemap.pyo
${PYSITELIB}/mercurial/revlogutils/randomaccessfile.py
${PYSITELIB}/mercurial/revlogutils/randomaccessfile.pyc
${PYSITELIB}/mercurial/revlogutils/randomaccessfile.pyo
${PYSITELIB}/mercurial/revlogutils/revlogv0.py
${PYSITELIB}/mercurial/revlogutils/revlogv0.pyc
${PYSITELIB}/mercurial/revlogutils/revlogv0.pyo
${PYSITELIB}/mercurial/revlogutils/rewrite.py
${PYSITELIB}/mercurial/revlogutils/rewrite.pyc
${PYSITELIB}/mercurial/revlogutils/rewrite.pyo
${PYSITELIB}/mercurial/revlogutils/sidedata.py
${PYSITELIB}/mercurial/revlogutils/sidedata.pyc
${PYSITELIB}/mercurial/revlogutils/sidedata.pyo
${PYSITELIB}/mercurial/revset.py
${PYSITELIB}/mercurial/revset.pyc
${PYSITELIB}/mercurial/revset.pyo
${PYSITELIB}/mercurial/revsetlang.py
${PYSITELIB}/mercurial/revsetlang.pyc
${PYSITELIB}/mercurial/revsetlang.pyo
${PYSITELIB}/mercurial/rewriteutil.py
${PYSITELIB}/mercurial/rewriteutil.pyc
${PYSITELIB}/mercurial/rewriteutil.pyo
${PYSITELIB}/mercurial/scmposix.py
${PYSITELIB}/mercurial/scmposix.pyc
${PYSITELIB}/mercurial/scmposix.pyo
${PYSITELIB}/mercurial/scmutil.py
${PYSITELIB}/mercurial/scmutil.pyc
${PYSITELIB}/mercurial/scmutil.pyo
${PYSITELIB}/mercurial/scmwindows.py
${PYSITELIB}/mercurial/scmwindows.pyc
${PYSITELIB}/mercurial/scmwindows.pyo
${PYSITELIB}/mercurial/server.py
${PYSITELIB}/mercurial/server.pyc
${PYSITELIB}/mercurial/server.pyo
${PYSITELIB}/mercurial/setdiscovery.py
${PYSITELIB}/mercurial/setdiscovery.pyc
${PYSITELIB}/mercurial/setdiscovery.pyo
${PYSITELIB}/mercurial/shelve.py
${PYSITELIB}/mercurial/shelve.pyc
${PYSITELIB}/mercurial/shelve.pyo
${PYSITELIB}/mercurial/similar.py
${PYSITELIB}/mercurial/similar.pyc
${PYSITELIB}/mercurial/similar.pyo
${PYSITELIB}/mercurial/simplemerge.py
${PYSITELIB}/mercurial/simplemerge.pyc
${PYSITELIB}/mercurial/simplemerge.pyo
${PYSITELIB}/mercurial/smartset.py
${PYSITELIB}/mercurial/smartset.pyc
${PYSITELIB}/mercurial/smartset.pyo
${PYSITELIB}/mercurial/sparse.py
${PYSITELIB}/mercurial/sparse.pyc
${PYSITELIB}/mercurial/sparse.pyo
${PYSITELIB}/mercurial/sshpeer.py
${PYSITELIB}/mercurial/sshpeer.pyc
${PYSITELIB}/mercurial/sshpeer.pyo
${PYSITELIB}/mercurial/sslutil.py
${PYSITELIB}/mercurial/sslutil.pyc
${PYSITELIB}/mercurial/sslutil.pyo
${PYSITELIB}/mercurial/stack.py
${PYSITELIB}/mercurial/stack.pyc
${PYSITELIB}/mercurial/stack.pyo
${PYSITELIB}/mercurial/state.py
${PYSITELIB}/mercurial/state.pyc
${PYSITELIB}/mercurial/state.pyo
${PYSITELIB}/mercurial/statichttprepo.py
${PYSITELIB}/mercurial/statichttprepo.pyc
${PYSITELIB}/mercurial/statichttprepo.pyo
${PYSITELIB}/mercurial/statprof.py
${PYSITELIB}/mercurial/statprof.pyc
${PYSITELIB}/mercurial/statprof.pyo
${PYSITELIB}/mercurial/store.py
${PYSITELIB}/mercurial/store.pyc
${PYSITELIB}/mercurial/store.pyo
${PYSITELIB}/mercurial/streamclone.py
${PYSITELIB}/mercurial/streamclone.pyc
${PYSITELIB}/mercurial/streamclone.pyo
${PYSITELIB}/mercurial/strip.py
${PYSITELIB}/mercurial/strip.pyc
${PYSITELIB}/mercurial/strip.pyo
${PYSITELIB}/mercurial/subrepo.py
${PYSITELIB}/mercurial/subrepo.pyc
${PYSITELIB}/mercurial/subrepo.pyo
${PYSITELIB}/mercurial/subrepoutil.py
${PYSITELIB}/mercurial/subrepoutil.pyc
${PYSITELIB}/mercurial/subrepoutil.pyo
${PYSITELIB}/mercurial/tagmerge.py
${PYSITELIB}/mercurial/tagmerge.pyc
${PYSITELIB}/mercurial/tagmerge.pyo
${PYSITELIB}/mercurial/tags.py
${PYSITELIB}/mercurial/tags.pyc
${PYSITELIB}/mercurial/tags.pyo
${PYSITELIB}/mercurial/templatefilters.py
${PYSITELIB}/mercurial/templatefilters.pyc
${PYSITELIB}/mercurial/templatefilters.pyo
${PYSITELIB}/mercurial/templatefuncs.py
${PYSITELIB}/mercurial/templatefuncs.pyc
${PYSITELIB}/mercurial/templatefuncs.pyo
${PYSITELIB}/mercurial/templatekw.py
${PYSITELIB}/mercurial/templatekw.pyc
${PYSITELIB}/mercurial/templatekw.pyo
${PYSITELIB}/mercurial/templater.py
${PYSITELIB}/mercurial/templater.pyc
${PYSITELIB}/mercurial/templater.pyo
${PYSITELIB}/mercurial/templates/__init__.py
${PYSITELIB}/mercurial/templates/__init__.pyc
${PYSITELIB}/mercurial/templates/__init__.pyo
${PYSITELIB}/mercurial/templates/atom/__init__.py
${PYSITELIB}/mercurial/templates/atom/__init__.pyc
${PYSITELIB}/mercurial/templates/atom/__init__.pyo
${PYSITELIB}/mercurial/templates/atom/bookmarkentry.tmpl
${PYSITELIB}/mercurial/templates/atom/bookmarks.tmpl
${PYSITELIB}/mercurial/templates/atom/branchentry.tmpl
${PYSITELIB}/mercurial/templates/atom/branches.tmpl
${PYSITELIB}/mercurial/templates/atom/changelog.tmpl
${PYSITELIB}/mercurial/templates/atom/changelogentry.tmpl
${PYSITELIB}/mercurial/templates/atom/error.tmpl
${PYSITELIB}/mercurial/templates/atom/filelog.tmpl
${PYSITELIB}/mercurial/templates/atom/header.tmpl
${PYSITELIB}/mercurial/templates/atom/map
${PYSITELIB}/mercurial/templates/atom/tagentry.tmpl
${PYSITELIB}/mercurial/templates/atom/tags.tmpl
${PYSITELIB}/mercurial/templates/coal/__init__.py
${PYSITELIB}/mercurial/templates/coal/__init__.pyc
${PYSITELIB}/mercurial/templates/coal/__init__.pyo
${PYSITELIB}/mercurial/templates/coal/header.tmpl
${PYSITELIB}/mercurial/templates/coal/map
${PYSITELIB}/mercurial/templates/gitweb/__init__.py
${PYSITELIB}/mercurial/templates/gitweb/__init__.pyc
${PYSITELIB}/mercurial/templates/gitweb/__init__.pyo
${PYSITELIB}/mercurial/templates/gitweb/bookmarks.tmpl
${PYSITELIB}/mercurial/templates/gitweb/branches.tmpl
${PYSITELIB}/mercurial/templates/gitweb/changelog.tmpl
${PYSITELIB}/mercurial/templates/gitweb/changelogentry.tmpl
${PYSITELIB}/mercurial/templates/gitweb/changeset.tmpl
${PYSITELIB}/mercurial/templates/gitweb/error.tmpl
${PYSITELIB}/mercurial/templates/gitweb/fileannotate.tmpl
${PYSITELIB}/mercurial/templates/gitweb/filecomparison.tmpl
${PYSITELIB}/mercurial/templates/gitweb/filediff.tmpl
${PYSITELIB}/mercurial/templates/gitweb/filelog.tmpl
${PYSITELIB}/mercurial/templates/gitweb/filerevision.tmpl
${PYSITELIB}/mercurial/templates/gitweb/footer.tmpl
${PYSITELIB}/mercurial/templates/gitweb/graph.tmpl
${PYSITELIB}/mercurial/templates/gitweb/graphentry.tmpl
${PYSITELIB}/mercurial/templates/gitweb/header.tmpl
${PYSITELIB}/mercurial/templates/gitweb/help.tmpl
${PYSITELIB}/mercurial/templates/gitweb/helptopics.tmpl
${PYSITELIB}/mercurial/templates/gitweb/index.tmpl
${PYSITELIB}/mercurial/templates/gitweb/manifest.tmpl
${PYSITELIB}/mercurial/templates/gitweb/map
${PYSITELIB}/mercurial/templates/gitweb/notfound.tmpl
${PYSITELIB}/mercurial/templates/gitweb/search.tmpl
${PYSITELIB}/mercurial/templates/gitweb/shortlog.tmpl
${PYSITELIB}/mercurial/templates/gitweb/summary.tmpl
${PYSITELIB}/mercurial/templates/gitweb/tags.tmpl
${PYSITELIB}/mercurial/templates/json/__init__.py
${PYSITELIB}/mercurial/templates/json/__init__.pyc
${PYSITELIB}/mercurial/templates/json/__init__.pyo
${PYSITELIB}/mercurial/templates/json/changelist.tmpl
${PYSITELIB}/mercurial/templates/json/graph.tmpl
${PYSITELIB}/mercurial/templates/json/map
${PYSITELIB}/mercurial/templates/map-cmdline.bisect
${PYSITELIB}/mercurial/templates/map-cmdline.changelog
${PYSITELIB}/mercurial/templates/map-cmdline.compact
${PYSITELIB}/mercurial/templates/map-cmdline.default
${PYSITELIB}/mercurial/templates/map-cmdline.phases
${PYSITELIB}/mercurial/templates/map-cmdline.show
${PYSITELIB}/mercurial/templates/map-cmdline.status
${PYSITELIB}/mercurial/templates/map-cmdline.xml
${PYSITELIB}/mercurial/templates/monoblue/__init__.py
${PYSITELIB}/mercurial/templates/monoblue/__init__.pyc
${PYSITELIB}/mercurial/templates/monoblue/__init__.pyo
${PYSITELIB}/mercurial/templates/monoblue/bookmarks.tmpl
${PYSITELIB}/mercurial/templates/monoblue/branches.tmpl
${PYSITELIB}/mercurial/templates/monoblue/changelog.tmpl
${PYSITELIB}/mercurial/templates/monoblue/changelogentry.tmpl
${PYSITELIB}/mercurial/templates/monoblue/changeset.tmpl
${PYSITELIB}/mercurial/templates/monoblue/error.tmpl
${PYSITELIB}/mercurial/templates/monoblue/fileannotate.tmpl
${PYSITELIB}/mercurial/templates/monoblue/filecomparison.tmpl
${PYSITELIB}/mercurial/templates/monoblue/filediff.tmpl
${PYSITELIB}/mercurial/templates/monoblue/filelog.tmpl
${PYSITELIB}/mercurial/templates/monoblue/filerevision.tmpl
${PYSITELIB}/mercurial/templates/monoblue/footer.tmpl
${PYSITELIB}/mercurial/templates/monoblue/graph.tmpl
${PYSITELIB}/mercurial/templates/monoblue/graphentry.tmpl
${PYSITELIB}/mercurial/templates/monoblue/header.tmpl
${PYSITELIB}/mercurial/templates/monoblue/help.tmpl
${PYSITELIB}/mercurial/templates/monoblue/helptopics.tmpl
${PYSITELIB}/mercurial/templates/monoblue/index.tmpl
${PYSITELIB}/mercurial/templates/monoblue/manifest.tmpl
${PYSITELIB}/mercurial/templates/monoblue/map
${PYSITELIB}/mercurial/templates/monoblue/notfound.tmpl
${PYSITELIB}/mercurial/templates/monoblue/search.tmpl
${PYSITELIB}/mercurial/templates/monoblue/shortlog.tmpl
${PYSITELIB}/mercurial/templates/monoblue/summary.tmpl
${PYSITELIB}/mercurial/templates/monoblue/tags.tmpl
${PYSITELIB}/mercurial/templates/paper/__init__.py
${PYSITELIB}/mercurial/templates/paper/__init__.pyc
${PYSITELIB}/mercurial/templates/paper/__init__.pyo
${PYSITELIB}/mercurial/templates/paper/bookmarks.tmpl
${PYSITELIB}/mercurial/templates/paper/branches.tmpl
${PYSITELIB}/mercurial/templates/paper/changeset.tmpl
${PYSITELIB}/mercurial/templates/paper/diffstat.tmpl
${PYSITELIB}/mercurial/templates/paper/error.tmpl
${PYSITELIB}/mercurial/templates/paper/fileannotate.tmpl
${PYSITELIB}/mercurial/templates/paper/filecomparison.tmpl
${PYSITELIB}/mercurial/templates/paper/filediff.tmpl
${PYSITELIB}/mercurial/templates/paper/filelog.tmpl
${PYSITELIB}/mercurial/templates/paper/filelogentry.tmpl
${PYSITELIB}/mercurial/templates/paper/filerevision.tmpl
${PYSITELIB}/mercurial/templates/paper/footer.tmpl
${PYSITELIB}/mercurial/templates/paper/graph.tmpl
${PYSITELIB}/mercurial/templates/paper/graphentry.tmpl
${PYSITELIB}/mercurial/templates/paper/header.tmpl
${PYSITELIB}/mercurial/templates/paper/help.tmpl
${PYSITELIB}/mercurial/templates/paper/helptopics.tmpl
${PYSITELIB}/mercurial/templates/paper/index.tmpl
${PYSITELIB}/mercurial/templates/paper/manifest.tmpl
${PYSITELIB}/mercurial/templates/paper/map
${PYSITELIB}/mercurial/templates/paper/notfound.tmpl
${PYSITELIB}/mercurial/templates/paper/search.tmpl
${PYSITELIB}/mercurial/templates/paper/shortlog.tmpl
${PYSITELIB}/mercurial/templates/paper/shortlogentry.tmpl
${PYSITELIB}/mercurial/templates/paper/tags.tmpl
${PYSITELIB}/mercurial/templates/raw/__init__.py
${PYSITELIB}/mercurial/templates/raw/__init__.pyc
${PYSITELIB}/mercurial/templates/raw/__init__.pyo
${PYSITELIB}/mercurial/templates/raw/changelog.tmpl
${PYSITELIB}/mercurial/templates/raw/changeset.tmpl
${PYSITELIB}/mercurial/templates/raw/error.tmpl
${PYSITELIB}/mercurial/templates/raw/fileannotate.tmpl
${PYSITELIB}/mercurial/templates/raw/filediff.tmpl
${PYSITELIB}/mercurial/templates/raw/graph.tmpl
${PYSITELIB}/mercurial/templates/raw/graphedge.tmpl
${PYSITELIB}/mercurial/templates/raw/graphnode.tmpl
${PYSITELIB}/mercurial/templates/raw/index.tmpl
${PYSITELIB}/mercurial/templates/raw/logentry.tmpl
${PYSITELIB}/mercurial/templates/raw/manifest.tmpl
${PYSITELIB}/mercurial/templates/raw/map
${PYSITELIB}/mercurial/templates/raw/notfound.tmpl
${PYSITELIB}/mercurial/templates/raw/search.tmpl
${PYSITELIB}/mercurial/templates/rss/__init__.py
${PYSITELIB}/mercurial/templates/rss/__init__.pyc
${PYSITELIB}/mercurial/templates/rss/__init__.pyo
${PYSITELIB}/mercurial/templates/rss/bookmarkentry.tmpl
${PYSITELIB}/mercurial/templates/rss/bookmarks.tmpl
${PYSITELIB}/mercurial/templates/rss/branchentry.tmpl
${PYSITELIB}/mercurial/templates/rss/branches.tmpl
${PYSITELIB}/mercurial/templates/rss/changelog.tmpl
${PYSITELIB}/mercurial/templates/rss/changelogentry.tmpl
${PYSITELIB}/mercurial/templates/rss/error.tmpl
${PYSITELIB}/mercurial/templates/rss/filelog.tmpl
${PYSITELIB}/mercurial/templates/rss/filelogentry.tmpl
${PYSITELIB}/mercurial/templates/rss/header.tmpl
${PYSITELIB}/mercurial/templates/rss/map
${PYSITELIB}/mercurial/templates/rss/tagentry.tmpl
${PYSITELIB}/mercurial/templates/rss/tags.tmpl
${PYSITELIB}/mercurial/templates/spartan/__init__.py
${PYSITELIB}/mercurial/templates/spartan/__init__.pyc
${PYSITELIB}/mercurial/templates/spartan/__init__.pyo
${PYSITELIB}/mercurial/templates/spartan/branches.tmpl
${PYSITELIB}/mercurial/templates/spartan/changelog.tmpl
${PYSITELIB}/mercurial/templates/spartan/changelogentry.tmpl
${PYSITELIB}/mercurial/templates/spartan/changeset.tmpl
${PYSITELIB}/mercurial/templates/spartan/error.tmpl
${PYSITELIB}/mercurial/templates/spartan/fileannotate.tmpl
${PYSITELIB}/mercurial/templates/spartan/filediff.tmpl
${PYSITELIB}/mercurial/templates/spartan/filelog.tmpl
${PYSITELIB}/mercurial/templates/spartan/filelogentry.tmpl
${PYSITELIB}/mercurial/templates/spartan/filerevision.tmpl
${PYSITELIB}/mercurial/templates/spartan/footer.tmpl
${PYSITELIB}/mercurial/templates/spartan/graph.tmpl
${PYSITELIB}/mercurial/templates/spartan/graphentry.tmpl
${PYSITELIB}/mercurial/templates/spartan/header.tmpl
${PYSITELIB}/mercurial/templates/spartan/index.tmpl
${PYSITELIB}/mercurial/templates/spartan/manifest.tmpl
${PYSITELIB}/mercurial/templates/spartan/map
${PYSITELIB}/mercurial/templates/spartan/notfound.tmpl
${PYSITELIB}/mercurial/templates/spartan/search.tmpl
${PYSITELIB}/mercurial/templates/spartan/shortlog.tmpl
${PYSITELIB}/mercurial/templates/spartan/shortlogentry.tmpl
${PYSITELIB}/mercurial/templates/spartan/tags.tmpl
${PYSITELIB}/mercurial/templates/static/__init__.py
${PYSITELIB}/mercurial/templates/static/__init__.pyc
${PYSITELIB}/mercurial/templates/static/__init__.pyo
${PYSITELIB}/mercurial/templates/static/background.png
${PYSITELIB}/mercurial/templates/static/coal-file.png
${PYSITELIB}/mercurial/templates/static/coal-folder.png
${PYSITELIB}/mercurial/templates/static/feed-icon-14x14.png
${PYSITELIB}/mercurial/templates/static/followlines.js
${PYSITELIB}/mercurial/templates/static/hgicon.png
${PYSITELIB}/mercurial/templates/static/hglogo.png
${PYSITELIB}/mercurial/templates/static/mercurial.js
${PYSITELIB}/mercurial/templates/static/style-extra-coal.css
${PYSITELIB}/mercurial/templates/static/style-gitweb.css
${PYSITELIB}/mercurial/templates/static/style-monoblue.css
${PYSITELIB}/mercurial/templates/static/style-paper.css
${PYSITELIB}/mercurial/templates/static/style.css
${PYSITELIB}/mercurial/templateutil.py
${PYSITELIB}/mercurial/templateutil.pyc
${PYSITELIB}/mercurial/templateutil.pyo
${PYSITELIB}/mercurial/testing/__init__.py
${PYSITELIB}/mercurial/testing/__init__.pyc
${PYSITELIB}/mercurial/testing/__init__.pyo
${PYSITELIB}/mercurial/testing/revlog.py
${PYSITELIB}/mercurial/testing/revlog.pyc
${PYSITELIB}/mercurial/testing/revlog.pyo
${PYSITELIB}/mercurial/testing/storage.py
${PYSITELIB}/mercurial/testing/storage.pyc
${PYSITELIB}/mercurial/testing/storage.pyo
${PYSITELIB}/mercurial/thirdparty/__init__.py
${PYSITELIB}/mercurial/thirdparty/__init__.pyc
${PYSITELIB}/mercurial/thirdparty/__init__.pyo
${PYSITELIB}/mercurial/thirdparty/attr/__init__.py
${PYSITELIB}/mercurial/thirdparty/attr/__init__.pyc
${PYSITELIB}/mercurial/thirdparty/attr/__init__.pyo
${PYSITELIB}/mercurial/thirdparty/attr/_compat.py
${PYSITELIB}/mercurial/thirdparty/attr/_compat.pyc
${PYSITELIB}/mercurial/thirdparty/attr/_compat.pyo
${PYSITELIB}/mercurial/thirdparty/attr/_config.py
${PYSITELIB}/mercurial/thirdparty/attr/_config.pyc
${PYSITELIB}/mercurial/thirdparty/attr/_config.pyo
${PYSITELIB}/mercurial/thirdparty/attr/_funcs.py
${PYSITELIB}/mercurial/thirdparty/attr/_funcs.pyc
${PYSITELIB}/mercurial/thirdparty/attr/_funcs.pyo
${PYSITELIB}/mercurial/thirdparty/attr/_make.py
${PYSITELIB}/mercurial/thirdparty/attr/_make.pyc
${PYSITELIB}/mercurial/thirdparty/attr/_make.pyo
${PYSITELIB}/mercurial/thirdparty/attr/converters.py
${PYSITELIB}/mercurial/thirdparty/attr/converters.pyc
${PYSITELIB}/mercurial/thirdparty/attr/converters.pyo
${PYSITELIB}/mercurial/thirdparty/attr/exceptions.py
${PYSITELIB}/mercurial/thirdparty/attr/exceptions.pyc
${PYSITELIB}/mercurial/thirdparty/attr/exceptions.pyo
${PYSITELIB}/mercurial/thirdparty/attr/filters.py
${PYSITELIB}/mercurial/thirdparty/attr/filters.pyc
${PYSITELIB}/mercurial/thirdparty/attr/filters.pyo
${PYSITELIB}/mercurial/thirdparty/attr/validators.py
${PYSITELIB}/mercurial/thirdparty/attr/validators.pyc
${PYSITELIB}/mercurial/thirdparty/attr/validators.pyo
${PYSITELIB}/mercurial/thirdparty/sha1dc.so
${PYSITELIB}/mercurial/thirdparty/zope/__init__.py
${PYSITELIB}/mercurial/thirdparty/zope/__init__.pyc
${PYSITELIB}/mercurial/thirdparty/zope/__init__.pyo
${PYSITELIB}/mercurial/thirdparty/zope/interface/__init__.py
${PYSITELIB}/mercurial/thirdparty/zope/interface/__init__.pyc
${PYSITELIB}/mercurial/thirdparty/zope/interface/__init__.pyo
${PYSITELIB}/mercurial/thirdparty/zope/interface/_compat.py
${PYSITELIB}/mercurial/thirdparty/zope/interface/_compat.pyc
${PYSITELIB}/mercurial/thirdparty/zope/interface/_compat.pyo
${PYSITELIB}/mercurial/thirdparty/zope/interface/_flatten.py
${PYSITELIB}/mercurial/thirdparty/zope/interface/_flatten.pyc
${PYSITELIB}/mercurial/thirdparty/zope/interface/_flatten.pyo
${PYSITELIB}/mercurial/thirdparty/zope/interface/_zope_interface_coptimizations.so
${PYSITELIB}/mercurial/thirdparty/zope/interface/adapter.py
${PYSITELIB}/mercurial/thirdparty/zope/interface/adapter.pyc
${PYSITELIB}/mercurial/thirdparty/zope/interface/adapter.pyo
${PYSITELIB}/mercurial/thirdparty/zope/interface/advice.py
${PYSITELIB}/mercurial/thirdparty/zope/interface/advice.pyc
${PYSITELIB}/mercurial/thirdparty/zope/interface/advice.pyo
${PYSITELIB}/mercurial/thirdparty/zope/interface/declarations.py
${PYSITELIB}/mercurial/thirdparty/zope/interface/declarations.pyc
${PYSITELIB}/mercurial/thirdparty/zope/interface/declarations.pyo
${PYSITELIB}/mercurial/thirdparty/zope/interface/document.py
${PYSITELIB}/mercurial/thirdparty/zope/interface/document.pyc
${PYSITELIB}/mercurial/thirdparty/zope/interface/document.pyo
${PYSITELIB}/mercurial/thirdparty/zope/interface/exceptions.py
${PYSITELIB}/mercurial/thirdparty/zope/interface/exceptions.pyc
${PYSITELIB}/mercurial/thirdparty/zope/interface/exceptions.pyo
${PYSITELIB}/mercurial/thirdparty/zope/interface/interface.py
${PYSITELIB}/mercurial/thirdparty/zope/interface/interface.pyc
${PYSITELIB}/mercurial/thirdparty/zope/interface/interface.pyo
${PYSITELIB}/mercurial/thirdparty/zope/interface/interfaces.py
${PYSITELIB}/mercurial/thirdparty/zope/interface/interfaces.pyc
${PYSITELIB}/mercurial/thirdparty/zope/interface/interfaces.pyo
${PYSITELIB}/mercurial/thirdparty/zope/interface/registry.py
${PYSITELIB}/mercurial/thirdparty/zope/interface/registry.pyc
${PYSITELIB}/mercurial/thirdparty/zope/interface/registry.pyo
${PYSITELIB}/mercurial/thirdparty/zope/interface/ro.py
${PYSITELIB}/mercurial/thirdparty/zope/interface/ro.pyc
${PYSITELIB}/mercurial/thirdparty/zope/interface/ro.pyo
${PYSITELIB}/mercurial/thirdparty/zope/interface/verify.py
${PYSITELIB}/mercurial/thirdparty/zope/interface/verify.pyc
${PYSITELIB}/mercurial/thirdparty/zope/interface/verify.pyo
${PYSITELIB}/mercurial/transaction.py
${PYSITELIB}/mercurial/transaction.pyc
${PYSITELIB}/mercurial/transaction.pyo
${PYSITELIB}/mercurial/treediscovery.py
${PYSITELIB}/mercurial/treediscovery.pyc
${PYSITELIB}/mercurial/treediscovery.pyo
${PYSITELIB}/mercurial/txnutil.py
${PYSITELIB}/mercurial/txnutil.pyc
${PYSITELIB}/mercurial/txnutil.pyo
${PYSITELIB}/mercurial/ui.py
${PYSITELIB}/mercurial/ui.pyc
${PYSITELIB}/mercurial/ui.pyo
${PYSITELIB}/mercurial/unionrepo.py
${PYSITELIB}/mercurial/unionrepo.pyc
${PYSITELIB}/mercurial/unionrepo.pyo
${PYSITELIB}/mercurial/upgrade.py
${PYSITELIB}/mercurial/upgrade.pyc
${PYSITELIB}/mercurial/upgrade.pyo
${PYSITELIB}/mercurial/upgrade_utils/__init__.py
${PYSITELIB}/mercurial/upgrade_utils/__init__.pyc
${PYSITELIB}/mercurial/upgrade_utils/__init__.pyo
${PYSITELIB}/mercurial/upgrade_utils/actions.py
${PYSITELIB}/mercurial/upgrade_utils/actions.pyc
${PYSITELIB}/mercurial/upgrade_utils/actions.pyo
${PYSITELIB}/mercurial/upgrade_utils/auto_upgrade.py
${PYSITELIB}/mercurial/upgrade_utils/auto_upgrade.pyc
${PYSITELIB}/mercurial/upgrade_utils/auto_upgrade.pyo
${PYSITELIB}/mercurial/upgrade_utils/engine.py
${PYSITELIB}/mercurial/upgrade_utils/engine.pyc
${PYSITELIB}/mercurial/upgrade_utils/engine.pyo
${PYSITELIB}/mercurial/url.py
${PYSITELIB}/mercurial/url.pyc
${PYSITELIB}/mercurial/url.pyo
${PYSITELIB}/mercurial/urllibcompat.py
${PYSITELIB}/mercurial/urllibcompat.pyc
${PYSITELIB}/mercurial/urllibcompat.pyo
${PYSITELIB}/mercurial/util.py
${PYSITELIB}/mercurial/util.pyc
${PYSITELIB}/mercurial/util.pyo
${PYSITELIB}/mercurial/utils/__init__.py
${PYSITELIB}/mercurial/utils/__init__.pyc
${PYSITELIB}/mercurial/utils/__init__.pyo
${PYSITELIB}/mercurial/utils/cborutil.py
${PYSITELIB}/mercurial/utils/cborutil.pyc
${PYSITELIB}/mercurial/utils/cborutil.pyo
${PYSITELIB}/mercurial/utils/compression.py
${PYSITELIB}/mercurial/utils/compression.pyc
${PYSITELIB}/mercurial/utils/compression.pyo
${PYSITELIB}/mercurial/utils/dateutil.py
${PYSITELIB}/mercurial/utils/dateutil.pyc
${PYSITELIB}/mercurial/utils/dateutil.pyo
${PYSITELIB}/mercurial/utils/hashutil.py
${PYSITELIB}/mercurial/utils/hashutil.pyc
${PYSITELIB}/mercurial/utils/hashutil.pyo
${PYSITELIB}/mercurial/utils/memorytop.py
${PYSITELIB}/mercurial/utils/memorytop.pyc
${PYSITELIB}/mercurial/utils/memorytop.pyo
${PYSITELIB}/mercurial/utils/procutil.py
${PYSITELIB}/mercurial/utils/procutil.pyc
${PYSITELIB}/mercurial/utils/procutil.pyo
${PYSITELIB}/mercurial/utils/repoviewutil.py
${PYSITELIB}/mercurial/utils/repoviewutil.pyc
${PYSITELIB}/mercurial/utils/repoviewutil.pyo
${PYSITELIB}/mercurial/utils/resourceutil.py
${PYSITELIB}/mercurial/utils/resourceutil.pyc
${PYSITELIB}/mercurial/utils/resourceutil.pyo
${PYSITELIB}/mercurial/utils/storageutil.py
${PYSITELIB}/mercurial/utils/storageutil.pyc
${PYSITELIB}/mercurial/utils/storageutil.pyo
${PYSITELIB}/mercurial/utils/stringutil.py
${PYSITELIB}/mercurial/utils/stringutil.pyc
${PYSITELIB}/mercurial/utils/stringutil.pyo
${PYSITELIB}/mercurial/utils/urlutil.py
${PYSITELIB}/mercurial/utils/urlutil.pyc
${PYSITELIB}/mercurial/utils/urlutil.pyo
${PYSITELIB}/mercurial/verify.py
${PYSITELIB}/mercurial/verify.pyc
${PYSITELIB}/mercurial/verify.pyo
${PYSITELIB}/mercurial/vfs.py
${PYSITELIB}/mercurial/vfs.pyc
${PYSITELIB}/mercurial/vfs.pyo
${PYSITELIB}/mercurial/win32.py
${PYSITELIB}/mercurial/win32.pyc
${PYSITELIB}/mercurial/win32.pyo
${PYSITELIB}/mercurial/windows.py
${PYSITELIB}/mercurial/windows.pyc
${PYSITELIB}/mercurial/windows.pyo
${PYSITELIB}/mercurial/wireprotoframing.py
${PYSITELIB}/mercurial/wireprotoframing.pyc
${PYSITELIB}/mercurial/wireprotoframing.pyo
${PYSITELIB}/mercurial/wireprotoserver.py
${PYSITELIB}/mercurial/wireprotoserver.pyc
${PYSITELIB}/mercurial/wireprotoserver.pyo
${PYSITELIB}/mercurial/wireprototypes.py
${PYSITELIB}/mercurial/wireprototypes.pyc
${PYSITELIB}/mercurial/wireprototypes.pyo
${PYSITELIB}/mercurial/wireprotov1peer.py
${PYSITELIB}/mercurial/wireprotov1peer.pyc
${PYSITELIB}/mercurial/wireprotov1peer.pyo
${PYSITELIB}/mercurial/wireprotov1server.py
${PYSITELIB}/mercurial/wireprotov1server.pyc
${PYSITELIB}/mercurial/wireprotov1server.pyo
${PYSITELIB}/mercurial/worker.py
${PYSITELIB}/mercurial/worker.pyc
${PYSITELIB}/mercurial/worker.pyo
${PYSITELIB}/mercurial/zstd.so
man/man1/hg.1
man/man5/hgignore.5
man/man5/hgrc.5
share/bash-completion/completions/hg
share/doc/mercurial/README.rst
share/zsh/site-functions/_hg