-
Notifications
You must be signed in to change notification settings - Fork 0
/
py-modindex.html
2435 lines (2413 loc) · 112 KB
/
py-modindex.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Pythonモジュール索引 — Python 2.7.14 ドキュメント</title>
<link rel="stylesheet" href="_static/classic.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '2.7.14',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/translations.js"></script>
<script type="text/javascript" src="_static/sidebar.js"></script>
<link rel="search" type="application/opensearchdescription+xml"
title="Python 2.7.14 ドキュメント 内を検索"
href="_static/opensearch.xml"/>
<link rel="author" title="このドキュメントについて" href="about.html" />
<link rel="index" title="索引" href="genindex.html" />
<link rel="search" title="検索" href="search.html" />
<link rel="copyright" title="Copyright" href="copyright.html" />
<link rel="shortcut icon" type="image/png" href="_static/py.png" />
<link rel="canonical" href="https://docs.python.jp/3/py-modindex.html" />
<script type="text/javascript" src="_static/copybutton.js"></script>
<script type="text/javascript" src="_static/_jp.js"></script>
<script type="text/javascript" src="_static/version_switch.js"></script>
<script type="text/javascript">
DOCUMENTATION_OPTIONS.COLLAPSE_INDEX = true;
</script>
</head>
<body>
<div class="related" role="navigation" aria-label="related navigation">
<h3>ナビゲーション</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="総索引"
accesskey="I">索引</a></li>
<li class="right" >
<a href="#" title="Pythonモジュール索引"
>モジュール</a> |</li>
<li><img src="_static/py.png" alt=""
style="vertical-align: middle; margin-top: -1px"/></li>
<li><a href="http://www.python.jp/">Python</a> »</li>
<li>
<span class="version_switcher_placeholder">2.7.14</span>
<a href="index.html">ドキュメント</a> »
</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<h1>Pythonモジュール索引</h1>
<div class="modindex-jumpbox">
<a href="#cap-_"><strong>_</strong></a> |
<a href="#cap-a"><strong>a</strong></a> |
<a href="#cap-b"><strong>b</strong></a> |
<a href="#cap-c"><strong>c</strong></a> |
<a href="#cap-d"><strong>d</strong></a> |
<a href="#cap-e"><strong>e</strong></a> |
<a href="#cap-f"><strong>f</strong></a> |
<a href="#cap-g"><strong>g</strong></a> |
<a href="#cap-h"><strong>h</strong></a> |
<a href="#cap-i"><strong>i</strong></a> |
<a href="#cap-j"><strong>j</strong></a> |
<a href="#cap-k"><strong>k</strong></a> |
<a href="#cap-l"><strong>l</strong></a> |
<a href="#cap-m"><strong>m</strong></a> |
<a href="#cap-n"><strong>n</strong></a> |
<a href="#cap-o"><strong>o</strong></a> |
<a href="#cap-p"><strong>p</strong></a> |
<a href="#cap-q"><strong>q</strong></a> |
<a href="#cap-r"><strong>r</strong></a> |
<a href="#cap-s"><strong>s</strong></a> |
<a href="#cap-t"><strong>t</strong></a> |
<a href="#cap-u"><strong>u</strong></a> |
<a href="#cap-v"><strong>v</strong></a> |
<a href="#cap-w"><strong>w</strong></a> |
<a href="#cap-x"><strong>x</strong></a> |
<a href="#cap-z"><strong>z</strong></a>
</div>
<table class="indextable modindextable">
<tr class="pcap"><td></td><td> </td><td></td></tr>
<tr class="cap" id="cap-_"><td></td><td>
<strong>_</strong></td><td></td></tr>
<tr>
<td></td>
<td>
<a href="library/__builtin__.html#module-__builtin__"><code class="xref">__builtin__</code></a></td><td>
<em>The module that provides the built-in namespace.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/__future__.html#module-__future__"><code class="xref">__future__</code></a></td><td>
<em>Future statement definitions</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/__main__.html#module-__main__"><code class="xref">__main__</code></a></td><td>
<em>The environment where the top-level script is run.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/_winreg.html#module-_winreg"><code class="xref">_winreg</code></a> <em>(Windows)</em></td><td>
<em>Routines and objects for manipulating the Windows registry.</em></td></tr>
<tr class="pcap"><td></td><td> </td><td></td></tr>
<tr class="cap" id="cap-a"><td></td><td>
<strong>a</strong></td><td></td></tr>
<tr>
<td></td>
<td>
<a href="library/abc.html#module-abc"><code class="xref">abc</code></a></td><td>
<em>Abstract base classes according to PEP 3119.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/aepack.html#module-aepack"><code class="xref">aepack</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Conversion between Python variables and AppleEvent data containers.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/aetools.html#module-aetools"><code class="xref">aetools</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Basic support for sending Apple Events</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/aetypes.html#module-aetypes"><code class="xref">aetypes</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Python representation of the Apple Event Object Model.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/aifc.html#module-aifc"><code class="xref">aifc</code></a></td><td>
<em>Read and write audio files in AIFF or AIFC format.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/al.html#module-al"><code class="xref">al</code></a> <em>(IRIX)</em></td><td><strong>撤廃:</strong>
<em>Audio functions on the SGI.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/al.html#module-AL"><code class="xref">AL</code></a> <em>(IRIX)</em></td><td><strong>撤廃:</strong>
<em>Constants used with the al module.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/anydbm.html#module-anydbm"><code class="xref">anydbm</code></a></td><td>
<em>Generic interface to DBM-style database modules.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/undoc.html#module-applesingle"><code class="xref">applesingle</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Rudimentary decoder for AppleSingle format files.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/argparse.html#module-argparse"><code class="xref">argparse</code></a></td><td>
<em>Command-line option and argument parsing library.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/array.html#module-array"><code class="xref">array</code></a></td><td>
<em>Space efficient arrays of uniformly typed numeric values.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/ast.html#module-ast"><code class="xref">ast</code></a></td><td>
<em>Abstract Syntax Tree classes and manipulation.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/asynchat.html#module-asynchat"><code class="xref">asynchat</code></a></td><td>
<em>Support for asynchronous command/response protocols.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/asyncore.html#module-asyncore"><code class="xref">asyncore</code></a></td><td>
<em>A base class for developing asynchronous socket handling
services.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/atexit.html#module-atexit"><code class="xref">atexit</code></a></td><td>
<em>Register and execute cleanup functions.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/audioop.html#module-audioop"><code class="xref">audioop</code></a></td><td>
<em>Manipulate raw audio data.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/autogil.html#module-autoGIL"><code class="xref">autoGIL</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Global Interpreter Lock handling in event loops.</em></td></tr>
<tr class="pcap"><td></td><td> </td><td></td></tr>
<tr class="cap" id="cap-b"><td></td><td>
<strong>b</strong></td><td></td></tr>
<tr>
<td></td>
<td>
<a href="library/base64.html#module-base64"><code class="xref">base64</code></a></td><td>
<em>RFC 3548: Base16, Base32, Base64 Data Encodings</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/basehttpserver.html#module-BaseHTTPServer"><code class="xref">BaseHTTPServer</code></a></td><td>
<em>Basic HTTP server (base class for SimpleHTTPServer and CGIHTTPServer).</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/bastion.html#module-Bastion"><code class="xref">Bastion</code></a></td><td><strong>撤廃:</strong>
<em>Providing restricted access to objects.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/bdb.html#module-bdb"><code class="xref">bdb</code></a></td><td>
<em>Debugger framework.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/binascii.html#module-binascii"><code class="xref">binascii</code></a></td><td>
<em>Tools for converting between binary and various ASCII-encoded binary
representations.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/binhex.html#module-binhex"><code class="xref">binhex</code></a></td><td>
<em>Encode and decode files in binhex4 format.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/bisect.html#module-bisect"><code class="xref">bisect</code></a></td><td>
<em>Array bisection algorithms for binary searching.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/bsddb.html#module-bsddb"><code class="xref">bsddb</code></a></td><td>
<em>Interface to Berkeley DB database library</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/undoc.html#module-buildtools"><code class="xref">buildtools</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Helper module for BuildApplet, BuildApplication and macfreeze.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/bz2.html#module-bz2"><code class="xref">bz2</code></a></td><td>
<em>Interface to compression and decompression routines compatible with bzip2.</em></td></tr>
<tr class="pcap"><td></td><td> </td><td></td></tr>
<tr class="cap" id="cap-c"><td></td><td>
<strong>c</strong></td><td></td></tr>
<tr>
<td></td>
<td>
<a href="library/calendar.html#module-calendar"><code class="xref">calendar</code></a></td><td>
<em>Functions for working with calendars, including some emulation of the Unix cal
program.</em></td></tr>
<tr>
<td><img src="_static/minus.png" class="toggler"
id="toggle-1" style="display: none" alt="-" /></td>
<td>
<code class="xref">Carbon</code></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.AE"><code class="xref">Carbon.AE</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Apple Events toolbox.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.AH"><code class="xref">Carbon.AH</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Apple Help manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.App"><code class="xref">Carbon.App</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Appearance Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Appearance"><code class="xref">Carbon.Appearance</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constant definitions for the interface to the Appearance Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.CarbonEvents"><code class="xref">Carbon.CarbonEvents</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Carbon Event Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.CarbonEvt"><code class="xref">Carbon.CarbonEvt</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Carbon Event Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.CF"><code class="xref">Carbon.CF</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Core Foundation.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.CG"><code class="xref">Carbon.CG</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to Core Graphics.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Cm"><code class="xref">Carbon.Cm</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Component Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Components"><code class="xref">Carbon.Components</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Component Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.ControlAccessor"><code class="xref">Carbon.ControlAccessor</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Accessor functions for the interface to the Control Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Controls"><code class="xref">Carbon.Controls</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Control Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.CoreFounation"><code class="xref">Carbon.CoreFounation</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to CoreFoundation.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.CoreGraphics"><code class="xref">Carbon.CoreGraphics</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to CoreGraphics.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Ctl"><code class="xref">Carbon.Ctl</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Control Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Dialogs"><code class="xref">Carbon.Dialogs</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Dialog Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Dlg"><code class="xref">Carbon.Dlg</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Dialog Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Drag"><code class="xref">Carbon.Drag</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Drag and Drop Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Dragconst"><code class="xref">Carbon.Dragconst</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Drag and Drop Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Events"><code class="xref">Carbon.Events</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the classic Event Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Evt"><code class="xref">Carbon.Evt</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the classic Event Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.File"><code class="xref">Carbon.File</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the File Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Files"><code class="xref">Carbon.Files</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the File Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Fm"><code class="xref">Carbon.Fm</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Font Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Folder"><code class="xref">Carbon.Folder</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Folder Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Folders"><code class="xref">Carbon.Folders</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Folder Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Fonts"><code class="xref">Carbon.Fonts</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Font Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Help"><code class="xref">Carbon.Help</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Carbon Help Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.IBCarbon"><code class="xref">Carbon.IBCarbon</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Carbon InterfaceBuilder support libraries.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.IBCarbonRuntime"><code class="xref">Carbon.IBCarbonRuntime</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Carbon InterfaceBuilder support libraries.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Icns"><code class="xref">Carbon.Icns</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Carbon Icon Manager</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Icons"><code class="xref">Carbon.Icons</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Carbon Icon Manager</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Launch"><code class="xref">Carbon.Launch</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Carbon Launch Services.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.LaunchServices"><code class="xref">Carbon.LaunchServices</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Carbon Launch Services.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.List"><code class="xref">Carbon.List</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the List Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Lists"><code class="xref">Carbon.Lists</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the List Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.MacHelp"><code class="xref">Carbon.MacHelp</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Carbon Help Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.MediaDescr"><code class="xref">Carbon.MediaDescr</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Parsers and generators for Quicktime Media descriptors</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Menu"><code class="xref">Carbon.Menu</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Menu Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Menus"><code class="xref">Carbon.Menus</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Menu Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Mlte"><code class="xref">Carbon.Mlte</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the MultiLingual Text Editor.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.OSA"><code class="xref">Carbon.OSA</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Carbon OSA Library.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.OSAconst"><code class="xref">Carbon.OSAconst</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Carbon OSA Library.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Qd"><code class="xref">Carbon.Qd</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the QuickDraw toolbox.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Qdoffs"><code class="xref">Carbon.Qdoffs</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the QuickDraw Offscreen APIs.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.QDOffscreen"><code class="xref">Carbon.QDOffscreen</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the QuickDraw Offscreen APIs.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Qt"><code class="xref">Carbon.Qt</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the QuickTime toolbox.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.QuickDraw"><code class="xref">Carbon.QuickDraw</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the QuickDraw toolbox.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.QuickTime"><code class="xref">Carbon.QuickTime</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the QuickTime toolbox.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Res"><code class="xref">Carbon.Res</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Resource Manager and Handles.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Resources"><code class="xref">Carbon.Resources</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Resource Manager and Handles.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Scrap"><code class="xref">Carbon.Scrap</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>The Scrap Manager provides basic services for implementing cut & paste and
clipboard operations.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Snd"><code class="xref">Carbon.Snd</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Sound Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Sound"><code class="xref">Carbon.Sound</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Sound Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.TE"><code class="xref">Carbon.TE</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to TextEdit.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.TextEdit"><code class="xref">Carbon.TextEdit</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to TextEdit.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Win"><code class="xref">Carbon.Win</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the Window Manager.</em></td></tr>
<tr class="cg-1">
<td></td>
<td>   
<a href="library/carbon.html#module-Carbon.Windows"><code class="xref">Carbon.Windows</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Constants for the interface to the Window Manager.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/cd.html#module-cd"><code class="xref">cd</code></a> <em>(IRIX)</em></td><td><strong>撤廃:</strong>
<em>Interface to the CD-ROM on Silicon Graphics systems.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/undoc.html#module-cfmfile"><code class="xref">cfmfile</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Code Fragment Resource module.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/cgi.html#module-cgi"><code class="xref">cgi</code></a></td><td>
<em>Helpers for running Python scripts via the Common Gateway Interface.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/cgihttpserver.html#module-CGIHTTPServer"><code class="xref">CGIHTTPServer</code></a></td><td>
<em>This module provides a request handler for HTTP servers which can run CGI
scripts.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/cgitb.html#module-cgitb"><code class="xref">cgitb</code></a></td><td>
<em>Configurable traceback handler for CGI scripts.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/chunk.html#module-chunk"><code class="xref">chunk</code></a></td><td>
<em>Module to read IFF chunks.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/cmath.html#module-cmath"><code class="xref">cmath</code></a></td><td>
<em>Mathematical functions for complex numbers.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/cmd.html#module-cmd"><code class="xref">cmd</code></a></td><td>
<em>Build line-oriented command interpreters.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/code.html#module-code"><code class="xref">code</code></a></td><td>
<em>Facilities to implement read-eval-print loops.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/codecs.html#module-codecs"><code class="xref">codecs</code></a></td><td>
<em>Encode and decode data and streams.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/codeop.html#module-codeop"><code class="xref">codeop</code></a></td><td>
<em>Compile (possibly incomplete) Python code.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/collections.html#module-collections"><code class="xref">collections</code></a></td><td>
<em>High-performance datatypes</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/colorpicker.html#module-ColorPicker"><code class="xref">ColorPicker</code></a> <em>(Mac)</em></td><td><strong>撤廃:</strong>
<em>Interface to the standard color selection dialog.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/colorsys.html#module-colorsys"><code class="xref">colorsys</code></a></td><td>
<em>Conversion functions between RGB and other color systems.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/commands.html#module-commands"><code class="xref">commands</code></a> <em>(Unix)</em></td><td><strong>撤廃:</strong>
<em>Utility functions for running external commands.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/compileall.html#module-compileall"><code class="xref">compileall</code></a></td><td>
<em>Tools for byte-compiling all Python source files in a directory tree.</em></td></tr>
<tr>
<td><img src="_static/minus.png" class="toggler"
id="toggle-2" style="display: none" alt="-" /></td>
<td>
<a href="library/compiler.html#module-compiler"><code class="xref">compiler</code></a></td><td><strong>撤廃:</strong>
<em>Python code compiler written in Python.</em></td></tr>
<tr class="cg-2">
<td></td>
<td>   
<a href="library/compiler.html#module-compiler.ast"><code class="xref">compiler.ast</code></a></td><td>
<em></em></td></tr>
<tr class="cg-2">
<td></td>
<td>   
<a href="library/compiler.html#module-compiler.visitor"><code class="xref">compiler.visitor</code></a></td><td>
<em></em></td></tr>
<tr>
<td></td>
<td>
<a href="library/configparser.html#module-ConfigParser"><code class="xref">ConfigParser</code></a></td><td>
<em>Configuration file parser.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/contextlib.html#module-contextlib"><code class="xref">contextlib</code></a></td><td>
<em>Utilities for with-statement contexts.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/cookie.html#module-Cookie"><code class="xref">Cookie</code></a></td><td>
<em>Support for HTTP state management (cookies).</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/cookielib.html#module-cookielib"><code class="xref">cookielib</code></a></td><td>
<em>Classes for automatic handling of HTTP cookies.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/copy.html#module-copy"><code class="xref">copy</code></a></td><td>
<em>Shallow and deep copy operations.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/copy_reg.html#module-copy_reg"><code class="xref">copy_reg</code></a></td><td>
<em>Register pickle support functions.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/pickle.html#module-cPickle"><code class="xref">cPickle</code></a></td><td>
<em>Faster version of pickle, but not subclassable.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/profile.html#module-cProfile"><code class="xref">cProfile</code></a></td><td>
<em></em></td></tr>
<tr>
<td></td>
<td>
<a href="library/crypt.html#module-crypt"><code class="xref">crypt</code></a> <em>(Unix)</em></td><td>
<em>The crypt() function used to check Unix passwords.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/stringio.html#module-cStringIO"><code class="xref">cStringIO</code></a></td><td>
<em>Faster version of StringIO, but not subclassable.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/csv.html#module-csv"><code class="xref">csv</code></a></td><td>
<em>Write and read tabular data to and from delimited files.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/ctypes.html#module-ctypes"><code class="xref">ctypes</code></a></td><td>
<em>A foreign function library for Python.</em></td></tr>
<tr>
<td><img src="_static/minus.png" class="toggler"
id="toggle-3" style="display: none" alt="-" /></td>
<td>
<a href="library/curses.html#module-curses"><code class="xref">curses</code></a> <em>(Unix)</em></td><td>
<em>An interface to the curses library, providing portable terminal
handling.</em></td></tr>
<tr class="cg-3">
<td></td>
<td>   
<a href="library/curses.ascii.html#module-curses.ascii"><code class="xref">curses.ascii</code></a></td><td>
<em>Constants and set-membership functions for ASCII characters.</em></td></tr>
<tr class="cg-3">
<td></td>
<td>   
<a href="library/curses.panel.html#module-curses.panel"><code class="xref">curses.panel</code></a></td><td>
<em>A panel stack extension that adds depth to curses windows.</em></td></tr>
<tr class="cg-3">
<td></td>
<td>   
<a href="library/curses.html#module-curses.textpad"><code class="xref">curses.textpad</code></a></td><td>
<em>Emacs-like input editing in a curses window.</em></td></tr>
<tr class="pcap"><td></td><td> </td><td></td></tr>
<tr class="cap" id="cap-d"><td></td><td>
<strong>d</strong></td><td></td></tr>
<tr>
<td></td>
<td>
<a href="library/datetime.html#module-datetime"><code class="xref">datetime</code></a></td><td>
<em>Basic date and time types.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/dbhash.html#module-dbhash"><code class="xref">dbhash</code></a></td><td>
<em>DBM-style interface to the BSD database library.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/dbm.html#module-dbm"><code class="xref">dbm</code></a> <em>(Unix)</em></td><td>
<em>The standard "database" interface, based on ndbm.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/decimal.html#module-decimal"><code class="xref">decimal</code></a></td><td>
<em>Implementation of the General Decimal Arithmetic Specification.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/gl.html#module-DEVICE"><code class="xref">DEVICE</code></a> <em>(IRIX)</em></td><td><strong>撤廃:</strong>
<em>Constants used with the gl module.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/difflib.html#module-difflib"><code class="xref">difflib</code></a></td><td>
<em>Helpers for computing differences between objects.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/dircache.html#module-dircache"><code class="xref">dircache</code></a></td><td><strong>撤廃:</strong>
<em>Return directory listing, with cache mechanism.</em></td></tr>
<tr>
<td></td>
<td>
<a href="library/dis.html#module-dis"><code class="xref">dis</code></a></td><td>
<em>Disassembler for Python bytecode.</em></td></tr>
<tr>
<td><img src="_static/minus.png" class="toggler"
id="toggle-4" style="display: none" alt="-" /></td>
<td>
<a href="library/distutils.html#module-distutils"><code class="xref">distutils</code></a></td><td>
<em>Support for building and installing Python modules into an
existing Python installation.</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.archive_util"><code class="xref">distutils.archive_util</code></a></td><td>
<em>Utility functions for creating archive files (tarballs, zip files, ...)</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.bcppcompiler"><code class="xref">distutils.bcppcompiler</code></a></td><td>
<em></em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.ccompiler"><code class="xref">distutils.ccompiler</code></a></td><td>
<em>Abstract CCompiler class</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.cmd"><code class="xref">distutils.cmd</code></a></td><td>
<em>This module provides the abstract base class Command. This class
is subclassed by the modules in the distutils.command subpackage.</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command"><code class="xref">distutils.command</code></a></td><td>
<em>This subpackage contains one module for each standard Distutils command.</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.bdist"><code class="xref">distutils.command.bdist</code></a></td><td>
<em>Build a binary installer for a package</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.bdist_dumb"><code class="xref">distutils.command.bdist_dumb</code></a></td><td>
<em>Build a "dumb" installer - a simple archive of files</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.bdist_msi"><code class="xref">distutils.command.bdist_msi</code></a></td><td>
<em>Build a binary distribution as a Windows MSI file</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.bdist_packager"><code class="xref">distutils.command.bdist_packager</code></a></td><td>
<em>Abstract base class for packagers</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.bdist_rpm"><code class="xref">distutils.command.bdist_rpm</code></a></td><td>
<em>Build a binary distribution as a Redhat RPM and SRPM</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.bdist_wininst"><code class="xref">distutils.command.bdist_wininst</code></a></td><td>
<em>Build a Windows installer</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.build"><code class="xref">distutils.command.build</code></a></td><td>
<em>Build all files of a package</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.build_clib"><code class="xref">distutils.command.build_clib</code></a></td><td>
<em>Build any C libraries in a package</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.build_ext"><code class="xref">distutils.command.build_ext</code></a></td><td>
<em>Build any extensions in a package</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.build_py"><code class="xref">distutils.command.build_py</code></a></td><td>
<em>Build the .py/.pyc files of a package</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.build_scripts"><code class="xref">distutils.command.build_scripts</code></a></td><td>
<em>Build the scripts of a package</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.check"><code class="xref">distutils.command.check</code></a></td><td>
<em>Check the metadata of a package</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.clean"><code class="xref">distutils.command.clean</code></a></td><td>
<em>Clean a package build area</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.config"><code class="xref">distutils.command.config</code></a></td><td>
<em>Perform package configuration</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.install"><code class="xref">distutils.command.install</code></a></td><td>
<em>Install a package</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.install_data"><code class="xref">distutils.command.install_data</code></a></td><td>
<em>Install data files from a package</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.install_headers"><code class="xref">distutils.command.install_headers</code></a></td><td>
<em>Install C/C++ header files from a package</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.install_lib"><code class="xref">distutils.command.install_lib</code></a></td><td>
<em>Install library files from a package</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.install_scripts"><code class="xref">distutils.command.install_scripts</code></a></td><td>
<em>Install script files from a package</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.register"><code class="xref">distutils.command.register</code></a></td><td>
<em>Register a module with the Python Package Index</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.command.sdist"><code class="xref">distutils.command.sdist</code></a></td><td>
<em>Build a source distribution</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.core"><code class="xref">distutils.core</code></a></td><td>
<em>The core Distutils functionality</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.cygwinccompiler"><code class="xref">distutils.cygwinccompiler</code></a></td><td>
<em></em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.debug"><code class="xref">distutils.debug</code></a></td><td>
<em>Provides the debug flag for distutils</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.dep_util"><code class="xref">distutils.dep_util</code></a></td><td>
<em>Utility functions for simple dependency checking</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.dir_util"><code class="xref">distutils.dir_util</code></a></td><td>
<em>Utility functions for operating on directories and directory trees</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.dist"><code class="xref">distutils.dist</code></a></td><td>
<em>Provides the Distribution class, which represents the module distribution being
built/installed/distributed</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.emxccompiler"><code class="xref">distutils.emxccompiler</code></a></td><td>
<em>OS/2 EMX Compiler support</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.errors"><code class="xref">distutils.errors</code></a></td><td>
<em>Provides standard distutils exceptions</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.extension"><code class="xref">distutils.extension</code></a></td><td>
<em>Provides the Extension class, used to describe C/C++ extension modules in setup
scripts</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.fancy_getopt"><code class="xref">distutils.fancy_getopt</code></a></td><td>
<em>Additional getopt functionality</em></td></tr>
<tr class="cg-4">
<td></td>
<td>   
<a href="distutils/apiref.html#module-distutils.file_util"><code class="xref">distutils.file_util</code></a></td><td>
<em>Utility functions for operating on single files</em></td></tr>
<tr class="cg-4">
<td></td>