Use Errno magic.
[p5sagit/p5-mst-13.2.git] / pod / perldelta.pod
1 =head1 NAME
2
3 perldelta - what's new for perl v5.7.0
4
5 =head1 DESCRIPTION
6
7 This document describes differences between the 5.6.0 release and
8 the 5.7.0 release.
9
10 =head1 Security Vulnerability Closed
11
12 A potential security vulnerability in the optional suidperl component
13 of Perl has been identified.  suidperl is neither built nor installed
14 by default.  As of September the 2nd, 2000, the only known vulnerable
15 platform is Linux, most likely all Linux distributions.  CERT and
16 various vendors have been alerted about the vulnerability.
17
18 The problem was caused by Perl trying to report a suspected security
19 exploit attempt using an external program, /bin/mail.  On Linux
20 platforms the /bin/mail program had an undocumented feature which
21 when combined with suidperl gave access to a root shell, resulting in
22 a serious compromise instead of reporting the exploit attempt.  If you
23 don't have /bin/mail, or if you have 'safe setuid scripts', or if
24 suidperl is not installed, you are safe.
25
26 The exploit attempt reporting feature has been completely removed from
27 the Perl 5.7.0 release, so that particular vulnerability isn't there
28 anymore.  However, further security vulnerabilities are,
29 unfortunately, always possible.  The suidperl code is being reviewed
30 and if deemed too risky to continue to be supported, it may be
31 completely removed from future releases.  In any case, suidperl should
32 only be used by security experts who know exactly what they are doing
33 and why they are using suidperl instead of some other solution such as
34 sudo (see http://www.courtesan.com/sudo/).
35
36 =head1 Incompatible Changes
37
38 =over 4
39
40 =item *
41
42 Arrays now always interpolate into double-quoted strings:
43 constructs like "foo@bar" now always assume C<@bar> is an array,
44 whether or not the compiler has seen use of C<@bar>.
45
46 =item *
47
48 The semantics of bless(REF, REF) were unclear and until someone proves
49 it to make some sense, it is forbidden.
50
51 =item *
52
53 A reference to a reference now stringify as "REF(0x81485ec)" instead
54 of "SCALAR(0x81485ec)" in order to be more consistent with the return
55 value of ref().
56
57 =item *
58
59 The very dusty examples in the eg/ directory have been removed.
60 Suggestions for new shiny examples welcome but the main issue is that
61 the examples need to be documented, tested and (most importantly)
62 maintained.
63
64 =item *
65
66 The obsolete chat2 library that should never have been allowed
67 to escape the laboratory has been decommissioned.
68
69 =item *
70
71 The unimplemented POSIX regex features [[.cc.]] and [[=c=]] are still
72 recognised but now cause fatal errors.  The previous behaviour of
73 ignoring them by default and warning if requested was unacceptable
74 since it, in a way, falsely promised that the features could be used.
75
76 =item *
77
78 The (bogus) escape sequences \8 and \9 now give an optional warning
79 ("Unrecognized escape passed through").  There is no need to \-escape
80 any C<\w> character.
81
82 =item *
83
84 lstat(FILEHANDLE) now gives a warning because the operation makes no sense.
85 In future releases this may become a fatal error.
86
87 =item *
88
89 The long deprecated uppercase aliases for the string comparison
90 operators (EQ, NE, LT, LE, GE, GT) have now been removed.
91
92 =item *
93
94 The regular expression captured submatches ($1, $2, ...) are now
95 more consistently unset if the match fails, instead of leaving false
96 data lying around in them.
97
98 =item *
99
100 The tr///C and tr///U features have been removed and will not return;
101 the interface was a mistake.  Sorry about that.  For similar
102 functionality, see pack('U0', ...) and pack('C0', ...).
103
104 =back
105
106 =head1 Core Enhancements
107
108 =over 4
109
110 =item *
111
112 Formats now support zero-padded decimal fields.
113
114 =item *
115
116 C<perl -d:Module=arg,arg,arg> now works (previously one couldn't pass
117 in multiple arguments.)
118
119 =item *
120
121 my __PACKAGE__ now works.
122
123 =item *
124
125 C<no Module;> now works even if there is no "sub unimport" in the Module.
126
127 =item *
128
129 The numerical comparison operators return C<undef> if either operand
130 is a NaN.  Previously the behaviour was unspecified.
131
132 =item *
133
134 C<pack('U0a*', ...)> can now be used to force a string to UTF8.
135
136 =item *
137
138 The printf and sprintf now support parameter reordering using the
139 C<%\d+\$> and C<*\d+\$> syntaxes.
140
141 =item *
142
143 prototype(\&) is now available.
144
145 =item *
146
147 There is now an UNTIE method.
148
149 =back
150
151 =head1 Modules and Pragmata
152
153 =head2 New Modules
154
155 =over 4
156
157 =item *
158
159 File::Temp allows one to create temporary files and directories in an
160 easy, portable, and secure way.
161
162 =item *
163
164 Storable gives persistence to Perl data structures by allowing the
165 storage and retrieval of Perl data to and from files in a fast and
166 compact binary format.
167
168 =back
169
170 =head2 Updated And Improved Modules and Pragmata
171
172 =over 4
173
174 =item *
175
176 The following independently supported modules have been updated to
177 newer versions from CPAN: CGI, CPAN, DB_File, File::Spec, Getopt::Long,
178 the podlators bundle, Pod::LaTeX, Pod::Parser, Term::ANSIColor, Test.
179
180 =item *
181
182 Bug fixes and minor enhancements have been applied to B::Deparse,
183 Data::Dumper, IO::Poll, IO::Socket::INET, Math::BigFloat,
184 Math::Complex, Math::Trig, Net::protoent, the re pragma, SelfLoader,
185 Sys::SysLog, Test::Harness, Text::Wrap, UNIVERSAL, and the warnings
186 pragma.
187
188 =item *
189
190 The attributes::reftype() now works on tied arguments.
191
192 =item *
193
194 AutoLoader can now be disabled with C<no AutoLoader;>,
195
196 =item *
197
198 The English module can now be used without the infamous performance
199 hit by saying
200
201         use English '-no_performance_hit';
202
203 (Assuming, of course, that one doesn't need the troublesome variables
204 C<$`>, C<$&>, or C<$'>.)  Also, introduced C<@LAST_MATCH_START> and
205 C<@LAST_MATCH_END> English aliases for C<@-> and C<@+>.
206
207 =item *
208
209 File::Find now has pre- and post-processing callbacks.  It also
210 correctly changes directories when chasing symbolic links.  Callbacks
211 (naughtily) exiting with "next;" instead of "return;" now work.
212
213 =item *
214
215 File::Glob::glob() renamed to File::Glob::bsd_glob() to avoid
216 prototype mismatch with CORE::glob().
217
218 =item *
219
220 IPC::Open3 now allows the use of numeric file descriptors.
221
222 =item *
223
224 use lib now works identically to @INC.  Removing directories
225 with 'no lib' now works.
226
227 =item *
228
229 C<%INC> now localised in a Safe compartment so that use/require work.
230
231 =item *
232
233 The Shell module now has an OO interface.
234
235 =item *
236
237 =back
238
239 =head1 Utility Changes
240
241 =over 4
242
243 =item *
244
245 The Emacs perl mode (emacs/cperl-mode.el) has been updated to version
246 4.31.
247
248 =item *
249
250 Perlbug is now much more robust.  It also sends the bug report to
251 perl.org, not perl.com.
252
253 =item *
254
255 The perlcc utility has been rewritten and its user interface (that is,
256 command line) is much more like that of the UNIX C compiler, cc.
257
258 =item *
259
260 The xsubpp utility for extension writers now understands POD
261 documentation embedded in the *.xs files.
262
263 =back
264
265 =head1 New Documentation
266
267 =over 4
268
269 =item *
270
271 perl56delta details the changes between the 5.005 release and the
272 5.6.0 release.
273
274 =item *
275
276 perldebtut is a Perl debugging tutorial.
277
278 =item *
279
280 perlebcdic contains considerations for running Perl on EBCDIC platforms.
281 Note that unfortunately EBCDIC platforms that used to supported back in
282 Perl 5.005 are still unsupported by Perl 5.7.0; the plan, however, is to
283 bring them back to the fold.  
284
285 =item *
286
287 perlnewmod tells about writing and submitting a new module.
288
289 =item *
290
291 perlposix-bc explains using Perl on the POSIX-BC platform
292 (an EBCDIC mainframe platform).
293
294 =item *
295
296 perlretut is a regular expression tutorial.
297
298 =item *
299
300 perlrequick is a regular expressions quick-start guide.
301 Yes, much quicker than perlretut.
302
303 =item *
304
305 perlutil explains the command line utilities packaged with the Perl
306 distribution.
307
308 =back
309
310 =head1 Performance Enhancements
311
312 =over 4
313
314 =item *
315
316 map() that changes the size of the list should now work faster.
317
318 =item *
319  
320 sort() has been changed to use mergesort internally as opposed to the
321 earlier quicksort.  For very small lists this may result in slightly
322 slower sorting times, but in general the speedup should be at least
323 20%.  Additional bonuses are that the worst case behaviour of sort()
324 is now better (in computer science terms it now runs in time O(N log N),
325 as opposed to quicksort's Theta(N**2) worst-case run time behaviour),
326 and that sort() is now stable (meaning that elements with identical
327 keys will stay ordered as they were before the sort).
328
329 =back
330
331 =head1 Installation and Configuration Improvements
332
333 =head2 Generic Improvements
334
335 =over 4
336
337 =item *
338
339 INSTALL now explains how you can configure Perl to use 64-bit
340 integers even on non-64-bit platforms.
341
342 =item *
343
344 Policy.sh policy change: if you are reusing a Policy.sh file
345 (see INSTALL) and you use Configure -Dprefix=/foo/bar and in the old
346 Policy $prefix eq $siteprefix and $prefix eq $vendorprefix, all of
347 them will now be changed to the new prefix, /foo/bar.  (Previously
348 only $prefix changed.)  If you do not like this new behaviour,
349 specify prefix, siteprefix, and vendorprefix explicitly.
350
351 =item *
352
353 A new optional location for Perl libraries, otherlibdirs, is available.
354 It can be used for example for vendor add-ons without disturbing Perl's
355 own library directories.
356
357 =item *
358
359 In many platforms the vendor-supplied 'cc' is too stripped-down to
360 build Perl (basically, 'cc' doesn't do ANSI C).  If this seems
361 to be the case and 'cc' does not seem to be the GNU C compiler
362 'gcc', an automatic attempt is made to find and use 'gcc' instead.
363
364 =item *
365
366 gcc needs to closely track the operating system release to avoid
367 build problems. If Configure finds that gcc was built for a different
368 operating system release than is running, it now gives a clearly visible
369 warning that there may be trouble ahead.
370
371 =item *
372
373 If binary compatibility with the 5.005 release is not wanted, Configure
374 no longer suggests including the 5.005 modules in @INC.
375
376 =item *
377
378 Configure C<-S> can now run non-interactively.
379
380 =item *
381
382 configure.gnu now works with options with whitespace in them.
383
384 =item *
385
386 installperl now outputs everything to STDERR.
387
388 =item *
389
390 $Config{byteorder} is now computed dynamically (this is more robust
391 with "fat binaries" where an executable image contains binaries for
392 more than one binary platform.)
393
394 =item *
395
396 Configure no longer included the DBM libraries (dbm, gdbm, db, ndbm)
397 when building the Perl binary. The only exception to this is SunOS 4.x,
398 which needs them.
399
400 =back
401
402 =head1 Selected Bug Fixes
403
404 =over 4
405
406 =item *
407
408 Several debugger fixes: exit code now reflects the script exit code,
409 condition C<"0"> now treated correctly, the C<d> command now checks
410 line number, the C<$.> no longer gets corrupted, all debugger output now
411 goes correctly to the socket if RemotePort is set.
412
413 =item *
414
415 C<*foo{FORMAT}> now works.
416
417 =item *
418
419 Lexical warnings now propagating correctly between scopes.
420
421 =item *
422
423 Line renumbering with eval and C<#line> now works.
424
425 =item *
426
427 Fixed numerous memory leaks, especially in eval "".
428
429 =item *
430
431 Modulus of unsigned numbers now works (4063328477 % 65535 used to
432 return 27406, instead of 27047).
433
434 =item *
435
436 Some "not a number" warnings introduced in 5.6.0 eliminated to be
437 more compatible with 5.005.  Infinity is now recognised as a number.
438
439 =item *
440
441 our() variables will not cause "will not stay shared" warnings.
442
443 =item *
444
445 pack "Z" now correctly terminates the string with "\0".
446
447 =item *
448
449 Fix password routines which in some shadow password platforms
450 (e.g. HP-UX) caused getpwent() to return every other entry.
451
452 =item *
453
454 printf() no longer resets the numeric locale to "C".
455
456 =item *
457
458 C<q(a\\b)> now parses correctly as C<'a\\b'>.
459
460 =item *
461
462 Printing quads (64-bit integers) with printf/sprintf now works
463 without the q L ll prefixes (assuming you are on a quad-capable platform).
464
465 =item *
466
467 Regular expressions on references and overloaded scalars now work.
468
469 =item *
470
471 scalar() now forces scalar context even when used in void context.
472
473 =item *
474         
475 sort() arguments are now compiled in the right wantarray context
476 (they were accidentally using the context of the sort() itself).
477
478 =item *
479
480 Changed the POSIX character class C<[[:space:]]> to include the (very
481 rare) vertical tab character.  Added a new POSIX-ish character class
482 C<[[:blank:]]> which stands for horizontal whitespace (currently,
483 the space and the tab).
484
485 =item *
486
487 $AUTOLOAD, sort(), lock(), and spawning subprocesses
488 in multiple threads simultaneously are now thread-safe.
489
490 =item *
491
492 Allow read-only string on left hand side of non-modifying tr///.
493
494 =item *
495
496 Several Unicode fixes (but still not perfect).
497
498 =over 8
499
500 =item *
501
502 BOMs (byte order marks) in the beginning of Perl files
503 (scripts, modules) should now be transparently skipped.
504 UTF-16 (UCS-2)encoded Perl files should now be read correctly.
505
506 =item *
507
508 The character tables have been updated to Unicode 3.0.1.
509
510 =item *
511
512 chr() for values greater than 127 now create utf8 when under use
513 utf8.
514
515 =item *
516
517 Comparing with utf8 data does not magically upgrade non-utf8 data into
518 utf8.
519
520 =item *
521
522 C<IsAlnum>, C<IsAlpha>, and C<IsWord> now match titlecase.
523
524 =item *
525
526 Concatenation with the C<.> operator or via variable interpolation,
527 C<eq>, C<substr>, C<reverse>, C<quotemeta>, the C<x> operator,
528 substitution with C<s///>, single-quoted UTF8, should now work--in
529 theory.
530
531 =item *
532
533 The C<tr///> operator now works I<slightly> better but is still rather
534 broken.  Note that the C<tr///CU> functionality has been removed (but
535 see pack('U0', ...)).
536
537 =item *
538
539 vec() now tries to work with characters <= 255 when possible, but it leaves
540 higher character values in place.  In that case, if vec() was used to modify
541 the string, it is no longer considered to be utf8-encoded.
542
543 =item *
544
545 Zero entries were missing from the Unicode classes like C<IsDigit>.
546
547 =back
548
549 =item *
550
551 UNIVERSAL::isa no longer caches methods incorrectly.  (This broke
552 the Tk extension with 5.6.0.)
553
554 =back
555
556 =head2 Platform Specific Changes and Fixes
557
558 =over 4
559
560 =item *
561
562 BSDI 4.*
563
564 Perl now works on post-4.0 BSD/OSes.
565
566 =item *
567
568 All BSDs
569
570 Setting C<$0> now works (as much as possible; see perlvar for details).
571
572 =item *
573
574 Cygwin
575
576 Numerous updates; currently synchronised with Cygwin 1.1.4.
577
578 =item *
579
580 EPOC
581
582 EPOC update after Perl 5.6.0.  See README.epoc.
583
584 =item *
585
586 FreeBSD 3.*
587
588 Perl now works on post-3.0 FreeBSDs.
589
590 =item *
591
592 HP-UX
593
594 README.hpux updated; C<Configure -Duse64bitall> now almost works.
595
596 =item *
597
598 IRIX
599
600 Numerous compilation flag and hint enhancements; accidental mixing
601 of 32-bit and 64-bit libraries (a doomed attempt) made much harder.
602
603 =item *
604
605 Linux
606
607 Long doubles should now work (see INSTALL).
608
609 =item *
610
611 MacOS Classic
612
613 Compilation of the standard Perl distribution in MacOS Classic should
614 now work if you have the Metrowerks development environment and
615 the missing Mac-specific toolkit bits.  Contact the macperl mailing
616 list for details.
617
618 =item *
619
620 MPE/iX
621
622 MPE/iX update after Perl 5.6.0.  See README.mpeix.
623
624 =item *
625
626 NetBSD/sparc
627
628 Perl now works on NetBSD/sparc.
629
630 =item *
631
632 OS/2
633
634 Now works with usethreads (see INSTALL).
635
636 =item *
637
638 Solaris
639
640 64-bitness using the Sun Workshop compiler now works.
641
642 =item *
643
644 Tru64 (aka Digital UNIX, aka DEC OSF/1)
645
646 The operating system version letter now recorded in $Config{osvers}.
647 Allow compiling with gcc (previously explicitly forbidden).  Compiling
648 with gcc still not recommended because buggy code results, even with
649 gcc 2.95.2.
650
651 =item *
652
653 Unicos
654
655 Fixed various alignment problems that lead into core dumps either
656 during build or later; no longer dies on math errors at runtime;
657 now using full quad integers (64 bits), previously was using 
658 only 46 bit integers for speed.
659
660 =item *
661
662 VMS
663
664 chdir() now works better despite a CRT bug; now works with MULTIPLICITY
665 (see INSTALL); now works with Perl's malloc.
666
667 =item *
668
669 Windows
670
671 =over 8
672
673 =item *
674
675 accept() no longer leaks memory.
676
677 =item *
678
679 Better chdir() return value for a non-existent directory.
680
681 =item *
682
683 New %ENV entries now propagate to subprocesses.
684
685 =item *
686
687 $ENV{LIB} now used to search for libs under Visual C.
688
689 =item *
690
691 A failed (pseudo)fork now returns undef and sets errno to EAGAIN.
692
693 =item *
694
695 Allow REG_EXPAND_SZ keys in the registry.
696
697 =item *
698
699 Can now send() from all threads, not just the first one.
700
701 =item *
702
703 Fake signal handling reenabled, bugs and all.
704
705 =item *
706
707 Less stack reserved per thread so that more threads can run
708 concurrently. (Still 16M per thread.)
709
710 =item *
711
712 C<File::Spec->tmpdir()> now prefers C:/temp over /tmp
713 (works better when perl is running as service).
714
715 =item *
716
717 Better UNC path handling under ithreads.
718
719 =item *
720
721 wait() and waitpid() now work much better.
722
723 =item *
724
725 winsock handle leak fixed.
726
727 =back
728
729 =head1 New or Changed Diagnostics
730
731 All regular expression compilation error messages are now hopefully
732 easier to understand both because the error message now comes before
733 the failed regex and because the point of failure is now clearly
734 marked.
735
736 The various "opened only for", "on closed", "never opened" warnings
737 drop the C<main::> prefix for filehandles in the C<main> package,
738 for example C<STDIN> instead of <main::STDIN>. 
739
740 The "Unrecognized escape" warning has been extended to include C<\8>,
741 C<\9>, and C<\_>.  There is no need to escape any of the C<\w> characters.
742
743 =head1 Changed Internals
744
745 =over 4
746
747 =item *
748
749 perlapi.pod (a companion to perlguts) now attempts to document the
750 internal API.
751
752 =item *
753
754 You can now build a really minimal perl called microperl.
755 Building microperl does not require even running Configure;
756 C<make -f Makefile.micro> should be enough.  Beware: microperl makes
757 many assumptions, some of which may be too bold; the resulting
758 executable may crash or otherwise misbehave in wondrous ways.
759 For careful hackers only.
760
761 =item *
762
763 Added rsignal(), whichsig(), do_join() to the publicised API.
764
765 =item *
766
767 Made possible to propagate customised exceptions via croak()ing.
768
769 =item *
770
771 Added is_utf8_char(), is_utf8_string(), bytes_to_utf8(), and utf8_to_bytes().
772
773 =item *
774
775 Now xsubs can have attributes just like subs.
776
777 =back
778
779 =head1 Known Problems
780
781 =head2 Unicode Support Still Far From Perfect
782
783 We're working on it.  Stay tuned.
784
785 =head2 EBCDIC Still A Lost Platform
786
787 The plan is to bring them back.
788
789 =head2 Building Extensions Can Fail Because Of Largefiles
790
791 Certain extensions like mod_perl and BSD::Resource are known to have
792 issues with `largefiles', a change brought by Perl 5.6.0 in which file
793 offsets default to 64 bits wide, where supported.  Modules may fail to
794 compile at all or compile and work incorrectly.  Currently there is no
795 good solution for the problem, but Configure now provides appropriate
796 non-largefile ccflags, ldflags, libswanted, and libs in the %Config
797 hash (e.g., $Config{ccflags_nolargefiles}) so the extensions that are
798 having problems can try configuring themselves without the
799 largefileness.  This is admittedly not a clean solution, and the
800 solution may not even work at all.  One potential failure is whether
801 one can (or, if one can, whether it's a good idea) link together at
802 all binaries with different ideas about file offsets, all this is
803 platform-dependent.
804
805 =head2 ftmp-security tests warn 'system possibly insecure'
806
807 Don't panic.  Read INSTALL 'make test' section instead. 
808
809 =head2 Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
810
811 If perl is configured with -Duse64bitall, the successful result of the
812 subtest 10 of lib/posix may arrive before the successful result of the
813 subtest 9, which confuses the test harness so much that it thinks the
814 subtest 9 failed.
815
816 =head2 Long Doubles Still Don't Work In Solaris
817
818 The experimental long double support is still very much so in Solaris.
819 (Other platforms like Linux and Tru64 are beginning to solidify in
820 this area.)
821
822 =head2 Linux With Sfio Fails op/misc Test 48
823
824 No known fix.
825
826 =head2 Storable tests fail in some platforms
827
828 If any Storable tests fail the use of Storable is not advisable.
829
830 =over 4
831
832 =item *
833
834 Many Storable tests fail on AIX configured with 64 bit integers.
835
836 So far unidentified problems break Storable in AIX if Perl is
837 configured to use 64 bit integers.  AIX in 32-bit mode works and
838 other 64-bit platforms work with Storable.
839
840 =item *
841
842 DOS DJGPP may hang when testing Storable.
843
844 =item *
845
846 st-06compat fails in UNICOS and UNICOS/mk.
847
848 This means that you cannot read old (pre-Storable-0.7) Storable images
849 made in other platforms.
850
851 =item *
852
853 st-store.t and st-retrieve may fail with Compaq C 6.2 on OpenVMS Alpha 7.2.
854
855 =head2 Threads Are Still Experimental
856
857 Multithreading is still an experimental feature.  Some platforms
858 emit the following message for lib/thr5005
859
860     #
861     # This is a KNOWN FAILURE, and one of the reasons why threading
862     # is still an experimental feature.  It is here to stop people
863     # from deploying threads in production. ;-)
864     #
865  
866 and another known thread-related warning is
867
868    pragma/overload......Unbalanced saves: 3 more saves than restores
869    panic: magic_mutexfree during global destruction.
870    ok
871    lib/selfloader.......Unbalanced saves: 3 more saves than restores
872    panic: magic_mutexfree during global destruction.
873    ok
874    lib/st-dclone........Unbalanced saves: 3 more saves than restores
875    panic: magic_mutexfree during global destruction.
876    ok
877
878 =head2 The Compiler Suite Is Still Experimental
879
880 The compiler suite is slowly getting better but is nowhere near
881 working order yet.  The backend part that has seen perhaps the most
882 progress is the bytecode compiler.
883
884 =back
885
886 =head1 Reporting Bugs
887
888 If you find what you think is a bug, you might check the articles
889 recently posted to the comp.lang.perl.misc newsgroup and the perl
890 bug database at http://bugs.perl.org.  There may also be
891 information at http://www.perl.com/perl/, the Perl Home Page.
892
893 If you believe you have an unreported bug, please run the B<perlbug>
894 program included with your release.  Be sure to trim your bug down
895 to a tiny but sufficient test case.  Your bug report, along with the
896 output of C<perl -V>, will be sent off to perlbug@perl.org to be
897 analysed by the Perl porting team.
898
899 =head1 SEE ALSO
900
901 The F<Changes> file for exhaustive details on what changed.
902
903 The F<INSTALL> file for how to build Perl.
904
905 The F<README> file for general stuff.
906
907 The F<Artistic> and F<Copying> files for copyright information.
908
909 =head1 HISTORY
910
911 Written by Jarkko Hietaniemi <F<jhi@iki.fi>>, with many contributions
912 from The Perl Porters and Perl Users submitting feedback and patches.
913
914 Send omissions or corrections to <F<perlbug@perl.org>>.
915
916 =cut