This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
reentrant buffers
[perl5.git] / pod / perlmodlib.pod
1 =for maintainers
2 Generated by perlmodlib.PL -- DO NOT EDIT!
3
4 =head1 NAME
5
6 perlmodlib - constructing new Perl modules and finding existing ones
7
8 =head1 THE PERL MODULE LIBRARY
9
10 Many modules are included in the Perl distribution.  These are described
11 below, and all end in F<.pm>.  You may discover compiled library
12 files (usually ending in F<.so>) or small pieces of modules to be
13 autoloaded (ending in F<.al>); these were automatically generated
14 by the installation process.  You may also discover files in the
15 library directory that end in either F<.pl> or F<.ph>.  These are
16 old libraries supplied so that old programs that use them still
17 run.  The F<.pl> files will all eventually be converted into standard
18 modules, and the F<.ph> files made by B<h2ph> will probably end up
19 as extension modules made by B<h2xs>.  (Some F<.ph> values may
20 already be available through the POSIX, Errno, or Fcntl modules.)
21 The B<pl2pm> file in the distribution may help in your conversion,
22 but it's just a mechanical process and therefore far from bulletproof.
23
24 =head2 Pragmatic Modules
25
26 They work somewhat like compiler directives (pragmata) in that they
27 tend to affect the compilation of your program, and thus will usually
28 work well only when used within a C<use>, or C<no>.  Most of these
29 are lexically scoped, so an inner BLOCK may countermand them
30 by saying:
31
32     no integer;
33     no strict 'refs';
34     no warnings;
35
36 which lasts until the end of that BLOCK.
37
38 Some pragmas are lexically scoped--typically those that affect the
39 C<$^H> hints variable.  Others affect the current package instead,
40 like C<use vars> and C<use subs>, which allow you to predeclare a
41 variables or subroutines within a particular I<file> rather than
42 just a block.  Such declarations are effective for the entire file
43 for which they were declared.  You cannot rescind them with C<no
44 vars> or C<no subs>.
45
46 The following pragmas are defined (and have their own documentation).
47
48 =over 12
49
50 =item attributes
51
52 Get/set subroutine or variable attributes
53
54 =item attrs
55
56 Set/get attributes of a subroutine (deprecated)
57
58 =item autouse
59
60 Postpone load of modules until a function is used
61
62 =item base
63
64 Establish IS-A relationship with base class at compile time
65
66 =item bigint
67
68 Transparent BigInteger support for Perl
69
70 =item bignum
71
72 Transparent BigNumber support for Perl
73
74 =item bigrat
75
76 Transparent BigNumber/BigRationale support for Perl
77
78 =item blib
79
80 Use MakeMaker's uninstalled version of a package
81
82 =item bytes
83
84 Force byte semantics rather than character semantics
85
86 =item charnames
87
88 Define character names for C<\N{named}> string literal escapes
89
90 =item constant
91
92 Declare constants
93
94 =item diagnostics
95
96 Perl compiler pragma to force verbose warning diagnostics
97
98 =item encoding
99
100 Allows you to write your script in non-ascii or non-utf8
101
102 =item fields
103
104 Compile-time class fields
105
106 =item filetest
107
108 Control the filetest permission operators
109
110 =item if
111
112 C<use> a Perl module if a condition holds
113
114 =item integer
115
116 Use integer arithmetic instead of floating point
117
118 =item less
119
120 Request less of something from the compiler
121
122 =item lib
123
124 Manipulate @INC at compile time
125
126 =item locale
127
128 Use and avoid POSIX locales for built-in operations
129
130 =item open
131
132 Set default PerlIO layers for input and output
133
134 =item ops
135
136 Restrict unsafe operations when compiling
137
138 =item overload
139
140 Package for overloading perl operations
141
142 =item re
143
144 Alter regular expression behaviour
145
146 =item sigtrap
147
148 Enable simple signal handling
149
150 =item sort
151
152 Control sort() behaviour
153
154 =item strict
155
156 Restrict unsafe constructs
157
158 =item subs
159
160 Predeclare sub names
161
162 =item threads
163
164 Perl extension allowing use of interpreter based threads from perl
165
166 =item threads::shared
167
168 Perl extension for sharing data structures between threads
169
170 =item utf8
171
172 Enable/disable UTF-8 (or UTF-EBCDIC) in source code
173
174 =item vars
175
176 Predeclare global variable names (obsolete)
177
178 =item vmsish
179
180 Control VMS-specific language features
181
182 =item warnings
183
184 Control optional warnings
185
186 =item warnings::register
187
188 Warnings import function
189
190 =back
191
192 =head2 Standard Modules
193
194 Standard, bundled modules are all expected to behave in a well-defined
195 manner with respect to namespace pollution because they use the
196 Exporter module.  See their own documentation for details.
197
198 It's possible that not all modules listed below are installed on your
199 system. For example, the GDBM_File module will not be installed if you
200 don't have the gdbm library.
201
202 =over 12
203
204 =item AnyDBM_File
205
206 Provide framework for multiple DBMs
207
208 =item Attribute::Handlers
209
210 Simpler definition of attribute handlers
211
212 =item AutoLoader
213
214 Load subroutines only on demand
215
216 =item AutoSplit
217
218 Split a package for autoloading
219
220 =item B
221
222 The Perl Compiler
223
224 =item B::Asmdata
225
226 Autogenerated data about Perl ops, used to generate bytecode
227
228 =item B::Assembler
229
230 Assemble Perl bytecode
231
232 =item B::Bblock
233
234 Walk basic blocks
235
236 =item B::Bytecode
237
238 Perl compiler's bytecode backend
239
240 =item B::C
241
242 Perl compiler's C backend
243
244 =item B::CC
245
246 Perl compiler's optimized C translation backend
247
248 =item B::Concise
249
250 Walk Perl syntax tree, printing concise info about ops
251
252 =item B::Debug
253
254 Walk Perl syntax tree, printing debug info about ops
255
256 =item B::Deparse
257
258 Perl compiler backend to produce perl code
259
260 =item B::Disassembler
261
262 Disassemble Perl bytecode
263
264 =item B::Lint
265
266 Perl lint
267
268 =item B::Showlex
269
270 Show lexical variables used in functions or files
271
272 =item B::Stackobj
273
274 Helper module for CC backend
275
276 =item B::Stash
277
278 Show what stashes are loaded
279
280 =item B::Terse
281
282 Walk Perl syntax tree, printing terse info about ops
283
284 =item B::Xref
285
286 Generates cross reference reports for Perl programs
287
288 =item Benchmark
289
290 Benchmark running times of Perl code
291
292 =item ByteLoader
293
294 Load byte compiled perl code
295
296 =item CGI
297
298 Simple Common Gateway Interface Class
299
300 =item CGI::Apache
301
302 Backward compatibility module for CGI.pm
303
304 =item CGI::Carp
305
306 CGI routines for writing to the HTTPD (or other) error log
307
308 =item CGI::Cookie
309
310 Interface to Netscape Cookies
311
312 =item CGI::Fast
313
314 CGI Interface for Fast CGI
315
316 =item CGI::Pretty
317
318 Module to produce nicely formatted HTML code
319
320 =item CGI::Push
321
322 Simple Interface to Server Push
323
324 =item CGI::Switch
325
326 Backward compatibility module for defunct CGI::Switch
327
328 =item CGI::Util
329
330 Internal utilities used by CGI module
331
332 =item CPAN
333
334 Query, download and build perl modules from CPAN sites
335
336 =item CPAN::FirstTime
337
338 Utility for CPAN::Config file Initialization
339
340 =item CPAN::Nox
341
342 Wrapper around CPAN.pm without using any XS module
343
344 =item Carp
345
346 Warn of errors (from perspective of caller)
347
348 =item Carp::Heavy
349
350 No user serviceable parts inside
351
352 =item Class::ISA
353
354 Report the search path for a class's ISA tree
355
356 =item Class::Struct
357
358 Declare struct-like datatypes as Perl classes
359
360 =item Config
361
362 Access Perl configuration information
363
364 =item Cwd
365
366 Get pathname of current working directory
367
368 =item DB
369
370 Programmatic interface to the Perl debugging API (draft, subject to
371
372 =item DB_File
373
374 Perl5 access to Berkeley DB version 1.x
375
376 =item Data::Dumper
377
378 Stringified perl data structures, suitable for both printing and C<eval>
379
380 =item Devel::DProf
381
382 A Perl code profiler
383
384 =item Devel::Peek
385
386 A data debugging tool for the XS programmer
387
388 =item Devel::SelfStubber
389
390 Generate stubs for a SelfLoading module
391
392 =item Digest
393
394 Modules that calculate message digests
395
396 =item Digest::MD5
397
398 Perl interface to the MD5 Algorithm
399
400 =item DirHandle
401
402 Supply object methods for directory handles
403
404 =item Dumpvalue
405
406 Provides screen dump of Perl data.
407
408 =item DynaLoader
409
410 Dynamically load C libraries into Perl code
411
412 =item Encode
413
414 Character encodings
415
416 =item Encode::Alias
417
418 Alias definitions to encodings
419
420 =item Encode::Byte
421
422 Single Byte Encodings
423
424 =item Encode::CJKConstants
425
426 Internally used by Encode::??::ISO_2022_*
427
428 =item Encode::CN
429
430 China-based Chinese Encodings
431
432 =item Encode::CN::HZ
433
434 Internally used by Encode::CN
435
436 =item Encode::Config
437
438 Internally used by Encode
439
440 =item Encode::EBCDIC
441
442 EBCDIC Encodings
443
444 =item Encode::Encoder
445
446 Object Oriented Encoder
447
448 =item Encode::Encoding
449
450 Encode Implementation Base Class
451
452 =item Encode::Guess
453
454 Guesses encoding from data
455
456 =item Encode::JP
457
458 Japanese Encodings
459
460 =item Encode::JP::H2Z
461
462 Internally used by Encode::JP::2022_JP*
463
464 =item Encode::JP::JIS7
465
466 Internally used by Encode::JP
467
468 =item Encode::KR
469
470 Korean Encodings
471
472 =item Encode::KR::2022_KR
473
474 Internally used by Encode::KR
475
476 =item Encode::MIME::Header
477
478 MIME 'B' and 'Q' header encoding
479
480 =item Encode::PerlIO
481
482 A detailed document on Encode and PerlIO
483
484 =item Encode::Supported
485
486 Encodings supported by Encode
487
488 =item Encode::Symbol
489
490 Symbol Encodings
491
492 =item Encode::TW
493
494 Taiwan-based Chinese Encodings
495
496 =item Encode::Unicode
497
498 Various Unicode Transformation Formats
499
500 =item English
501
502 Use nice English (or awk) names for ugly punctuation variables
503
504 =item Env
505
506 Perl module that imports environment variables as scalars or arrays
507
508 =item Errno
509
510 System errno constants
511
512 =item Exporter
513
514 Implements default import method for modules
515
516 =item Exporter::Heavy
517
518 Exporter guts
519
520 =item ExtUtils::Command
521
522 Utilities to replace common UNIX commands in Makefiles etc.
523
524 =item ExtUtils::Command::MM
525
526 Commands for the MM's to use in Makefiles
527
528 =item ExtUtils::Constant
529
530 Generate XS code to import C header constants
531
532 =item ExtUtils::Embed
533
534 Utilities for embedding Perl in C/C++ applications
535
536 =item ExtUtils::Install
537
538 Install files from here to there
539
540 =item ExtUtils::Installed
541
542 Inventory management of installed modules
543
544 =item ExtUtils::Liblist
545
546 Determine libraries to use and how to use them
547
548 =item ExtUtils::MM
549
550 OS adjusted ExtUtils::MakeMaker subclass
551
552 =item ExtUtils::MM_Any
553
554 Platform agnostic MM methods
555
556 =item ExtUtils::MM_BeOS
557
558 Methods to override UN*X behaviour in ExtUtils::MakeMaker
559
560 =item ExtUtils::MM_Cygwin
561
562 Methods to override UN*X behaviour in ExtUtils::MakeMaker
563
564 =item ExtUtils::MM_DOS
565
566 DOS specific subclass of ExtUtils::MM_Unix
567
568 =item ExtUtils::MM_MacOS
569
570 Methods to override UN*X behaviour in ExtUtils::MakeMaker
571
572 =item ExtUtils::MM_NW5
573
574 Methods to override UN*X behaviour in ExtUtils::MakeMaker
575
576 =item ExtUtils::MM_OS2
577
578 Methods to override UN*X behaviour in ExtUtils::MakeMaker
579
580 =item ExtUtils::MM_UWIN
581
582 U/WIN specific subclass of ExtUtils::MM_Unix
583
584 =item ExtUtils::MM_Unix
585
586 Methods used by ExtUtils::MakeMaker
587
588 =item ExtUtils::MM_VMS
589
590 Methods to override UN*X behaviour in ExtUtils::MakeMaker
591
592 =item ExtUtils::MM_Win32
593
594 Methods to override UN*X behaviour in ExtUtils::MakeMaker
595
596 =item ExtUtils::MM_Win95
597
598 Method to customize MakeMaker for Win9X
599
600 =item ExtUtils::MY
601
602 ExtUtils::MakeMaker subclass for customization
603
604 =item ExtUtils::MakeMaker
605
606 Create an extension Makefile
607
608 =item ExtUtils::Manifest
609
610 Utilities to write and check a MANIFEST file
611
612 =item ExtUtils::Mkbootstrap
613
614 Make a bootstrap file for use by DynaLoader
615
616 =item ExtUtils::Mksymlists
617
618 Write linker options files for dynamic extension
619
620 =item ExtUtils::Packlist
621
622 Manage .packlist files
623
624 =item ExtUtils::testlib
625
626 Add blib/* directories to @INC
627
628 =item Fatal
629
630 Replace functions with equivalents which succeed or die
631
632 =item Fcntl
633
634 Load the C Fcntl.h defines
635
636 =item File::Basename
637
638 Split a pathname into pieces
639
640 =item File::CheckTree
641
642 Run many filetest checks on a tree
643
644 =item File::Compare
645
646 Compare files or filehandles
647
648 =item File::Copy
649
650 Copy files or filehandles
651
652 =item File::DosGlob
653
654 DOS like globbing and then some
655
656 =item File::Find
657
658 Traverse a directory tree.
659
660 =item File::Glob
661
662 Perl extension for BSD glob routine
663
664 =item File::Path
665
666 Create or remove directory trees
667
668 =item File::Spec
669
670 Portably perform operations on file names
671
672 =item File::Spec::Cygwin
673
674 Methods for Cygwin file specs
675
676 =item File::Spec::Epoc
677
678 Methods for Epoc file specs
679
680 =item File::Spec::Functions
681
682 Portably perform operations on file names
683
684 =item File::Spec::Mac
685
686 File::Spec for Mac OS (Classic)
687
688 =item File::Spec::OS2
689
690 Methods for OS/2 file specs
691
692 =item File::Spec::Unix
693
694 File::Spec for Unix, base for other File::Spec modules
695
696 =item File::Spec::VMS
697
698 Methods for VMS file specs
699
700 =item File::Spec::Win32
701
702 Methods for Win32 file specs
703
704 =item File::Temp
705
706 Return name and handle of a temporary file safely
707
708 =item File::stat
709
710 By-name interface to Perl's built-in stat() functions
711
712 =item FileCache
713
714 Keep more files open than the system permits
715
716 =item FileHandle
717
718 Supply object methods for filehandles
719
720 =item Filter::Simple
721
722 Simplified source filtering
723
724 =item Filter::Util::Call
725
726 Perl Source Filter Utility Module
727
728 =item FindBin
729
730 Locate directory of original perl script
731
732 =item GDBM_File
733
734 Perl5 access to the gdbm library.
735
736 =item Getopt::Long
737
738 Extended processing of command line options
739
740 =item Getopt::Std
741
742 Process single-character switches with switch clustering
743
744 =item Hash::Util
745
746 A selection of general-utility hash subroutines
747
748 =item I18N::Collate
749
750 Compare 8-bit scalar data according to the current locale
751
752 =item I18N::LangTags
753
754 Functions for dealing with RFC3066-style language tags
755
756 =item I18N::LangTags::List
757
758 Tags and names for human languages
759
760 =item I18N::Langinfo
761
762 Query locale information
763
764 =item IO
765
766 Load various IO modules
767
768 =item IO::Dir
769
770 Supply object methods for directory handles
771
772 =item IO::File
773
774 Supply object methods for filehandles
775
776 =item IO::Handle
777
778 Supply object methods for I/O handles
779
780 =item IO::Pipe
781
782 Supply object methods for pipes
783
784 =item IO::Poll
785
786 Object interface to system poll call
787
788 =item IO::Seekable
789
790 Supply seek based methods for I/O objects
791
792 =item IO::Select
793
794 OO interface to the select system call
795
796 =item IO::Socket
797
798 Object interface to socket communications
799
800 =item IO::Socket::INET
801
802 Object interface for AF_INET domain sockets
803
804 =item IO::Socket::UNIX
805
806 Object interface for AF_UNIX domain sockets
807
808 =item IPC::Open2
809
810 Open a process for both reading and writing
811
812 =item IPC::Open3
813
814 Open a process for reading, writing, and error handling
815
816 =item IPC::SysV
817
818 SysV IPC constants
819
820 =item IPC::SysV::Msg
821
822 SysV Msg IPC object class
823
824 =item IPC::SysV::Semaphore
825
826 SysV Semaphore IPC object class
827
828 =item List::Util
829
830 A selection of general-utility list subroutines
831
832 =item Locale::Constants
833
834 Constants for Locale codes
835
836 =item Locale::Country
837
838 ISO codes for country identification (ISO 3166)
839
840 =item Locale::Currency
841
842 ISO three letter codes for currency identification (ISO 4217)
843
844 =item Locale::Language
845
846 ISO two letter codes for language identification (ISO 639)
847
848 =item Locale::Maketext
849
850 Framework for localization
851
852 =item Locale::Maketext::TPJ13
853
854 Article about software localization
855
856 =item Locale::Script
857
858 ISO codes for script identification (ISO 15924)
859
860 =item MIME::Base64
861
862 Encoding and decoding of base64 strings
863
864 =item MIME::Base64::QuotedPrint
865
866 Encoding and decoding of quoted-printable strings
867
868 =item Math::BigFloat
869
870 Arbitrary size floating point math package
871
872 =item Math::BigInt
873
874 Arbitrary size integer math package
875
876 =item Math::BigInt::Calc
877
878 Pure Perl module to support Math::BigInt
879
880 =item Math::BigInt::Scalar
881
882 Pure Perl module to test Math::BigInt with scalars
883
884 =item Math::BigRat
885
886 Arbitrarily big rationales
887
888 =item Math::Complex
889
890 Complex numbers and associated mathematical functions
891
892 =item Math::Trig
893
894 Trigonometric functions
895
896 =item Memoize
897
898 Make functions faster by trading space for time
899
900 =item Memoize::AnyDBM_File
901
902 Glue to provide EXISTS for AnyDBM_File for Storable use
903
904 =item Memoize::Expire
905
906 Plug-in module for automatic expiration of memoized values
907
908 =item Memoize::ExpireFile
909
910 Test for Memoize expiration semantics
911
912 =item Memoize::ExpireTest
913
914 Test for Memoize expiration semantics
915
916 =item Memoize::NDBM_File
917
918 Glue to provide EXISTS for NDBM_File for Storable use
919
920 =item Memoize::SDBM_File
921
922 Glue to provide EXISTS for SDBM_File for Storable use
923
924 =item Memoize::Storable
925
926 Store Memoized data in Storable database
927
928 =item NDBM_File
929
930 Tied access to ndbm files
931
932 =item NEXT
933
934 Provide a pseudo-class NEXT that allows method redispatch
935
936 =item Net::Cmd
937
938 Network Command class (as used by FTP, SMTP etc)
939
940 =item Net::Config
941
942 Local configuration data for libnet
943
944 =item Net::Domain
945
946 Attempt to evaluate the current host's internet name and domain
947
948 =item Net::FTP
949
950 FTP Client class
951
952 =item Net::NNTP
953
954 NNTP Client class
955
956 =item Net::Netrc
957
958 OO interface to users netrc file
959
960 =item Net::POP3
961
962 Post Office Protocol 3 Client class (RFC1939)
963
964 =item Net::Ping
965
966 Check a remote host for reachability
967
968 =item Net::SMTP
969
970 Simple Mail Transfer Protocol Client
971
972 =item Net::Time
973
974 Time and daytime network client interface
975
976 =item Net::hostent
977
978 By-name interface to Perl's built-in gethost*() functions
979
980 =item Net::libnetFAQ
981
982 Libnet Frequently Asked Questions
983
984 =item Net::netent
985
986 By-name interface to Perl's built-in getnet*() functions
987
988 =item Net::protoent
989
990 By-name interface to Perl's built-in getproto*() functions
991
992 =item Net::servent
993
994 By-name interface to Perl's built-in getserv*() functions
995
996 =item O
997
998 Generic interface to Perl Compiler backends
999
1000 =item ODBM_File
1001
1002 Tied access to odbm files
1003
1004 =item Opcode
1005
1006 Disable named opcodes when compiling perl code
1007
1008 =item POSIX
1009
1010 Perl interface to IEEE Std 1003.1
1011
1012 =item PerlIO
1013
1014 On demand loader for PerlIO layers and root of PerlIO::* name space
1015
1016 =item PerlIO::encoding
1017
1018 Encoding layer
1019
1020 =item PerlIO::scalar
1021
1022 Support module for in-memory IO.
1023
1024 =item PerlIO::via
1025
1026 Helper class for PerlIO layers implemented in perl
1027
1028 =item PerlIO::via::QuotedPrint
1029
1030 PerlIO layer for quoted-printable strings
1031
1032 =item Pod::Checker
1033
1034 Check pod documents for syntax errors
1035
1036 =item Pod::Find
1037
1038 Find POD documents in directory trees
1039
1040 =item Pod::Functions
1041
1042 Group Perl's functions a la perlfunc.pod
1043
1044 =item Pod::Html
1045
1046 Module to convert pod files to HTML
1047
1048 =item Pod::InputObjects
1049
1050 Objects representing POD input paragraphs, commands, etc.
1051
1052 =item Pod::LaTeX
1053
1054 Convert Pod data to formatted Latex
1055
1056 =item Pod::Man
1057
1058 Convert POD data to formatted *roff input
1059
1060 =item Pod::ParseLink
1061
1062 Parse an LE<lt>E<gt> formatting code in POD text
1063
1064 =item Pod::ParseUtils
1065
1066 Helpers for POD parsing and conversion
1067
1068 =item Pod::Parser
1069
1070 Base class for creating POD filters and translators
1071
1072 =item Pod::Plainer
1073
1074 Perl extension for converting Pod to old style Pod.
1075
1076 =item Pod::Select
1077
1078 Extract selected sections of POD from input
1079
1080 =item Pod::Text
1081
1082 Convert POD data to formatted ASCII text
1083
1084 =item Pod::Text::Color
1085
1086 Convert POD data to formatted color ASCII text
1087
1088 =item Pod::Text::Overstrike
1089
1090 Convert POD data to formatted overstrike text
1091
1092 =item Pod::Text::Termcap
1093
1094 Convert POD data to ASCII text with format escapes
1095
1096 =item Pod::Usage
1097
1098 Print a usage message from embedded pod documentation
1099
1100 =item SDBM_File
1101
1102 Tied access to sdbm files
1103
1104 =item Safe
1105
1106 Compile and execute code in restricted compartments
1107
1108 =item Scalar::Util
1109
1110 A selection of general-utility scalar subroutines
1111
1112 =item Search::Dict
1113
1114 Search for key in dictionary file
1115
1116 =item SelectSaver
1117
1118 Save and restore selected file handle
1119
1120 =item SelfLoader
1121
1122 Load functions only on demand
1123
1124 =item Shell
1125
1126 Run shell commands transparently within perl
1127
1128 =item Socket
1129
1130 Load the C socket.h defines and structure manipulators 
1131
1132 =item Storable
1133
1134 Persistence for Perl data structures
1135
1136 =item Switch
1137
1138 A switch statement for Perl
1139
1140 =item Symbol
1141
1142 Manipulate Perl symbols and their names
1143
1144 =item Sys::Hostname
1145
1146 Try every conceivable way to get hostname
1147
1148 =item Sys::Syslog
1149
1150 Perl interface to the UNIX syslog(3) calls
1151
1152 =item Term::ANSIColor
1153
1154 Color screen output using ANSI escape sequences
1155
1156 =item Term::Cap
1157
1158 Perl termcap interface
1159
1160 =item Term::Complete
1161
1162 Perl word completion module
1163
1164 =item Term::ReadLine
1165
1166 Perl interface to various C<readline> packages.
1167
1168 =item Test
1169
1170 Provides a simple framework for writing test scripts
1171
1172 =item Test::Builder
1173
1174 Backend for building test libraries
1175
1176 =item Test::Harness
1177
1178 Run perl standard test scripts with statistics
1179
1180 =item Test::Harness::Assert
1181
1182 Simple assert
1183
1184 =item Test::Harness::Iterator
1185
1186 Internal Test::Harness Iterator
1187
1188 =item Test::Harness::Straps
1189
1190 Detailed analysis of test results
1191
1192 =item Test::More
1193
1194 Yet another framework for writing test scripts
1195
1196 =item Test::Simple
1197
1198 Basic utilities for writing tests.
1199
1200 =item Test::Tutorial
1201
1202 A tutorial about writing really basic tests
1203
1204 =item Text::Abbrev
1205
1206 Create an abbreviation table from a list
1207
1208 =item Text::Balanced
1209
1210 Extract delimited text sequences from strings.
1211
1212 =item Text::ParseWords
1213
1214 Parse text into an array of tokens or array of arrays
1215
1216 =item Text::Soundex
1217
1218 Implementation of the Soundex Algorithm as Described by Knuth
1219
1220 =item Text::Tabs
1221
1222 Expand and unexpand tabs per the unix expand(1) and unexpand(1)
1223
1224 =item Text::Wrap
1225
1226 Line wrapping to form simple paragraphs
1227
1228 =item Thread
1229
1230 Manipulate threads in Perl (for old code only)
1231
1232 =item Thread::Queue
1233
1234 Thread-safe queues
1235
1236 =item Thread::Semaphore
1237
1238 Thread-safe semaphores
1239
1240 =item Thread::Signal
1241
1242 Start a thread which runs signal handlers reliably (for old code)
1243
1244 =item Thread::Specific
1245
1246 Thread-specific keys
1247
1248 =item Tie::Array
1249
1250 Base class for tied arrays
1251
1252 =item Tie::File
1253
1254 Access the lines of a disk file via a Perl array
1255
1256 =item Tie::Handle
1257
1258 Base class definitions for tied handles
1259
1260 =item Tie::Hash
1261
1262 Base class definitions for tied hashes
1263
1264 =item Tie::Memoize
1265
1266 Add data to hash when needed
1267
1268 =item Tie::RefHash
1269
1270 Use references as hash keys
1271
1272 =item Tie::Scalar
1273
1274 Base class definitions for tied scalars
1275
1276 =item Tie::SubstrHash
1277
1278 Fixed-table-size, fixed-key-length hashing
1279
1280 =item Time::HiRes
1281
1282 High resolution alarm, sleep, gettimeofday, interval timers
1283
1284 =item Time::Local
1285
1286 Efficiently compute time from local and GMT time
1287
1288 =item Time::gmtime
1289
1290 By-name interface to Perl's built-in gmtime() function
1291
1292 =item Time::localtime
1293
1294 By-name interface to Perl's built-in localtime() function
1295
1296 =item Time::tm
1297
1298 Internal object used by Time::gmtime and Time::localtime
1299
1300 =item UNIVERSAL
1301
1302 Base class for ALL classes (blessed references)
1303
1304 =item Unicode::Collate
1305
1306 Unicode Collation Algorithm
1307
1308 =item Unicode::Normalize
1309
1310 Unicode Normalization Forms
1311
1312 =item Unicode::UCD
1313
1314 Unicode character database
1315
1316 =item User::grent
1317
1318 By-name interface to Perl's built-in getgr*() functions
1319
1320 =item User::pwent
1321
1322 By-name interface to Perl's built-in getpw*() functions
1323
1324 =item Win32
1325
1326 Interfaces to some Win32 API Functions
1327
1328 =item XS::APItest
1329
1330 Test the perl C API
1331
1332 =item XS::Typemap
1333
1334 Module to test the XS typemaps distributed with perl
1335
1336 =item XSLoader
1337
1338 Dynamically load C libraries into Perl code
1339
1340 =back
1341
1342 To find out I<all> modules installed on your system, including
1343 those without documentation or outside the standard release,
1344 just do this:
1345
1346     % find `perl -e 'print "@INC"'` -name '*.pm' -print
1347
1348 They should all have their own documentation installed and accessible
1349 via your system man(1) command.  If you do not have a B<find>
1350 program, you can use the Perl B<find2perl> program instead, which
1351 generates Perl code as output you can run through perl.  If you
1352 have a B<man> program but it doesn't find your modules, you'll have
1353 to fix your manpath.  See L<perl> for details.  If you have no
1354 system B<man> command, you might try the B<perldoc> program.
1355
1356 =head2 Extension Modules
1357
1358 Extension modules are written in C (or a mix of Perl and C).  They
1359 are usually dynamically loaded into Perl if and when you need them,
1360 but may also be linked in statically.  Supported extension modules
1361 include Socket, Fcntl, and POSIX.
1362
1363 Many popular C extension modules do not come bundled (at least, not
1364 completely) due to their sizes, volatility, or simply lack of time
1365 for adequate testing and configuration across the multitude of
1366 platforms on which Perl was beta-tested.  You are encouraged to
1367 look for them on CPAN (described below), or using web search engines
1368 like Alta Vista or Google.
1369
1370 =head1 CPAN
1371
1372 CPAN stands for Comprehensive Perl Archive Network; it's a globally
1373 replicated trove of Perl materials, including documentation, style
1374 guides, tricks and traps, alternate ports to non-Unix systems and
1375 occasional binary distributions for these.   Search engines for
1376 CPAN can be found at http://www.cpan.org/
1377
1378 Most importantly, CPAN includes around a thousand unbundled modules,
1379 some of which require a C compiler to build.  Major categories of
1380 modules are:
1381
1382 =over
1383
1384 =item *
1385
1386 Language Extensions and Documentation Tools
1387
1388 =item *
1389
1390 Development Support
1391
1392 =item *
1393
1394 Operating System Interfaces
1395
1396 =item *
1397
1398 Networking, Device Control (modems) and InterProcess Communication
1399
1400 =item *
1401
1402 Data Types and Data Type Utilities
1403
1404 =item *
1405
1406 Database Interfaces
1407
1408 =item *
1409
1410 User Interfaces
1411
1412 =item *
1413
1414 Interfaces to / Emulations of Other Programming Languages
1415
1416 =item *
1417
1418 File Names, File Systems and File Locking (see also File Handles)
1419
1420 =item *
1421
1422 String Processing, Language Text Processing, Parsing, and Searching
1423
1424 =item *
1425
1426 Option, Argument, Parameter, and Configuration File Processing
1427
1428 =item *
1429
1430 Internationalization and Locale
1431
1432 =item *
1433
1434 Authentication, Security, and Encryption
1435
1436 =item *
1437
1438 World Wide Web, HTML, HTTP, CGI, MIME
1439
1440 =item *
1441
1442 Server and Daemon Utilities
1443
1444 =item *
1445
1446 Archiving and Compression
1447
1448 =item *
1449
1450 Images, Pixmap and Bitmap Manipulation, Drawing, and Graphing
1451
1452 =item *
1453
1454 Mail and Usenet News
1455
1456 =item *
1457
1458 Control Flow Utilities (callbacks and exceptions etc)
1459
1460 =item *
1461
1462 File Handle and Input/Output Stream Utilities
1463
1464 =item *
1465
1466 Miscellaneous Modules
1467
1468 =back
1469
1470 The list of the registered CPAN sites as of this writing follows.
1471 Please note that the sorting order is alphabetical on fields:
1472
1473 Continent
1474    |
1475    |-->Country
1476          |
1477          |-->[state/province]
1478                    |
1479                    |-->ftp
1480                    |
1481                    |-->[http]
1482
1483 and thus the North American servers happen to be listed between the
1484 European and the South American sites.
1485
1486 You should try to choose one close to you.
1487
1488 =head2 Africa
1489
1490 =over 4
1491
1492 =item South Africa
1493
1494                       ftp://ftp.is.co.za/programming/perl/CPAN/
1495                       ftp://ftp.mweb.co.za/pub/mirrors/cpan/
1496                       ftp://ftp.saix.net/pub/CPAN/
1497                       ftp://ftp.sun.ac.za/CPAN/CPAN/
1498
1499 =back
1500
1501 =head2 Asia
1502
1503 =over 4
1504
1505 =item China
1506
1507                       ftp://freesoft.cei.gov.cn/pub/languages/perl/CPAN/
1508                       http://www2.linuxforum.net/mirror/CPAN/
1509                       http://cpan.shellhung.org/
1510                       ftp://ftp.shellhung.org/pub/CPAN
1511
1512 =item India
1513
1514                       http://cpan.in.freeos.com
1515                       ftp://cpan.in.freeos.com/pub/CPAN/
1516
1517 =item Indonesia
1518
1519                       http://cpan.itb.web.id/
1520                       ftp://mirrors.piksi.itb.ac.id/CPAN/
1521                       http://cpan.cbn.net.id/
1522                       ftp://ftp.cbn.net.id/mirror/CPAN
1523                       http://CPAN.mweb.co.id/
1524                       ftp://ftp.mweb.co.id/pub/languages/perl/CPAN/
1525
1526 =item Israel
1527
1528                       http://www.iglu.org.il:/pub/CPAN/
1529                       ftp://ftp.iglu.org.il/pub/CPAN/
1530                       http://cpan.lerner.co.il/
1531                       http://bioinfo.weizmann.ac.il/pub/software/perl/CPAN/
1532                       ftp://bioinfo.weizmann.ac.il/pub/software/perl/CPAN/
1533
1534 =item Japan
1535
1536                       ftp://ftp.u-aizu.ac.jp/pub/CPAN
1537                       ftp://ftp.kddlabs.co.jp/CPAN/
1538                       http://mirror.nucba.ac.jp/mirror/Perl/
1539                       ftp://mirror.nucba.ac.jp/mirror/Perl/
1540                       ftp://ftp.meisei-u.ac.jp/pub/CPAN/
1541                       ftp://ftp.ayamura.org/pub/CPAN/
1542                       ftp://ftp.jaist.ac.jp/pub/lang/perl/CPAN/
1543                       ftp://ftp.dti.ad.jp/pub/lang/CPAN/
1544                       ftp://ftp.ring.gr.jp/pub/lang/perl/CPAN/
1545
1546 =item Korea
1547
1548                       http://mirror.Mazic.org/pub/CPAN
1549                       ftp://mirror.Mazic.org/pub/CPAN
1550
1551 =item Philippines
1552
1553                       http://www.adzu.edu.ph/CPAN
1554
1555 =item Russian Federation
1556
1557                       http://cpan.tomsk.ru
1558                       ftp://cpan.tomsk.ru/pub/CPAN
1559
1560 =item Saudi Arabia
1561
1562                       ftp://ftp.isu.net.sa/pub/CPAN/
1563
1564 =item Singapore
1565
1566                       http://cpan.hjc.edu.sg
1567                       http://mirror.averse.net/pub/CPAN
1568                       ftp://mirror.averse.net/pub/CPAN
1569
1570 =item South Korea
1571
1572                       http://CPAN.bora.net/
1573                       ftp://ftp.bora.net/pub/CPAN/
1574                       http://ftp.kornet.net/pub/CPAN/
1575                       ftp://ftp.kornet.net/pub/CPAN/
1576                       ftp://ftp.nuri.net/pub/CPAN/
1577                       http://ftp.xgate.co.kr/cpan/
1578                       ftp://ftp.xgate.co.kr/pub/mirror/CPAN
1579
1580 =item Taiwan
1581
1582                       ftp://ftp.nctu.edu.tw/UNIX/perl/CPAN
1583                       ftp://ftp.ee.ncku.edu.tw/pub/perl/CPAN/
1584                       ftp://ftp1.sinica.edu.tw/pub1/perl/CPAN/
1585                       http://ftp.tku.edu.tw/pub/CPAN/
1586                       ftp://ftp.tku.edu.tw/pub/CPAN/
1587
1588 =item Thailand
1589
1590                       ftp://ftp.loxinfo.co.th/pub/cpan/
1591                       ftp://ftp.cs.riubon.ac.th/pub/mirrors/CPAN/
1592
1593 =back
1594
1595 =head2 Central America
1596
1597 =over 4
1598
1599 =item Costa Rica
1600
1601                       ftp://ftp.linux.co.cr/mirrors/CPAN/
1602                       http://ftp.ucr.ac.cr/Unix/CPAN/
1603                       ftp://ftp.ucr.ac.cr/pub/Unix/CPAN/
1604
1605 =back
1606
1607 =head2 Europe
1608
1609 =over 4
1610
1611 =item Austria
1612
1613                       ftp://ftp.tuwien.ac.at/pub/CPAN/
1614
1615 =item Belgium
1616
1617                       http://ftp.easynet.be/pub/CPAN/
1618                       ftp://ftp.easynet.be/pub/CPAN/
1619                       http://cpan.skynet.be
1620                       ftp://ftp.skynet.be/pub/CPAN
1621                       ftp://ftp.kulnet.kuleuven.ac.be/pub/mirror/CPAN/
1622
1623 =item Bulgaria
1624
1625                       http://cpan.lirex.net/
1626                       ftp://ftp.lirex.net/pub/mirrors/CPAN
1627
1628 =item Croatia
1629
1630                       http://ftp.linux.hr/pub/CPAN/
1631                       ftp://ftp.linux.hr/pub/CPAN/
1632
1633 =item Czech Republic
1634
1635                       http://ftp.fi.muni.cz/pub/CPAN/
1636                       ftp://ftp.fi.muni.cz/pub/CPAN/
1637                       ftp://sunsite.mff.cuni.cz/MIRRORS/ftp.funet.fi/pub/languages/perl/CPAN/
1638
1639 =item Denmark
1640
1641                       http://mirrors.sunsite.dk/cpan/
1642                       ftp://sunsite.dk/mirrors/cpan/
1643                       http://cpan.cybercity.dk
1644                       http://www.cpan.dk/CPAN/
1645                       ftp://www.cpan.dk/ftp.cpan.org/CPAN/
1646
1647 =item Estonia
1648
1649                       ftp://ftp.ut.ee/pub/languages/perl/CPAN/
1650
1651 =item Finland
1652
1653                       ftp://ftp.funet.fi/pub/languages/perl/CPAN/
1654                       http://cpan.kpnqwest.fi/
1655
1656 =item France
1657
1658                       http://ftp.u-paris10.fr/perl/CPAN
1659                       ftp://ftp.u-paris10.fr/perl/CPAN
1660                       http://cpan.mirrors.easynet.fr/
1661                       ftp://cpan.mirrors.easynet.fr/pub/ftp.cpan.org/
1662                       ftp://ftp.club-internet.fr/pub/perl/CPAN/
1663                       http://fr.cpan.org/
1664                       ftp://ftp.lip6.fr/pub/perl/CPAN/
1665                       ftp://ftp.oleane.net/pub/mirrors/CPAN/
1666                       ftp://ftp.pasteur.fr/pub/computing/CPAN/
1667                       http://mir2.ovh.net/ftp.cpan.org
1668                       ftp://mir1.ovh.net/ftp.cpan.org
1669                       http://ftp.u-strasbg.fr/CPAN
1670                       ftp://ftp.u-strasbg.fr/CPAN
1671                       http://cpan.cict.fr/
1672                       ftp://cpan.cict.fr/pub/CPAN/
1673                       ftp://ftp.uvsq.fr/pub/perl/CPAN/
1674
1675 =item Germany
1676
1677                       ftp://ftp.rz.ruhr-uni-bochum.de/pub/CPAN/
1678                       ftp://ftp.freenet.de/pub/ftp.cpan.org/pub/CPAN/
1679                       ftp://ftp.uni-erlangen.de/pub/source/CPAN/
1680                       ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/CPAN
1681                       http://pandemonium.tiscali.de/pub/CPAN/
1682                       ftp://pandemonium.tiscali.de/pub/CPAN/
1683                       http://ftp.gwdg.de/pub/languages/perl/CPAN/
1684                       ftp://ftp.gwdg.de/pub/languages/perl/CPAN/
1685                       ftp://ftp.uni-hamburg.de/pub/soft/lang/perl/CPAN/
1686                       ftp://ftp.leo.org/pub/CPAN/
1687                       http://cpan.noris.de/
1688                       ftp://cpan.noris.de/pub/CPAN/
1689                       ftp://ftp.mpi-sb.mpg.de/pub/perl/CPAN/
1690                       ftp://ftp.gmd.de/mirrors/CPAN/
1691
1692 =item Greece
1693
1694                       ftp://ftp.acn.gr/pub/lang/perl/CPAN
1695                       ftp://ftp.forthnet.gr/pub/languages/perl/CPAN
1696                       ftp://ftp.ntua.gr/pub/lang/perl/
1697
1698 =item Hungary
1699
1700                       http://cpan.artifact.hu/
1701                       ftp://cpan.artifact.hu/CPAN/
1702                       http://ftp.kfki.hu/packages/perl/CPAN/
1703                       ftp://ftp.kfki.hu/pub/packages/perl/CPAN/
1704
1705 =item Iceland
1706
1707                       http://ftp.rhnet.is/pub/CPAN/
1708                       ftp://ftp.rhnet.is/pub/CPAN/
1709
1710 =item Ireland
1711
1712                       http://cpan.indigo.ie/
1713                       ftp://cpan.indigo.ie/pub/CPAN/
1714                       http://sunsite.compapp.dcu.ie/pub/perl/
1715                       ftp://sunsite.compapp.dcu.ie/pub/perl/
1716
1717 =item Italy
1718
1719                       http://cpan.nettuno.it/
1720                       http://gusp.dyndns.org/CPAN/
1721                       ftp://gusp.dyndns.org/pub/CPAN
1722                       http://softcity.iol.it/cpan
1723                       ftp://softcity.iol.it/pub/cpan
1724                       ftp://ftp.unina.it/pub/Other/CPAN/CPAN/
1725                       ftp://ftp.unipi.it/pub/mirror/perl/CPAN/
1726                       ftp://cis.uniRoma2.it/CPAN/
1727                       ftp://ftp.edisontel.it/pub/CPAN_Mirror/
1728                       ftp://ftp.flashnet.it/pub/CPAN/
1729
1730 =item Latvia
1731
1732                       http://kvin.lv/pub/CPAN/
1733
1734 =item Lithuania
1735
1736                       ftp://ftp.unix.lt/pub/CPAN/
1737
1738 =item Netherlands
1739
1740                       ftp://download.xs4all.nl/pub/mirror/CPAN/
1741                       ftp://ftp.nl.uu.net/pub/CPAN/
1742                       ftp://ftp.nluug.nl/pub/languages/perl/CPAN/
1743                       http://cpan.cybercomm.nl/
1744                       ftp://mirror.cybercomm.nl/pub/CPAN
1745                       ftp://ftp.cpan.nl/pub/CPAN/
1746                       http://ftp.easynet.nl/mirror/CPAN
1747                       ftp://ftp.easynet.nl/mirror/CPAN
1748                       http://archive.cs.uu.nl/mirror/CPAN/
1749                       ftp://ftp.cs.uu.nl/mirror/CPAN/
1750
1751 =item Norway
1752
1753                       ftp://ftp.uninett.no/pub/languages/perl/CPAN
1754                       ftp://ftp.uit.no/pub/languages/perl/cpan/
1755
1756 =item Poland
1757
1758                       ftp://ftp.pk.edu.pl/pub/lang/perl/CPAN/
1759                       ftp://ftp.mega.net.pl/pub/mirrors/ftp.perl.com/
1760                       ftp://ftp.man.torun.pl/pub/doc/CPAN/
1761                       ftp://sunsite.icm.edu.pl/pub/CPAN/
1762
1763 =item Portugal
1764
1765                       ftp://ftp.ua.pt/pub/CPAN/
1766                       ftp://perl.di.uminho.pt/pub/CPAN/
1767                       http://cpan.dei.uc.pt/
1768                       ftp://ftp.dei.uc.pt/pub/CPAN
1769                       ftp://ftp.ist.utl.pt/pub/CPAN/
1770                       http://cpan.ip.pt/
1771                       ftp://cpan.ip.pt/pub/cpan/
1772                       ftp://ftp.netc.pt/pub/CPAN/
1773                       ftp://ftp.up.pt/pub/CPAN
1774
1775 =item Romania
1776
1777                       ftp://ftp.kappa.ro/pub/mirrors/ftp.perl.org/pub/CPAN/
1778                       ftp://ftp.dntis.ro/pub/cpan/
1779                       ftp://ftp.dnttm.ro/pub/CPAN/
1780                       ftp://ftp.lasting.ro/pub/CPAN
1781                       ftp://ftp.timisoara.roedu.net/mirrors/CPAN/
1782
1783 =item Russia
1784
1785                       ftp://ftp.chg.ru/pub/lang/perl/CPAN/
1786                       http://cpan.rinet.ru/
1787                       ftp://cpan.rinet.ru/pub/mirror/CPAN/
1788                       ftp://ftp.aha.ru/pub/CPAN/
1789                       http://cpan.sai.msu.ru/
1790                       ftp://ftp.sai.msu.su/pub/lang/perl/CPAN/
1791
1792 =item Slovakia
1793
1794                       http://ftp.cvt.stuba.sk/pub/CPAN/
1795                       ftp://ftp.cvt.stuba.sk/pub/CPAN/
1796
1797 =item Slovenia
1798
1799                       ftp://ftp.arnes.si/software/perl/CPAN/
1800
1801 =item Spain
1802
1803                       http://cpan.imasd.elmundo.es/
1804                       ftp://ftp.rediris.es/mirror/CPAN/
1805                       ftp://ftp.etse.urv.es/pub/perl/
1806
1807 =item Sweden
1808
1809                       http://ftp.du.se/CPAN/
1810                       ftp://ftp.du.se/pub/CPAN/
1811                       ftp://mirror.dataphone.se/pub/CPAN
1812                       ftp://ftp.sunet.se/pub/lang/perl/CPAN/
1813
1814 =item Switzerland
1815
1816                       ftp://ftp.danyk.ch/CPAN/
1817                       ftp://sunsite.cnlab-switch.ch/mirror/CPAN/
1818
1819 =item Turkey
1820
1821                       http://ftp.ulak.net.tr/perl/CPAN/
1822                       ftp://ftp.ulak.net.tr/perl/CPAN
1823                       ftp://sunsite.bilkent.edu.tr/pub/languages/CPAN/
1824
1825 =item Ukraine
1826
1827                       http://cpan.org.ua/
1828                       ftp://cpan.org.ua/
1829                       ftp://ftp.perl.org.ua/pub/CPAN/
1830
1831 =item United Kingdom
1832
1833                       http://www.mirror.ac.uk/sites/ftp.funet.fi/pub/languages/perl/CPAN
1834                       ftp://ftp.mirror.ac.uk/sites/ftp.funet.fi/pub/languages/perl/CPAN/
1835                       http://cpan.teleglobe.net/
1836                       ftp://cpan.teleglobe.net/pub/CPAN
1837                       http://cpan.crazygreek.co.uk
1838                       ftp://ftp.demon.co.uk/pub/CPAN/
1839                       http://cpan.m.flirble.org/
1840                       ftp://ftp.flirble.org/pub/languages/perl/CPAN/
1841                       ftp://ftp.plig.org/pub/CPAN/
1842                       http://mirror.uklinux.net/CPAN/
1843                       ftp://mirror.uklinux.net/pub/CPAN/
1844                       http://cpan.mirrors.clockerz.net/
1845                       ftp://ftp.clockerz.net/pub/CPAN/
1846                       ftp://usit.shef.ac.uk/pub/packages/CPAN/
1847
1848 =back
1849
1850 =head2 North America
1851
1852 =over 4
1853
1854 =item Alberta
1855
1856                       http://sunsite.ualberta.ca/pub/Mirror/CPAN/
1857                       ftp://sunsite.ualberta.ca/pub/Mirror/CPAN/
1858
1859 =item Manitoba
1860
1861                       http://theoryx5.uwinnipeg.ca/pub/CPAN/
1862                       ftp://theoryx5.uwinnipeg.ca/pub/CPAN/
1863
1864 =item Nova Scotia
1865
1866                       ftp://cpan.chebucto.ns.ca/pub/CPAN/
1867
1868 =item Ontario
1869
1870                       ftp://ftp.crc.ca/pub/CPAN/
1871
1872 =item Quebec
1873
1874                       http://cpan.mirror.smartworker.org/
1875
1876 =item Mexico
1877
1878                       http://cpan.azc.uam.mx
1879                       ftp://cpan.azc.uam.mx/mirrors/CPAN
1880                       http://cpan.unam.mx/
1881                       ftp://cpan.unam.mx/pub/CPAN
1882                       http://www.msg.com.mx/CPAN/
1883                       ftp://ftp.msg.com.mx/pub/CPAN/
1884
1885 =back
1886
1887 =head2 United States
1888
1889 =over 4
1890
1891 =item Alabama
1892
1893                       http://mirror.hiwaay.net/CPAN/
1894                       ftp://mirror.hiwaay.net/CPAN/
1895
1896 =item California
1897
1898                       http://cpan.develooper.com/
1899                       http://www.cpan.org/
1900                       ftp://cpan.valueclick.com/pub/CPAN/
1901                       http://mirrors.gossamer-threads.com/CPAN
1902                       ftp://cpan.nas.nasa.gov/pub/perl/CPAN/
1903                       http://mirrors.kernel.org/cpan/
1904                       ftp://mirrors.kernel.org/pub/CPAN
1905                       http://cpan.digisle.net/
1906                       ftp://cpan.digisle.net/pub/CPAN
1907                       http://www.perl.com/CPAN/
1908                       http://download.sourceforge.net/mirrors/CPAN/
1909
1910 =item Colorado
1911
1912                       ftp://ftp.cs.colorado.edu/pub/perl/CPAN/
1913
1914 =item Delaware
1915
1916                       http://ftp.lug.udel.edu/pub/CPAN
1917                       ftp://ftp.lug.udel.edu/pub/CPAN
1918
1919 =item District of Columbia
1920
1921                       ftp://ftp.dc.aleron.net/pub/CPAN/
1922
1923 =item Florida
1924
1925                       ftp://ftp.cise.ufl.edu/pub/mirrors/CPAN/
1926                       http://mirror.csit.fsu.edu/pub/CPAN/
1927                       ftp://mirror.csit.fsu.edu/pub/CPAN/
1928                       http://cpan.mirrors.nks.net/
1929
1930 =item Illinois
1931
1932                       http://uiarchive.uiuc.edu/mirrors/ftp/cpan.cse.msu.edu/
1933                       ftp://uiarchive.uiuc.edu/mirrors/ftp/cpan.cse.msu.edu/
1934
1935 =item Indiana
1936
1937                       ftp://ftp.uwsg.iu.edu/pub/perl/CPAN/
1938                       http://cpan.netnitco.net/
1939                       ftp://cpan.netnitco.net/pub/mirrors/CPAN/
1940                       http://archive.progeny.com/CPAN/
1941                       ftp://archive.progeny.com/CPAN/
1942                       ftp://cpan.in-span.net/
1943                       http://csociety-ftp.ecn.purdue.edu/pub/CPAN
1944                       ftp://csociety-ftp.ecn.purdue.edu/pub/CPAN
1945
1946 =item Kentucky
1947
1948                       http://cpan.uky.edu/
1949                       ftp://cpan.uky.edu/pub/CPAN/
1950
1951 =item Massachusetts
1952
1953                       ftp://ftp.ccs.neu.edu/net/mirrors/ftp.funet.fi/pub/languages/perl/CPAN/
1954                       http://cpan.mirrors.netnumina.com/
1955                       ftp://mirrors.netnumina.com/cpan/
1956
1957 =item Michigan
1958
1959                       ftp://cpan.cse.msu.edu/
1960
1961 =item New Jersey
1962
1963                       ftp://ftp.cpanel.net/pub/CPAN/
1964                       http://cpan.teleglobe.net/
1965                       ftp://cpan.teleglobe.net/pub/CPAN
1966
1967 =item New York
1968
1969                       ftp://ftp.exobit.org/pub/perl/CPAN
1970                       http://cpan.belfry.net/
1971                       http://cpan.thepirtgroup.com/
1972                       ftp://cpan.thepirtgroup.com/
1973                       ftp://ftp.stealth.net/pub/CPAN/
1974                       http://www.rge.com/pub/languages/perl/
1975                       ftp://ftp.rge.com/pub/languages/perl/
1976                       ftp://mirrors.cloud9.net/pub/mirrors/CPAN/
1977
1978 =item North Carolina
1979
1980                       ftp://ftp.duke.edu/pub/perl/
1981
1982 =item Ohio
1983
1984                       ftp://ftp.loaded.net/pub/CPAN/
1985
1986 =item Oklahoma
1987
1988                       ftp://ftp.ou.edu/mirrors/CPAN/
1989
1990 =item Oregon
1991
1992                       ftp://ftp.orst.edu/pub/CPAN
1993
1994 =item Pennsylvania
1995
1996                       http://ftp.epix.net/CPAN/
1997                       ftp://ftp.epix.net/pub/languages/perl/
1998                       http://mirrors.phenominet.com/pub/CPAN/
1999                       ftp://mirrors.phenominet.com/pub/CPAN/
2000                       http://cpan.pair.com/
2001                       ftp://cpan.pair.com/pub/CPAN/
2002                       ftp://carroll.cac.psu.edu/pub/CPAN/
2003
2004 =item Tennessee
2005
2006                       ftp://ftp.sunsite.utk.edu/pub/CPAN/
2007
2008 =item Texas
2009
2010                       http://ftp.sedl.org/pub/mirrors/CPAN/
2011                       ftp://mirror.telentente.com/pub/CPAN
2012
2013 =item Utah
2014
2015                       ftp://mirror.xmission.com/CPAN/
2016
2017 =item Virginia
2018
2019                       http://mirrors.rcn.net/pub/lang/CPAN/
2020                       ftp://mirrors.rcn.net/pub/lang/CPAN/
2021                       http://perl.secsup.org/
2022                       ftp://perl.secsup.org/pub/perl/
2023                       http://mirrors.phihost.com/CPAN/
2024                       ftp://mirrors.phihost.com/CPAN/
2025                       ftp://ruff.cs.jmu.edu/pub/CPAN/
2026                       http://perl.Liquidation.com/CPAN/
2027
2028 =item ashington
2029
2030                       http://cpan.llarian.net/
2031                       ftp://cpan.llarian.net/pub/CPAN/
2032                       http://cpan.mirrorcentral.com/
2033                       ftp://ftp.mirrorcentral.com/pub/CPAN/
2034                       ftp://ftp-mirror.internap.com/pub/CPAN/
2035
2036 =item Wisconsin
2037
2038                       http://mirror.sit.wisc.edu/pub/CPAN/
2039                       ftp://mirror.sit.wisc.edu/pub/CPAN/
2040
2041 =back
2042
2043 =head2 Oceania
2044
2045 =over 4
2046
2047 =item Australia
2048
2049                       http://ftp.planetmirror.com/pub/CPAN/
2050                       ftp://ftp.planetmirror.com/pub/CPAN/
2051                       ftp://mirror.aarnet.edu.au/pub/perl/CPAN/
2052                       ftp://cpan.topend.com.au/pub/CPAN/
2053
2054 =item New Zealand
2055
2056                       ftp://ftp.auckland.ac.nz/pub/perl/CPAN/
2057                       http://cpan.soa.co.nz/CPAN/
2058
2059 =back
2060
2061 =head2 South America
2062
2063 =over 4
2064
2065 =item Argentina
2066
2067                       ftp://mirrors.bannerlandia.com.ar/mirrors/CPAN/
2068                       http://ftp.fcaglp.unlp.edu.ar/pub/CPAN/
2069                       ftp://ftp.fcaglp.unlp.edu.ar/pub/CPAN/
2070
2071 =item Brazil
2072
2073                       ftp://cpan.pop-mg.com.br/pub/CPAN/
2074                       ftp://ftp.matrix.com.br/pub/perl/CPAN/
2075
2076 =item Chile
2077
2078                       http://cpan.netglobalis.net/
2079                       ftp://cpan.netglobalis.net/pub/CPAN/
2080
2081 =back
2082
2083 =head2 RSYNC Mirrors
2084
2085                       ftp.fcaglp.unlp.edu.ar::CPAN
2086                       cpan.mirror.smartworker.org::CPAN
2087                       theoryx5.uwinnipeg.ca::CPAN
2088                       ftp.shellhung.org::CPAN
2089                       ftp.funet.fi::CPAN
2090                       ftp.u-paris10.fr::CPAN
2091                       mir1.ovh.net::CPAN
2092                       ftp.gwdg.de::FTP/languages/perl/CPAN/
2093                       ftp.leo.org::CPAN
2094                       CPAN.piksi.itb.ac.id::CPAN
2095                       ftp.cbn.net.id::CPAN
2096                       ftp.iglu.org.il::CPAN
2097                       gusp.dyndns.org::cpan
2098                       ftp.kddlabs.co.jp::cpan
2099                       ftp.ayamura.org::pub/CPAN/
2100                       mirror.averse.net::cpan
2101                       cpan.teleglobe.net::CPAN
2102                       ftp.sedl.org::cpan
2103                       archive.progeny.com::CPAN
2104                       cpan.teleglobe.net::CPAN
2105                       ftp.lug.udel.edu::cpan
2106                       mirrors.kernel.org::mirrors/CPAN
2107                       mirrors.phenominet.com::CPAN
2108                       mirror.csit.fsu.edu::CPAN
2109                       csociety-ftp.ecn.purdue.edu::CPAN
2110
2111 For an up-to-date listing of CPAN sites,
2112 see http://www.cpan.org/SITES or ftp://www.cpan.org/SITES .
2113
2114 =head1 Modules: Creation, Use, and Abuse
2115
2116 (The following section is borrowed directly from Tim Bunce's modules
2117 file, available at your nearest CPAN site.)
2118
2119 Perl implements a class using a package, but the presence of a
2120 package doesn't imply the presence of a class.  A package is just a
2121 namespace.  A class is a package that provides subroutines that can be
2122 used as methods.  A method is just a subroutine that expects, as its
2123 first argument, either the name of a package (for "static" methods),
2124 or a reference to something (for "virtual" methods).
2125
2126 A module is a file that (by convention) provides a class of the same
2127 name (sans the .pm), plus an import method in that class that can be
2128 called to fetch exported symbols.  This module may implement some of
2129 its methods by loading dynamic C or C++ objects, but that should be
2130 totally transparent to the user of the module.  Likewise, the module
2131 might set up an AUTOLOAD function to slurp in subroutine definitions on
2132 demand, but this is also transparent.  Only the F<.pm> file is required to
2133 exist.  See L<perlsub>, L<perltoot>, and L<AutoLoader> for details about
2134 the AUTOLOAD mechanism.
2135
2136 =head2 Guidelines for Module Creation
2137
2138 =over 4
2139
2140 =item  *
2141
2142 Do similar modules already exist in some form?
2143
2144 If so, please try to reuse the existing modules either in whole or
2145 by inheriting useful features into a new class.  If this is not
2146 practical try to get together with the module authors to work on
2147 extending or enhancing the functionality of the existing modules.
2148 A perfect example is the plethora of packages in perl4 for dealing
2149 with command line options.
2150
2151 If you are writing a module to expand an already existing set of
2152 modules, please coordinate with the author of the package.  It
2153 helps if you follow the same naming scheme and module interaction
2154 scheme as the original author.
2155
2156 =item  *
2157
2158 Try to design the new module to be easy to extend and reuse.
2159
2160 Try to C<use warnings;> (or C<use warnings qw(...);>).
2161 Remember that you can add C<no warnings qw(...);> to individual blocks
2162 of code that need less warnings.
2163
2164 Use blessed references.  Use the two argument form of bless to bless
2165 into the class name given as the first parameter of the constructor,
2166 e.g.,:
2167
2168  sub new {
2169      my $class = shift;
2170      return bless {}, $class;
2171  }
2172
2173 or even this if you'd like it to be used as either a static
2174 or a virtual method.
2175
2176  sub new {
2177      my $self  = shift;
2178      my $class = ref($self) || $self;
2179      return bless {}, $class;
2180  }
2181
2182 Pass arrays as references so more parameters can be added later
2183 (it's also faster).  Convert functions into methods where
2184 appropriate.  Split large methods into smaller more flexible ones.
2185 Inherit methods from other modules if appropriate.
2186
2187 Avoid class name tests like: C<die "Invalid" unless ref $ref eq 'FOO'>.
2188 Generally you can delete the C<eq 'FOO'> part with no harm at all.
2189 Let the objects look after themselves! Generally, avoid hard-wired
2190 class names as far as possible.
2191
2192 Avoid C<< $r->Class::func() >> where using C<@ISA=qw(... Class ...)> and
2193 C<< $r->func() >> would work (see L<perlbot> for more details).
2194
2195 Use autosplit so little used or newly added functions won't be a
2196 burden to programs that don't use them. Add test functions to
2197 the module after __END__ either using AutoSplit or by saying:
2198
2199  eval join('',<main::DATA>) || die $@ unless caller();
2200
2201 Does your module pass the 'empty subclass' test? If you say
2202 C<@SUBCLASS::ISA = qw(YOURCLASS);> your applications should be able
2203 to use SUBCLASS in exactly the same way as YOURCLASS.  For example,
2204 does your application still work if you change:  C<$obj = new YOURCLASS;>
2205 into: C<$obj = new SUBCLASS;> ?
2206
2207 Avoid keeping any state information in your packages. It makes it
2208 difficult for multiple other packages to use yours. Keep state
2209 information in objects.
2210
2211 Always use B<-w>.
2212
2213 Try to C<use strict;> (or C<use strict qw(...);>).
2214 Remember that you can add C<no strict qw(...);> to individual blocks
2215 of code that need less strictness.
2216
2217 Always use B<-w>.
2218
2219 Follow the guidelines in the perlstyle(1) manual.
2220
2221 Always use B<-w>.
2222
2223 =item  *
2224
2225 Some simple style guidelines
2226
2227 The perlstyle manual supplied with Perl has many helpful points.
2228
2229 Coding style is a matter of personal taste. Many people evolve their
2230 style over several years as they learn what helps them write and
2231 maintain good code.  Here's one set of assorted suggestions that
2232 seem to be widely used by experienced developers:
2233
2234 Use underscores to separate words.  It is generally easier to read
2235 $var_names_like_this than $VarNamesLikeThis, especially for
2236 non-native speakers of English. It's also a simple rule that works
2237 consistently with VAR_NAMES_LIKE_THIS.
2238
2239 Package/Module names are an exception to this rule. Perl informally
2240 reserves lowercase module names for 'pragma' modules like integer
2241 and strict. Other modules normally begin with a capital letter and
2242 use mixed case with no underscores (need to be short and portable).
2243
2244 You may find it helpful to use letter case to indicate the scope
2245 or nature of a variable. For example:
2246
2247  $ALL_CAPS_HERE   constants only (beware clashes with Perl vars)
2248  $Some_Caps_Here  package-wide global/static
2249  $no_caps_here    function scope my() or local() variables
2250
2251 Function and method names seem to work best as all lowercase.
2252 e.g., C<< $obj->as_string() >>.
2253
2254 You can use a leading underscore to indicate that a variable or
2255 function should not be used outside the package that defined it.
2256
2257 =item  *
2258
2259 Select what to export.
2260
2261 Do NOT export method names!
2262
2263 Do NOT export anything else by default without a good reason!
2264
2265 Exports pollute the namespace of the module user.  If you must
2266 export try to use @EXPORT_OK in preference to @EXPORT and avoid
2267 short or common names to reduce the risk of name clashes.
2268
2269 Generally anything not exported is still accessible from outside the
2270 module using the ModuleName::item_name (or C<< $blessed_ref->method >>)
2271 syntax.  By convention you can use a leading underscore on names to
2272 indicate informally that they are 'internal' and not for public use.
2273
2274 (It is actually possible to get private functions by saying:
2275 C<my $subref = sub { ... };  &$subref;>.  But there's no way to call that
2276 directly as a method, because a method must have a name in the symbol
2277 table.)
2278
2279 As a general rule, if the module is trying to be object oriented
2280 then export nothing. If it's just a collection of functions then
2281 @EXPORT_OK anything but use @EXPORT with caution.
2282
2283 =item  *
2284
2285 Select a name for the module.
2286
2287 This name should be as descriptive, accurate, and complete as
2288 possible.  Avoid any risk of ambiguity. Always try to use two or
2289 more whole words.  Generally the name should reflect what is special
2290 about what the module does rather than how it does it.  Please use
2291 nested module names to group informally or categorize a module.
2292 There should be a very good reason for a module not to have a nested name.
2293 Module names should begin with a capital letter.
2294
2295 Having 57 modules all called Sort will not make life easy for anyone
2296 (though having 23 called Sort::Quick is only marginally better :-).
2297 Imagine someone trying to install your module alongside many others.
2298 If in any doubt ask for suggestions in comp.lang.perl.misc.
2299
2300 If you are developing a suite of related modules/classes it's good
2301 practice to use nested classes with a common prefix as this will
2302 avoid namespace clashes. For example: Xyz::Control, Xyz::View,
2303 Xyz::Model etc. Use the modules in this list as a naming guide.
2304
2305 If adding a new module to a set, follow the original author's
2306 standards for naming modules and the interface to methods in
2307 those modules.
2308
2309 If developing modules for private internal or project specific use,
2310 that will never be released to the public, then you should ensure
2311 that their names will not clash with any future public module. You
2312 can do this either by using the reserved Local::* category or by
2313 using a category name that includes an underscore like Foo_Corp::*.
2314
2315 To be portable each component of a module name should be limited to
2316 11 characters. If it might be used on MS-DOS then try to ensure each is
2317 unique in the first 8 characters. Nested modules make this easier.
2318
2319 =item  *
2320
2321 Have you got it right?
2322
2323 How do you know that you've made the right decisions? Have you
2324 picked an interface design that will cause problems later? Have
2325 you picked the most appropriate name? Do you have any questions?
2326
2327 The best way to know for sure, and pick up many helpful suggestions,
2328 is to ask someone who knows. Comp.lang.perl.misc is read by just about
2329 all the people who develop modules and it's the best place to ask.
2330
2331 All you need to do is post a short summary of the module, its
2332 purpose and interfaces. A few lines on each of the main methods is
2333 probably enough. (If you post the whole module it might be ignored
2334 by busy people - generally the very people you want to read it!)
2335
2336 Don't worry about posting if you can't say when the module will be
2337 ready - just say so in the message. It might be worth inviting
2338 others to help you, they may be able to complete it for you!
2339
2340 =item  *
2341
2342 README and other Additional Files.
2343
2344 It's well known that software developers usually fully document the
2345 software they write. If, however, the world is in urgent need of
2346 your software and there is not enough time to write the full
2347 documentation please at least provide a README file containing:
2348
2349 =over 10
2350
2351 =item *
2352
2353 A description of the module/package/extension etc.
2354
2355 =item *
2356
2357 A copyright notice - see below.
2358
2359 =item *
2360
2361 Prerequisites - what else you may need to have.
2362
2363 =item *
2364
2365 How to build it - possible changes to Makefile.PL etc.
2366
2367 =item *
2368
2369 How to install it.
2370
2371 =item *
2372
2373 Recent changes in this release, especially incompatibilities
2374
2375 =item *
2376
2377 Changes / enhancements you plan to make in the future.
2378
2379 =back
2380
2381 If the README file seems to be getting too large you may wish to
2382 split out some of the sections into separate files: INSTALL,
2383 Copying, ToDo etc.
2384
2385 =over 4
2386
2387 =item *
2388
2389 Adding a Copyright Notice.
2390
2391 How you choose to license your work is a personal decision.
2392 The general mechanism is to assert your Copyright and then make
2393 a declaration of how others may copy/use/modify your work.
2394
2395 Perl, for example, is supplied with two types of licence: The GNU
2396 GPL and The Artistic Licence (see the files README, Copying, and
2397 Artistic).  Larry has good reasons for NOT just using the GNU GPL.
2398
2399 My personal recommendation, out of respect for Larry, Perl, and the
2400 Perl community at large is to state something simply like:
2401
2402  Copyright (c) 1995 Your Name. All rights reserved.
2403  This program is free software; you can redistribute it and/or
2404  modify it under the same terms as Perl itself.
2405
2406 This statement should at least appear in the README file. You may
2407 also wish to include it in a Copying file and your source files.
2408 Remember to include the other words in addition to the Copyright.
2409
2410 =item  *
2411
2412 Give the module a version/issue/release number.
2413
2414 To be fully compatible with the Exporter and MakeMaker modules you
2415 should store your module's version number in a non-my package
2416 variable called $VERSION.  This should be a floating point
2417 number with at least two digits after the decimal (i.e., hundredths,
2418 e.g, C<$VERSION = "0.01">).  Don't use a "1.3.2" style version.
2419 See L<Exporter> for details.
2420
2421 It may be handy to add a function or method to retrieve the number.
2422 Use the number in announcements and archive file names when
2423 releasing the module (ModuleName-1.02.tar.Z).
2424 See perldoc ExtUtils::MakeMaker.pm for details.
2425
2426 =item  *
2427
2428 How to release and distribute a module.
2429
2430 It's good idea to post an announcement of the availability of your
2431 module (or the module itself if small) to the comp.lang.perl.announce
2432 Usenet newsgroup.  This will at least ensure very wide once-off
2433 distribution.
2434
2435 If possible, register the module with CPAN.  You should
2436 include details of its location in your announcement.
2437
2438 Some notes about ftp archives: Please use a long descriptive file
2439 name that includes the version number. Most incoming directories
2440 will not be readable/listable, i.e., you won't be able to see your
2441 file after uploading it. Remember to send your email notification
2442 message as soon as possible after uploading else your file may get
2443 deleted automatically. Allow time for the file to be processed
2444 and/or check the file has been processed before announcing its
2445 location.
2446
2447 FTP Archives for Perl Modules:
2448
2449 Follow the instructions and links on:
2450
2451    http://www.cpan.org/modules/00modlist.long.html
2452    http://www.cpan.org/modules/04pause.html
2453
2454 or upload to one of these sites:
2455
2456    https://pause.kbx.de/pause/
2457    http://pause.perl.org/pause/
2458
2459 and notify <modules@perl.org>.
2460
2461 By using the WWW interface you can ask the Upload Server to mirror
2462 your modules from your ftp or WWW site into your own directory on
2463 CPAN!
2464
2465 Please remember to send me an updated entry for the Module list!
2466
2467 =item  *
2468
2469 Take care when changing a released module.
2470
2471 Always strive to remain compatible with previous released versions.
2472 Otherwise try to add a mechanism to revert to the
2473 old behavior if people rely on it.  Document incompatible changes.
2474
2475 =back
2476
2477 =back
2478
2479 =head2 Guidelines for Converting Perl 4 Library Scripts into Modules
2480
2481 =over 4
2482
2483 =item  *
2484
2485 There is no requirement to convert anything.
2486
2487 If it ain't broke, don't fix it! Perl 4 library scripts should
2488 continue to work with no problems. You may need to make some minor
2489 changes (like escaping non-array @'s in double quoted strings) but
2490 there is no need to convert a .pl file into a Module for just that.
2491
2492 =item  *
2493
2494 Consider the implications.
2495
2496 All Perl applications that make use of the script will need to
2497 be changed (slightly) if the script is converted into a module.  Is
2498 it worth it unless you plan to make other changes at the same time?
2499
2500 =item  *
2501
2502 Make the most of the opportunity.
2503
2504 If you are going to convert the script to a module you can use the
2505 opportunity to redesign the interface.  The guidelines for module
2506 creation above include many of the issues you should consider.
2507
2508 =item  *
2509
2510 The pl2pm utility will get you started.
2511
2512 This utility will read *.pl files (given as parameters) and write
2513 corresponding *.pm files. The pl2pm utilities does the following:
2514
2515 =over 10
2516
2517 =item *
2518
2519 Adds the standard Module prologue lines
2520
2521 =item *
2522
2523 Converts package specifiers from ' to ::
2524
2525 =item *
2526
2527 Converts die(...) to croak(...)
2528
2529 =item *
2530
2531 Several other minor changes
2532
2533 =back
2534
2535 Being a mechanical process pl2pm is not bullet proof. The converted
2536 code will need careful checking, especially any package statements.
2537 Don't delete the original .pl file till the new .pm one works!
2538
2539 =back
2540
2541 =head2 Guidelines for Reusing Application Code
2542
2543 =over 4
2544
2545 =item  *
2546
2547 Complete applications rarely belong in the Perl Module Library.
2548
2549 =item  *
2550
2551 Many applications contain some Perl code that could be reused.
2552
2553 Help save the world! Share your code in a form that makes it easy
2554 to reuse.
2555
2556 =item  *
2557
2558 Break-out the reusable code into one or more separate module files.
2559
2560 =item  *
2561
2562 Take the opportunity to reconsider and redesign the interfaces.
2563
2564 =item  *
2565
2566 In some cases the 'application' can then be reduced to a small
2567
2568 fragment of code built on top of the reusable modules. In these cases
2569 the application could invoked as:
2570
2571      % perl -e 'use Module::Name; method(@ARGV)' ...
2572 or
2573      % perl -mModule::Name ...    (in perl5.002 or higher)
2574
2575 =back
2576
2577 =head1 NOTE
2578
2579 Perl does not enforce private and public parts of its modules as you may
2580 have been used to in other languages like C++, Ada, or Modula-17.  Perl
2581 doesn't have an infatuation with enforced privacy.  It would prefer
2582 that you stayed out of its living room because you weren't invited, not
2583 because it has a shotgun.
2584
2585 The module and its user have a contract, part of which is common law,
2586 and part of which is "written".  Part of the common law contract is
2587 that a module doesn't pollute any namespace it wasn't asked to.  The
2588 written contract for the module (A.K.A. documentation) may make other
2589 provisions.  But then you know when you C<use RedefineTheWorld> that
2590 you're redefining the world and willing to take the consequences.