3 perldelta - what's new for perl5.004
7 This document describes differences between the 5.003 release (as
8 documented in I<Programming Perl>, second edition--the Camel Book) and
11 =head1 Supported Environments
13 Perl5.004 builds out of the box on Unix, Plan 9, LynxOS, VMS, OS/2,
14 QNX, AmigaOS, and Windows NT. Perl runs on Windows 95 as well, but it
15 cannot be built there, for lack of a reasonable command interpreter.
19 Most importantly, many bugs were fixed, including several security
20 problems. See the F<Changes> file in the distribution for details.
22 =head2 List assignment to %ENV works
24 C<%ENV = ()> and C<%ENV = @list> now work as expected (except on VMS
25 where it generates a fatal error).
27 =head2 "Can't locate Foo.pm in @INC" error now lists @INC
29 =head2 Compilation option: Binary compatibility with 5.003
31 There is a new Configure question that asks if you want to maintain
32 binary compatibility with Perl 5.003. If you choose binary
33 compatibility, you do not have to recompile your extensions, but you
34 might have symbol conflicts if you embed Perl in another application,
35 just as in the 5.003 release. By default, binary compatibility
36 is preserved at the expense of symbol table pollution.
38 =head2 $PERL5OPT environment variable
40 You may now put Perl options in the $PERL5OPT environment variable.
41 Unless Perl is running with taint checks, it will interpret this
42 variable as if its contents had appeared on a "#!perl" line at the
43 beginning of your script, except that hyphens are optional. PERL5OPT
44 may only be used to set the following switches: B<-[DIMUdmw]>.
46 =head2 Limitations on B<-M>, B<-m>, and B<-T> options
48 The C<-M> and C<-m> options are no longer allowed on the C<#!> line of
49 a script. If a script needs a module, it should invoke it with the
52 The B<-T> option is also forbidden on the C<#!> line of a script,
53 unless it was present on the Perl command line. Due to the way C<#!>
54 works, this usually means that B<-T> must be in the first argument.
59 will probably work for an executable script invoked as C<scriptname>,
64 will probably fail under the same conditions. (Non-Unix systems will
65 probably not follow this rule.) But C<perl scriptname> is guaranteed
66 to fail, since then there is no chance of B<-T> being found on the
67 command line before it is found on the C<#!> line.
69 =head2 More precise warnings
71 If you removed the B<-w> option from your Perl 5.003 scripts because it
72 made Perl too verbose, we recommend that you try putting it back when
73 you upgrade to Perl 5.004. Each new perl version tends to remove some
74 undesirable warnings, while adding new warnings that may catch bugs in
77 =head2 Deprecated: Inherited C<AUTOLOAD> for non-methods
79 Before Perl 5.004, C<AUTOLOAD> functions were looked up as methods
80 (using the C<@ISA> hierarchy), even when the function to be autoloaded
81 was called as a plain function (e.g. C<Foo::bar()>), not a method
82 (e.g. C<Foo-E<gt>bar()> or C<$obj-E<gt>bar()>).
84 Perl 5.005 will use method lookup only for methods' C<AUTOLOAD>s.
85 However, there is a significant base of existing code that may be using
86 the old behavior. So, as an interim step, Perl 5.004 issues an optional
87 warning when a non-method uses an inherited C<AUTOLOAD>.
89 The simple rule is: Inheritance will not work when autoloading
90 non-methods. The simple fix for old code is: In any module that used to
91 depend on inheriting C<AUTOLOAD> for non-methods from a base class named
92 C<BaseClass>, execute C<*AUTOLOAD = \&BaseClass::AUTOLOAD> during startup.
94 =head2 Previously deprecated %OVERLOAD is no longer usable
96 Using %OVERLOAD to define overloading was deprecated in 5.003.
97 Overloading is now defined using the overload pragma. %OVERLOAD is
98 still used internally but should not be used by Perl scripts. See
99 L<overload> for more details.
101 =head2 Subroutine arguments created only when they're modified
103 In Perl 5.004, nonexistent array and hash elements used as subroutine
104 parameters are brought into existence only if they are actually
105 assigned to (via C<@_>).
107 Earlier versions of Perl vary in their handling of such arguments.
108 Perl versions 5.002 and 5.003 always brought them into existence.
109 Perl versions 5.000 and 5.001 brought them into existence only if
110 they were not the first argument (which was almost certainly a bug).
111 Earlier versions of Perl never brought them into existence.
113 For example, given this code:
116 sub show { print $_[0] };
117 sub change { $_[0]++ };
121 After this code executes in Perl 5.004, $a{b} exists but $a[2] does
122 not. In Perl 5.002 and 5.003, both $a{b} and $a[2] would have existed
123 (but $a[2]'s value would have been undefined).
125 =head2 Group vector changeable with C<$)>
127 The C<$)> special variable has always (well, in Perl 5, at least)
128 reflected not only the current effective group, but also the group list
129 as returned by the C<getgroups()> C function (if there is one).
130 However, until this release, there has not been a way to call the
131 C<setgroups()> C function from Perl.
133 In Perl 5.004, assigning to C<$)> is exactly symmetrical with examining
134 it: The first number in its string value is used as the effective gid;
135 if there are any numbers after the first one, they are passed to the
136 C<setgroups()> C function (if there is one).
138 =head2 Fixed parsing of $$<digit>, &$<digit>, etc.
140 Perl versions before 5.004 misinterpreted any type marker followed by
141 "$" and a digit. For example, "$$0" was incorrectly taken to mean
142 "${$}0" instead of "${$0}". This bug is (mostly) fixed in Perl 5.004.
144 However, the developers of Perl 5.004 could not fix this bug completely,
145 because at least two widely-used modules depend on the old meaning of
146 "$$0" in a string. So Perl 5.004 still interprets "$$<digit>" in the
147 old (broken) way inside strings; but it generates this message as a
148 warning. And in Perl 5.005, this special treatment will cease.
150 =head2 Fixed localization of $<digit>, $&, etc.
152 Perl versions before 5.004 did not always properly localize the
153 regex-related special variables. Perl 5.004 does localize them, as
154 the documentation has always said it should. This may result in $1,
155 $2, etc. no longer being set where existing programs use them.
157 =head2 No resetting of $. on implicit close
159 The documentation for Perl 5.0 has always stated that C<$.> is I<not>
160 reset when an already-open file handle is reopened with no intervening
161 call to C<close>. Due to a bug, perl versions 5.000 through 5.003
162 I<did> reset C<$.> under that circumstance; Perl 5.004 does not.
164 =head2 C<wantarray> may return undef
166 The C<wantarray> operator returns true if a subroutine is expected to
167 return a list, and false otherwise. In Perl 5.004, C<wantarray> can
168 also return the undefined value if a subroutine's return value will
169 not be used at all, which allows subroutines to avoid a time-consuming
170 calculation of a return value if it isn't going to be used.
172 =head2 C<eval EXPR> determines value of EXPR in scalar context
174 Perl (version 5) used to determine the value of EXPR inconsistently,
175 sometimes incorrectly using the surrounding context for the determination.
176 Now, the value of EXPR (before being parsed by eval) is always determined in
177 a scalar context. Once parsed, it is executed as before, by providing
178 the context that the scope surrounding the eval provided. This change
179 makes the behavior Perl4 compatible, besides fixing bugs resulting from
180 the inconsistent behavior. This program:
182 @a = qw(time now is time);
184 print '|', scalar eval @a;
186 used to print something like "timenowis881399109|4", but now (and in perl4)
189 =head2 Changes to tainting checks
191 A bug in previous versions may have failed to detect some insecure
192 conditions when taint checks are turned on. (Taint checks are used
193 in setuid or setgid scripts, or when explicitly turned on with the
194 C<-T> invocation option.) Although it's unlikely, this may cause a
195 previously-working script to now fail -- which should be construed
196 as a blessing, since that indicates a potentially-serious security
197 hole was just plugged.
199 The new restrictions when tainting include:
203 =item No glob() or <*>
205 These operators may spawn the C shell (csh), which cannot be made
206 safe. This restriction will be lifted in a future version of Perl
207 when globbing is implemented without the use of an external program.
209 =item No spawning if tainted $CDPATH, $ENV, $BASH_ENV
211 These environment variables may alter the behavior of spawned programs
212 (especially shells) in ways that subvert security. So now they are
213 treated as dangerous, in the manner of $IFS and $PATH.
215 =item No spawning if tainted $TERM doesn't look like a terminal name
217 Some termcap libraries do unsafe things with $TERM. However, it would be
218 unnecessarily harsh to treat all $TERM values as unsafe, since only shell
219 metacharacters can cause trouble in $TERM. So a tainted $TERM is
220 considered to be safe if it contains only alphanumerics, underscores,
221 dashes, and colons, and unsafe if it contains other characters (including
226 =head2 New Opcode module and revised Safe module
228 A new Opcode module supports the creation, manipulation and
229 application of opcode masks. The revised Safe module has a new API
230 and is implemented using the new Opcode module. Please read the new
231 Opcode and Safe documentation.
233 =head2 Embedding improvements
235 In older versions of Perl it was not possible to create more than one
236 Perl interpreter instance inside a single process without leaking like a
237 sieve and/or crashing. The bugs that caused this behavior have all been
238 fixed. However, you still must take care when embedding Perl in a C
239 program. See the updated perlembed manpage for tips on how to manage
242 =head2 Internal change: FileHandle class based on IO::* classes
244 File handles are now stored internally as type IO::Handle. The
245 FileHandle module is still supported for backwards compatibility, but
246 it is now merely a front end to the IO::* modules -- specifically,
247 IO::Handle, IO::Seekable, and IO::File. We suggest, but do not
248 require, that you use the IO::* modules in new code.
250 In harmony with this change, C<*GLOB{FILEHANDLE}> is now just a
251 backward-compatible synonym for C<*GLOB{IO}>.
253 =head2 Internal change: PerlIO abstraction interface
255 It is now possible to build Perl with AT&T's sfio IO package
256 instead of stdio. See L<perlapio> for more details, and
257 the F<INSTALL> file for how to use it.
259 =head2 New and changed syntax
263 =item $coderef->(PARAMS)
265 A subroutine reference may now be suffixed with an arrow and a
266 (possibly empty) parameter list. This syntax denotes a call of the
267 referenced subroutine, with the given parameters (if any).
269 This new syntax follows the pattern of S<C<$hashref-E<gt>{FOO}>> and
270 S<C<$aryref-E<gt>[$foo]>>: You may now write S<C<&$subref($foo)>> as
271 S<C<$subref-E<gt>($foo)>>. All these arrow terms may be chained;
272 thus, S<C<&{$table-E<gt>{FOO}}($bar)>> may now be written
273 S<C<$table-E<gt>{FOO}-E<gt>($bar)>>.
277 =head2 New and changed builtin constants
283 The current package name at compile time, or the undefined value if
284 there is no current package (due to a C<package;> directive). Like
285 C<__FILE__> and C<__LINE__>, C<__PACKAGE__> does I<not> interpolate
290 =head2 New and changed builtin variables
296 Extended error message on some platforms. (Also known as
297 $EXTENDED_OS_ERROR if you C<use English>).
301 The current set of syntax checks enabled by C<use strict>. See the
302 documentation of C<strict> for more details. Not actually new, but
304 Because it is intended for internal use by Perl core components,
305 there is no C<use English> long name for this variable.
309 By default, running out of memory it is not trappable. However, if
310 compiled for this, Perl may use the contents of C<$^M> as an emergency
311 pool after die()ing with this message. Suppose that your Perl were
312 compiled with -DPERL_EMERGENCY_SBRK and used Perl's malloc. Then
316 would allocate a 64K buffer for use when in emergency.
317 See the F<INSTALL> file for information on how to enable this option.
318 As a disincentive to casual use of this advanced feature,
319 there is no C<use English> long name for this variable.
323 =head2 New and changed builtin functions
327 =item delete on slices
329 This now works. (e.g. C<delete @ENV{'PATH', 'MANPATH'}>)
333 is now supported on more platforms, prefers fcntl to lockf when
334 emulating, and always flushes before (un)locking.
336 =item printf and sprintf
338 Perl now implements these functions itself; it doesn't use the C
339 library function sprintf() any more, except for floating-point
340 numbers, and even then only known flags are allowed. As a result, it
341 is now possible to know which conversions and flags will work, and
344 The new conversions in Perl's sprintf() are:
347 %p a pointer (the address of the Perl value, in hexadecimal)
348 %n special: *stores* the number of characters output so far
349 into the next variable in the parameter list
351 The new flags that go between the C<%> and the conversion are:
353 # prefix octal with "0", hex with "0x"
354 h interpret integer as C type "short" or "unsigned short"
355 V interpret integer as Perl's standard integer type
357 Also, where a number would appear in the flags, an asterisk ("*") may
358 be used instead, in which case Perl uses the next item in the
359 parameter list as the given number (that is, as the field width or
360 precision). If a field width obtained through "*" is negative, it has
361 the same effect as the '-' flag: left-justification.
363 See L<perlfunc/sprintf> for a complete list of conversion and flags.
365 =item keys as an lvalue
367 As an lvalue, C<keys> allows you to increase the number of hash buckets
368 allocated for the given hash. This can gain you a measure of efficiency if
369 you know the hash is going to get big. (This is similar to pre-extending
370 an array by assigning a larger number to $#array.) If you say
374 then C<%hash> will have at least 200 buckets allocated for it. These
375 buckets will be retained even if you do C<%hash = ()>; use C<undef
376 %hash> if you want to free the storage while C<%hash> is still in scope.
377 You can't shrink the number of buckets allocated for the hash using
378 C<keys> in this way (but you needn't worry about doing this by accident,
379 as trying has no effect).
381 =item my() in Control Structures
383 You can now use my() (with or without the parentheses) in the control
384 expressions of control structures such as:
386 while (defined(my $line = <>)) {
392 if ((my $answer = <STDIN>) =~ /^y(es)?$/i) {
394 } elsif ($answer =~ /^n(o)?$/i) {
398 die "`$answer' is neither `yes' nor `no'";
401 Also, you can declare a foreach loop control variable as lexical by
402 preceding it with the word "my". For example, in:
404 foreach my $i (1, 2, 3) {
408 $i is a lexical variable, and the scope of $i extends to the end of
409 the loop, but not beyond it.
411 Note that you still cannot use my() on global punctuation variables
412 such as $_ and the like.
414 =item pack() and unpack()
416 A new format 'w' represents a BER compressed integer (as defined in
417 ASN.1). Its format is a sequence of one or more bytes, each of which
418 provides seven bits of the total value, with the most significant
419 first. Bit eight of each byte is set, except for the last byte, in
420 which bit eight is clear.
422 If 'p' or 'P' are given undef as values, they now generate a NULL
425 Both pack() and unpack() now fail when their templates contain invalid
426 types. (Invalid types used to be ignored.)
430 The new sysseek() operator is a variant of seek() that sets and gets the
431 file's system read/write position, using the lseek(2) system call. It is
432 the only reliable way to seek before using sysread() or syswrite(). Its
433 return value is the new position, or the undefined value on failure.
437 If the first argument to C<use> is a number, it is treated as a version
438 number instead of a module name. If the version of the Perl interpreter
439 is less than VERSION, then an error message is printed and Perl exits
440 immediately. Because C<use> occurs at compile time, this check happens
441 immediately during the compilation process, unlike C<require VERSION>,
442 which waits until runtime for the check. This is often useful if you
443 need to check the current Perl version before C<use>ing library modules
444 which have changed in incompatible ways from older versions of Perl.
445 (We try not to do this more than we have to.)
447 =item use Module VERSION LIST
449 If the VERSION argument is present between Module and LIST, then the
450 C<use> will call the VERSION method in class Module with the given
451 version as an argument. The default VERSION method, inherited from
452 the UNIVERSAL class, croaks if the given version is larger than the
453 value of the variable $Module::VERSION. (Note that there is not a
454 comma after VERSION!)
456 This version-checking mechanism is similar to the one currently used
457 in the Exporter module, but it is faster and can be used with modules
458 that don't use the Exporter. It is the recommended method for new
461 =item prototype(FUNCTION)
463 Returns the prototype of a function as a string (or C<undef> if the
464 function has no prototype). FUNCTION is a reference to or the name of the
465 function whose prototype you want to retrieve.
466 (Not actually new; just never documented before.)
470 The default seed for C<srand>, which used to be C<time>, has been changed.
471 Now it's a heady mix of difficult-to-predict system-dependent values,
472 which should be sufficient for most everyday purposes.
474 Previous to version 5.004, calling C<rand> without first calling C<srand>
475 would yield the same sequence of random numbers on most or all machines.
476 Now, when perl sees that you're calling C<rand> and haven't yet called
477 C<srand>, it calls C<srand> with the default seed. You should still call
478 C<srand> manually if your code might ever be run on a pre-5.004 system,
479 of course, or if you want a seed other than the default.
483 Functions documented in the Camel to default to $_ now in
484 fact do, and all those that do are so documented in L<perlfunc>.
486 =item C<m//gc> does not reset search position on failure
488 The C<m//g> match iteration construct has always reset its target
489 string's search position (which is visible through the C<pos> operator)
490 when a match fails; as a result, the next C<m//g> match after a failure
491 starts again at the beginning of the string. With Perl 5.004, this
492 reset may be disabled by adding the "c" (for "continue") modifier,
493 i.e. C<m//gc>. This feature, in conjunction with the C<\G> zero-width
494 assertion, makes it possible to chain matches together. See L<perlop>
497 =item C<m//x> ignores whitespace before ?*+{}
499 The C<m//x> construct has always been intended to ignore all unescaped
500 whitespace. However, before Perl 5.004, whitespace had the effect of
501 escaping repeat modifiers like "*" or "?"; for example, C</a *b/x> was
502 (mis)interpreted as C</a\*b/x>. This bug has been fixed in 5.004.
504 =item nested C<sub{}> closures work now
506 Prior to the 5.004 release, nested anonymous functions didn't work
509 =item formats work right on changing lexicals
511 Just like anonymous functions that contain lexical variables
512 that change (like a lexical index variable for a C<foreach> loop),
513 formats now work properly. For example, this silently failed
514 before (printed only zeros), but is fine now:
517 foreach $i ( 1 .. 10 ) {
525 However, it still fails (without a warning) if the foreach is within a
530 foreach $i ( 1 .. 10 ) {
542 =head2 New builtin methods
544 The C<UNIVERSAL> package automatically contains the following methods that
545 are inherited by all other classes:
551 C<isa> returns I<true> if its object is blessed into a subclass of C<CLASS>
553 C<isa> is also exportable and can be called as a sub with two arguments. This
554 allows the ability to check what a reference points to. Example:
556 use UNIVERSAL qw(isa);
558 if(isa($ref, 'ARRAY')) {
564 C<can> checks to see if its object has a method called C<METHOD>,
565 if it does then a reference to the sub is returned; if it does not then
566 I<undef> is returned.
568 =item VERSION( [NEED] )
570 C<VERSION> returns the version number of the class (package). If the
571 NEED argument is given then it will check that the current version (as
572 defined by the $VERSION variable in the given package) not less than
573 NEED; it will die if this is not the case. This method is normally
574 called as a class method. This method is called automatically by the
575 C<VERSION> form of C<use>.
577 use A 1.2 qw(some imported subs);
583 B<NOTE:> C<can> directly uses Perl's internal code for method lookup, and
584 C<isa> uses a very similar method and caching strategy. This may cause
585 strange effects if the Perl code dynamically changes @ISA in any package.
587 You may add other methods to the UNIVERSAL class via Perl or XS code.
588 You do not need to C<use UNIVERSAL> in order to make these methods
589 available to your program. This is necessary only if you wish to
590 have C<isa> available as a plain subroutine in the current package.
592 =head2 TIEHANDLE now supported
594 See L<perltie> for other kinds of tie()s.
598 =item TIEHANDLE classname, LIST
600 This is the constructor for the class. That means it is expected to
601 return an object of some sort. The reference can be used to
602 hold some internal information.
607 return bless \$i, shift;
610 =item PRINT this, LIST
612 This method will be triggered every time the tied handle is printed to.
613 Beyond its self reference it also expects the list that was passed to
619 return print join( $, => map {uc} @_), $\;
622 =item PRINTF this, LIST
624 This method will be triggered every time the tied handle is printed to
625 with the C<printf()> function.
626 Beyond its self reference it also expects the format and list that was
627 passed to the printf function.
632 print sprintf($fmt, @_)."\n";
637 This method will be called when the handle is read from via the C<read>
638 or C<sysread> functions.
642 my($buf,$len,$offset) = @_;
643 print "READ called, \$buf=$buf, \$len=$len, \$offset=$offset";
648 This method will be called when the handle is read from. The method
649 should return undef when there is no more data.
653 return "PRINT called $$r times\n"
658 This method will be called when the C<getc> function is called.
660 sub GETC { print "Don't GETC, Get Perl"; return "a"; }
664 As with the other types of ties, this method will be called when the
665 tied handle is about to be destroyed. This is useful for debugging and
666 possibly for cleaning up.
674 =head2 Malloc enhancements
676 If perl is compiled with the malloc included with the perl distribution
677 (that is, if C<perl -V:d_mymalloc> is 'define') then you can print
678 memory statistics at runtime by running Perl thusly:
680 env PERL_DEBUG_MSTATS=2 perl your_script_here
682 The value of 2 means to print statistics after compilation and on
683 exit; with a value of 1, the statistics are printed only on exit.
684 (If you want the statistics at an arbitrary time, you'll need to
685 install the optional module Devel::Peek.)
687 Three new compilation flags are recognized by malloc.c. (They have no
688 effect if perl is compiled with system malloc().)
692 =item -DPERL_EMERGENCY_SBRK
694 If this macro is defined, running out of memory need not be a fatal
695 error: a memory pool can allocated by assigning to the special
696 variable C<$^M>. See L<"$^M">.
700 Perl memory allocation is by bucket with sizes close to powers of two.
701 Because of these malloc overhead may be big, especially for data of
702 size exactly a power of two. If C<PACK_MALLOC> is defined, perl uses
703 a slightly different algorithm for small allocations (up to 64 bytes
704 long), which makes it possible to have overhead down to 1 byte for
705 allocations which are powers of two (and appear quite often).
707 Expected memory savings (with 8-byte alignment in C<alignbytes>) is
708 about 20% for typical Perl usage. Expected slowdown due to additional
709 malloc overhead is in fractions of a percent (hard to measure, because
710 of the effect of saved memory on speed).
712 =item -DTWO_POT_OPTIMIZE
714 Similarly to C<PACK_MALLOC>, this macro improves allocations of data
715 with size close to a power of two; but this works for big allocations
716 (starting with 16K by default). Such allocations are typical for big
717 hashes and special-purpose scripts, especially image processing.
719 On recent systems, the fact that perl requires 2M from system for 1M
720 allocation will not affect speed of execution, since the tail of such
721 a chunk is not going to be touched (and thus will not require real
722 memory). However, it may result in a premature out-of-memory error.
723 So if you will be manipulating very large blocks with sizes close to
724 powers of two, it would be wise to define this macro.
726 Expected saving of memory is 0-100% (100% in applications which
727 require most memory in such 2**n chunks); expected slowdown is
732 =head2 Miscellaneous efficiency enhancements
734 Functions that have an empty prototype and that do nothing but return
735 a fixed value are now inlined (e.g. C<sub PI () { 3.14159 }>).
737 Each unique hash key is only allocated once, no matter how many hashes
738 have an entry with that key. So even if you have 100 copies of the
739 same hash, the hash keys never have to be reallocated.
741 =head1 Support for More Operating Systems
743 Support for the following operating systems is new in Perl 5.004.
747 Perl 5.004 now includes support for building a "native" perl under
748 Windows NT, using the Microsoft Visual C++ compiler (versions 2.0
749 and above) or the Borland C++ compiler (versions 5.02 and above).
750 The resulting perl can be used under Windows 95 (if it
751 is installed in the same directory locations as it got installed
752 in Windows NT). This port includes support for perl extension
753 building tools like L<MakeMaker> and L<h2xs>, so that many extensions
754 available on the Comprehensive Perl Archive Network (CPAN) can now be
755 readily built under Windows NT. See http://www.perl.com/ for more
756 information on CPAN and F<README.win32> in the perl distribution for more
757 details on how to get started with building this port.
759 There is also support for building perl under the Cygwin32 environment.
760 Cygwin32 is a set of GNU tools that make it possible to compile and run
761 many Unix programs under Windows NT by providing a mostly Unix-like
762 interface for compilation and execution. See F<README.cygwin32> in the
763 perl distribution for more details on this port and how to obtain the
768 See F<README.plan9> in the perl distribution.
772 See F<README.qnx> in the perl distribution.
776 See F<README.amigaos> in the perl distribution.
780 Six new pragmatic modules exist:
784 =item use autouse MODULE => qw(sub1 sub2 sub3)
786 Defers C<require MODULE> until someone calls one of the specified
787 subroutines (which must be exported by MODULE). This pragma should be
788 used with caution, and only when necessary.
794 Looks for MakeMaker-like I<'blib'> directory structure starting in
795 I<dir> (or current directory) and working back up to five levels of
798 Intended for use on command line with B<-M> option as a way of testing
799 arbitrary scripts against an uninstalled version of a package.
801 =item use constant NAME => VALUE
803 Provides a convenient interface for creating compile-time constants,
804 See L<perlsub/"Constant Functions">.
808 Tells the compiler to enable (or disable) the use of POSIX locales for
811 When C<use locale> is in effect, the current LC_CTYPE locale is used
812 for regular expressions and case mapping; LC_COLLATE for string
813 ordering; and LC_NUMERIC for numeric formating in printf and sprintf
814 (but B<not> in print). LC_NUMERIC is always used in write, since
815 lexical scoping of formats is problematic at best.
817 Each C<use locale> or C<no locale> affects statements to the end of
818 the enclosing BLOCK or, if not inside a BLOCK, to the end of the
819 current file. Locales can be switched and queried with
822 See L<perllocale> for more information.
826 Disable unsafe opcodes, or any named opcodes, when compiling Perl code.
830 Enable VMS-specific language features. Currently, there are three
831 VMS-specific features available: 'status', which makes C<$?> and
832 C<system> return genuine VMS status values instead of emulating POSIX;
833 'exit', which makes C<exit> take a genuine VMS status value instead of
834 assuming that C<exit 1> is an error; and 'time', which makes all times
835 relative to the local time zone, in the VMS tradition.
841 =head2 Required Updates
843 Though Perl 5.004 is compatible with almost all modules that work
844 with Perl 5.003, there are a few exceptions:
846 Module Required Version for Perl 5.004
847 ------ -------------------------------
850 Tk Tk400.202 (-w makes noise)
852 Also, the majordomo mailing list program, version 1.94.1, doesn't work
853 with Perl 5.004 (nor with perl 4), because it executes an invalid
854 regular expression. This bug is fixed in majordomo version 1.94.2.
856 =head2 Installation directories
858 The I<installperl> script now places the Perl source files for
859 extensions in the architecture-specific library directory, which is
860 where the shared libraries for extensions have always been. This
861 change is intended to allow administrators to keep the Perl 5.004
862 library directory unchanged from a previous version, without running
863 the risk of binary incompatibility between extensions' Perl source and
866 =head2 Module information summary
868 Brand new modules, arranged by topic rather than strictly
871 CGI.pm Web server interface ("Common Gateway Interface")
872 CGI/Apache.pm Support for Apache's Perl module
873 CGI/Carp.pm Log server errors with helpful context
874 CGI/Fast.pm Support for FastCGI (persistent server process)
875 CGI/Push.pm Support for server push
876 CGI/Switch.pm Simple interface for multiple server types
878 CPAN Interface to Comprehensive Perl Archive Network
879 CPAN::FirstTime Utility for creating CPAN configuration file
880 CPAN::Nox Runs CPAN while avoiding compiled extensions
882 IO.pm Top-level interface to IO::* classes
883 IO/File.pm IO::File extension Perl module
884 IO/Handle.pm IO::Handle extension Perl module
885 IO/Pipe.pm IO::Pipe extension Perl module
886 IO/Seekable.pm IO::Seekable extension Perl module
887 IO/Select.pm IO::Select extension Perl module
888 IO/Socket.pm IO::Socket extension Perl module
890 Opcode.pm Disable named opcodes when compiling Perl code
892 ExtUtils/Embed.pm Utilities for embedding Perl in C programs
893 ExtUtils/testlib.pm Fixes up @INC to use just-built extension
895 FindBin.pm Find path of currently executing program
897 Class/Struct.pm Declare struct-like datatypes as Perl classes
898 File/stat.pm By-name interface to Perl's builtin stat
899 Net/hostent.pm By-name interface to Perl's builtin gethost*
900 Net/netent.pm By-name interface to Perl's builtin getnet*
901 Net/protoent.pm By-name interface to Perl's builtin getproto*
902 Net/servent.pm By-name interface to Perl's builtin getserv*
903 Time/gmtime.pm By-name interface to Perl's builtin gmtime
904 Time/localtime.pm By-name interface to Perl's builtin localtime
905 Time/tm.pm Internal object for Time::{gm,local}time
906 User/grent.pm By-name interface to Perl's builtin getgr*
907 User/pwent.pm By-name interface to Perl's builtin getpw*
909 Tie/RefHash.pm Base class for tied hashes with references as keys
911 UNIVERSAL.pm Base class for *ALL* classes
915 New constants in the existing Fcntl modules are now supported,
916 provided that your operating system happens to support them:
919 O_ASYNC O_DEFER O_DSYNC O_FSYNC O_SYNC
922 These constants are intended for use with the Perl operators sysopen()
923 and fcntl() and the basic database modules like SDBM_File. For the
924 exact meaning of these and other Fcntl constants please refer to your
925 operating system's documentation for fcntl() and open().
927 In addition, the Fcntl module now provides these constants for use
928 with the Perl operator flock():
930 LOCK_SH LOCK_EX LOCK_NB LOCK_UN
932 These constants are defined in all environments (because where there is
933 no flock() system call, Perl emulates it). However, for historical
934 reasons, these constants are not exported unless they are explicitly
935 requested with the ":flock" tag (e.g. C<use Fcntl ':flock'>).
939 The IO module provides a simple mechanism to load all the IO modules at one
940 go. Currently this includes:
948 For more information on any of these modules, please see its
949 respective documentation.
953 The Math::Complex module has been totally rewritten, and now supports
954 more operations. These are overloaded:
956 + - * / ** <=> neg ~ abs sqrt exp log sin cos atan2 "" (stringify)
958 And these functions are now exported:
961 log10 logn ln cbrt root
974 This new module provides a simpler interface to parts of Math::Complex for
975 those who need trigonometric functions only for real numbers.
979 There have been quite a few changes made to DB_File. Here are a few of
986 Fixed a handful of bugs.
990 By public demand, added support for the standard hash function exists().
994 Made it compatible with Berkeley DB 1.86.
998 Made negative subscripts work with RECNO interface.
1002 Changed the default flags from O_RDWR to O_CREAT|O_RDWR and the default
1003 mode from 0640 to 0666.
1007 Made DB_File automatically import the open() constants (O_RDWR,
1008 O_CREAT etc.) from Fcntl, if available.
1012 Updated documentation.
1016 Refer to the HISTORY section in DB_File.pm for a complete list of
1017 changes. Everything after DB_File 1.01 has been added since 5.003.
1021 Major rewrite - support added for both udp echo and real icmp pings.
1023 =head2 Object-oriented overrides for builtin operators
1025 Many of the Perl builtins returning lists now have
1026 object-oriented overrides. These are:
1038 For example, you can now say
1042 $his = (stat($filename)->st_uid == pwent($whoever)->pw_uid);
1044 =head1 Utility Changes
1050 =item Sends converted HTML to standard output
1052 The I<pod2html> utility included with Perl 5.004 is entirely new.
1053 By default, it sends the converted HTML to its standard output,
1054 instead of writing it to a file like Perl 5.003's I<pod2html> did.
1055 Use the B<--outfile=FILENAME> option to write to a file.
1063 =item C<void> XSUBs now default to returning nothing
1065 Due to a documentation/implementation bug in previous versions of
1066 Perl, XSUBs with a return type of C<void> have actually been
1067 returning one value. Usually that value was the GV for the XSUB,
1068 but sometimes it was some already freed or reused value, which would
1069 sometimes lead to program failure.
1071 In Perl 5.004, if an XSUB is declared as returning C<void>, it
1072 actually returns no value, i.e. an empty list (though there is a
1073 backward-compatibility exception; see below). If your XSUB really
1074 does return an SV, you should give it a return type of C<SV *>.
1076 For backward compatibility, I<xsubpp> tries to guess whether a
1077 C<void> XSUB is really C<void> or if it wants to return an C<SV *>.
1078 It does so by examining the text of the XSUB: if I<xsubpp> finds
1079 what looks like an assignment to C<ST(0)>, it assumes that the
1080 XSUB's return type is really C<SV *>.
1084 =head1 C Language API Changes
1088 =item C<gv_fetchmethod> and C<perl_call_sv>
1090 The C<gv_fetchmethod> function finds a method for an object, just like
1091 in Perl 5.003. The GV it returns may be a method cache entry.
1092 However, in Perl 5.004, method cache entries are not visible to users;
1093 therefore, they can no longer be passed directly to C<perl_call_sv>.
1094 Instead, you should use the C<GvCV> macro on the GV to extract its CV,
1095 and pass the CV to C<perl_call_sv>.
1097 The most likely symptom of passing the result of C<gv_fetchmethod> to
1098 C<perl_call_sv> is Perl's producing an "Undefined subroutine called"
1099 error on the I<second> call to a given method (since there is no cache
1102 =item C<perl_eval_pv>
1104 A new function handy for eval'ing strings of Perl code inside C code.
1105 This function returns the value from the eval statement, which can
1106 be used instead of fetching globals from the symbol table. See
1107 L<perlguts>, L<perlembed> and L<perlcall> for details and examples.
1109 =item Extended API for manipulating hashes
1111 Internal handling of hash keys has changed. The old hashtable API is
1112 still fully supported, and will likely remain so. The additions to the
1113 API allow passing keys as C<SV*>s, so that C<tied> hashes can be given
1114 real scalars as keys rather than plain strings (nontied hashes still
1115 can only use strings as keys). New extensions must use the new hash
1116 access functions and macros if they wish to use C<SV*> keys. These
1117 additions also make it feasible to manipulate C<HE*>s (hash entries),
1118 which can be more efficient. See L<perlguts> for details.
1122 =head1 Documentation Changes
1124 Many of the base and library pods were updated. These
1125 new pods are included in section 1:
1135 Frequently asked questions.
1139 Locale support (internationalization and localization).
1143 Tutorial on Perl OO programming.
1147 Perl internal IO abstraction interface.
1151 Perl module library and recommended practice for module creation.
1152 Extracted from L<perlmod> (which is much smaller as a result).
1156 Although not new, this has been massively updated.
1160 Although not new, this has been massively updated.
1164 =head1 New Diagnostics
1166 Several new conditions will trigger warnings that were
1167 silent before. Some only affect certain platforms.
1168 The following new warnings and errors outline these.
1169 These messages are classified as follows (listed in
1170 increasing order of desperation):
1172 (W) A warning (optional).
1173 (D) A deprecation (optional).
1174 (S) A severe warning (mandatory).
1175 (F) A fatal error (trappable).
1176 (P) An internal error you should never see (trappable).
1177 (X) A very fatal error (nontrappable).
1178 (A) An alien error message (not generated by Perl).
1182 =item "my" variable %s masks earlier declaration in same scope
1184 (W) A lexical variable has been redeclared in the same scope, effectively
1185 eliminating all access to the previous instance. This is almost always
1186 a typographical error. Note that the earlier variable will still exist
1187 until the end of the scope or until all closure referents to it are
1190 =item %s argument is not a HASH element or slice
1192 (F) The argument to delete() must be either a hash element, such as
1195 $ref->[12]->{"susie"}
1197 or a hash slice, such as
1199 @foo{$bar, $baz, $xyzzy}
1200 @{$ref->[12]}{"susie", "queue"}
1202 =item Allocation too large: %lx
1204 (X) You can't allocate more than 64K on an MS-DOS machine.
1206 =item Allocation too large
1208 (F) You can't allocate more than 2^31+"small amount" bytes.
1210 =item Applying %s to %s will act on scalar(%s)
1212 (W) The pattern match (//), substitution (s///), and transliteration (tr///)
1213 operators work on scalar values. If you apply one of them to an array
1214 or a hash, it will convert the array or hash to a scalar value -- the
1215 length of an array, or the population info of a hash -- and then work on
1216 that scalar value. This is probably not what you meant to do. See
1217 L<perlfunc/grep> and L<perlfunc/map> for alternatives.
1219 =item Attempt to free nonexistent shared string
1221 (P) Perl maintains a reference counted internal table of strings to
1222 optimize the storage and access of hash keys and other strings. This
1223 indicates someone tried to decrement the reference count of a string
1224 that can no longer be found in the table.
1226 =item Attempt to use reference as lvalue in substr
1228 (W) You supplied a reference as the first argument to substr() used
1229 as an lvalue, which is pretty strange. Perhaps you forgot to
1230 dereference it first. See L<perlfunc/substr>.
1232 =item Bareword "%s" refers to nonexistent package
1234 (W) You used a qualified bareword of the form C<Foo::>, but
1235 the compiler saw no other uses of that namespace before that point.
1236 Perhaps you need to predeclare a package?
1238 =item Can't redefine active sort subroutine %s
1240 (F) Perl optimizes the internal handling of sort subroutines and keeps
1241 pointers into them. You tried to redefine one such sort subroutine when it
1242 was currently active, which is not allowed. If you really want to do
1243 this, you should write C<sort { &func } @x> instead of C<sort func @x>.
1245 =item Can't use bareword ("%s") as %s ref while "strict refs" in use
1247 (F) Only hard references are allowed by "strict refs". Symbolic references
1248 are disallowed. See L<perlref>.
1250 =item Cannot resolve method `%s' overloading `%s' in package `%s'
1252 (P) Internal error trying to resolve overloading specified by a method
1253 name (as opposed to a subroutine reference).
1255 =item Constant subroutine %s redefined
1257 (S) You redefined a subroutine which had previously been eligible for
1258 inlining. See L<perlsub/"Constant Functions"> for commentary and
1261 =item Constant subroutine %s undefined
1263 (S) You undefined a subroutine which had previously been eligible for
1264 inlining. See L<perlsub/"Constant Functions"> for commentary and
1267 =item Copy method did not return a reference
1269 (F) The method which overloads "=" is buggy. See L<overload/Copy Constructor>.
1273 (F) You passed die() an empty string (the equivalent of C<die "">) or
1274 you called it with no args and both C<$@> and C<$_> were empty.
1276 =item Exiting pseudo-block via %s
1278 (W) You are exiting a rather special block construct (like a sort block or
1279 subroutine) by unconventional means, such as a goto, or a loop control
1280 statement. See L<perlfunc/sort>.
1282 =item Identifier too long
1284 (F) Perl limits identifiers (names for variables, functions, etc.) to
1285 252 characters for simple names, somewhat more for compound names (like
1286 C<$A::B>). You've exceeded Perl's limits. Future versions of Perl are
1287 likely to eliminate these arbitrary limitations.
1289 =item Illegal character %s (carriage return)
1291 (F) A carriage return character was found in the input. This is an
1292 error, and not a warning, because carriage return characters can break
1293 multi-line strings, including here documents (e.g., C<print E<lt>E<lt>EOF;>).
1295 =item Illegal switch in PERL5OPT: %s
1297 (X) The PERL5OPT environment variable may only be used to set the
1298 following switches: B<-[DIMUdmw]>.
1300 =item Integer overflow in hex number
1302 (S) The literal hex number you have specified is too big for your
1303 architecture. On a 32-bit architecture the largest hex literal is
1306 =item Integer overflow in octal number
1308 (S) The literal octal number you have specified is too big for your
1309 architecture. On a 32-bit architecture the largest octal literal is
1312 =item internal error: glob failed
1314 (P) Something went wrong with the external program(s) used for C<glob>
1315 and C<E<lt>*.cE<gt>>. This may mean that your csh (C shell) is
1316 broken. If so, you should change all of the csh-related variables in
1317 config.sh: If you have tcsh, make the variables refer to it as if it
1318 were csh (e.g. C<full_csh='/usr/bin/tcsh'>); otherwise, make them all
1319 empty (except that C<d_csh> should be C<'undef'>) so that Perl will
1320 think csh is missing. In either case, after editing config.sh, run
1321 C<./Configure -S> and rebuild Perl.
1323 =item Invalid conversion in %s: "%s"
1325 (W) Perl does not understand the given format conversion.
1326 See L<perlfunc/sprintf>.
1328 =item Invalid type in pack: '%s'
1330 (F) The given character is not a valid pack type. See L<perlfunc/pack>.
1332 =item Invalid type in unpack: '%s'
1334 (F) The given character is not a valid unpack type. See L<perlfunc/unpack>.
1336 =item Name "%s::%s" used only once: possible typo
1338 (W) Typographical errors often show up as unique variable names.
1339 If you had a good reason for having a unique name, then just mention
1340 it again somehow to suppress the message (the C<use vars> pragma is
1341 provided for just this purpose).
1343 =item Null picture in formline
1345 (F) The first argument to formline must be a valid format picture
1346 specification. It was found to be empty, which probably means you
1347 supplied it an uninitialized value. See L<perlform>.
1349 =item Offset outside string
1351 (F) You tried to do a read/write/send/recv operation with an offset
1352 pointing outside the buffer. This is difficult to imagine.
1353 The sole exception to this is that C<sysread()>ing past the buffer
1354 will extend the buffer and zero pad the new area.
1356 =item Out of memory!
1358 (X|F) The malloc() function returned 0, indicating there was insufficient
1359 remaining memory (or virtual memory) to satisfy the request.
1361 The request was judged to be small, so the possibility to trap it
1362 depends on the way Perl was compiled. By default it is not trappable.
1363 However, if compiled for this, Perl may use the contents of C<$^M> as
1364 an emergency pool after die()ing with this message. In this case the
1365 error is trappable I<once>.
1367 =item Out of memory during request for %s
1369 (F) The malloc() function returned 0, indicating there was insufficient
1370 remaining memory (or virtual memory) to satisfy the request. However,
1371 the request was judged large enough (compile-time default is 64K), so
1372 a possibility to shut down by trapping this error is granted.
1376 (P) The library function frexp() failed, making printf("%f") impossible.
1378 =item Possible attempt to put comments in qw() list
1380 (W) qw() lists contain items separated by whitespace; as with literal
1381 strings, comment characters are not ignored, but are instead treated
1382 as literal data. (You may have used different delimiters than the
1383 parentheses shown here; braces are also frequently used.)
1385 You probably wrote something like this:
1392 when you should have written this:
1399 If you really want comments, build your list the
1400 old-fashioned way, with quotes and commas:
1404 'b', # another comment
1407 =item Possible attempt to separate words with commas
1409 (W) qw() lists contain items separated by whitespace; therefore commas
1410 aren't needed to separate the items. (You may have used different
1411 delimiters than the parentheses shown here; braces are also frequently
1414 You probably wrote something like this:
1418 which puts literal commas into some of the list items. Write it without
1419 commas if you don't want them to appear in your data:
1423 =item Scalar value @%s{%s} better written as $%s{%s}
1425 (W) You've used a hash slice (indicated by @) to select a single element of
1426 a hash. Generally it's better to ask for a scalar value (indicated by $).
1427 The difference is that C<$foo{&bar}> always behaves like a scalar, both when
1428 assigning to it and when evaluating its argument, while C<@foo{&bar}> behaves
1429 like a list when you assign to it, and provides a list context to its
1430 subscript, which can do weird things if you're expecting only one subscript.
1432 =item Stub found while resolving method `%s' overloading `%s' in package `%s'
1434 (P) Overloading resolution over @ISA tree may be broken by importing stubs.
1435 Stubs should never be implicitly created, but explicit calls to C<can>
1438 =item Too late for "B<-T>" option
1440 (X) The #! line (or local equivalent) in a Perl script contains the
1441 B<-T> option, but Perl was not invoked with B<-T> in its argument
1442 list. This is an error because, by the time Perl discovers a B<-T> in
1443 a script, it's too late to properly taint everything from the
1444 environment. So Perl gives up.
1446 =item untie attempted while %d inner references still exist
1448 (W) A copy of the object returned from C<tie> (or C<tied>) was still
1449 valid when C<untie> was called.
1451 =item Unrecognized character %s
1453 (F) The Perl parser has no idea what to do with the specified character
1454 in your Perl script (or eval). Perhaps you tried to run a compressed
1455 script, a binary program, or a directory as a Perl program.
1457 =item Unsupported function fork
1459 (F) Your version of executable does not support forking.
1461 Note that under some systems, like OS/2, there may be different flavors of
1462 Perl executables, some of which may support fork, some not. Try changing
1463 the name you call Perl by to C<perl_>, C<perl__>, and so on.
1465 =item Use of "$$<digit>" to mean "${$}<digit>" is deprecated
1467 (D) Perl versions before 5.004 misinterpreted any type marker followed
1468 by "$" and a digit. For example, "$$0" was incorrectly taken to mean
1469 "${$}0" instead of "${$0}". This bug is (mostly) fixed in Perl 5.004.
1471 However, the developers of Perl 5.004 could not fix this bug completely,
1472 because at least two widely-used modules depend on the old meaning of
1473 "$$0" in a string. So Perl 5.004 still interprets "$$<digit>" in the
1474 old (broken) way inside strings; but it generates this message as a
1475 warning. And in Perl 5.005, this special treatment will cease.
1477 =item Value of %s can be "0"; test with defined()
1479 (W) In a conditional expression, you used <HANDLE>, <*> (glob), C<each()>,
1480 or C<readdir()> as a boolean value. Each of these constructs can return a
1481 value of "0"; that would make the conditional expression false, which is
1482 probably not what you intended. When using these constructs in conditional
1483 expressions, test their values with the C<defined> operator.
1485 =item Variable "%s" may be unavailable
1487 (W) An inner (nested) I<anonymous> subroutine is inside a I<named>
1488 subroutine, and outside that is another subroutine; and the anonymous
1489 (innermost) subroutine is referencing a lexical variable defined in
1490 the outermost subroutine. For example:
1492 sub outermost { my $a; sub middle { sub { $a } } }
1494 If the anonymous subroutine is called or referenced (directly or
1495 indirectly) from the outermost subroutine, it will share the variable
1496 as you would expect. But if the anonymous subroutine is called or
1497 referenced when the outermost subroutine is not active, it will see
1498 the value of the shared variable as it was before and during the
1499 *first* call to the outermost subroutine, which is probably not what
1502 In these circumstances, it is usually best to make the middle
1503 subroutine anonymous, using the C<sub {}> syntax. Perl has specific
1504 support for shared variables in nested anonymous subroutines; a named
1505 subroutine in between interferes with this feature.
1507 =item Variable "%s" will not stay shared
1509 (W) An inner (nested) I<named> subroutine is referencing a lexical
1510 variable defined in an outer subroutine.
1512 When the inner subroutine is called, it will probably see the value of
1513 the outer subroutine's variable as it was before and during the
1514 *first* call to the outer subroutine; in this case, after the first
1515 call to the outer subroutine is complete, the inner and outer
1516 subroutines will no longer share a common value for the variable. In
1517 other words, the variable will no longer be shared.
1519 Furthermore, if the outer subroutine is anonymous and references a
1520 lexical variable outside itself, then the outer and inner subroutines
1521 will I<never> share the given variable.
1523 This problem can usually be solved by making the inner subroutine
1524 anonymous, using the C<sub {}> syntax. When inner anonymous subs that
1525 reference variables in outer subroutines are called or referenced,
1526 they are automatically rebound to the current values of such
1529 =item Warning: something's wrong
1531 (W) You passed warn() an empty string (the equivalent of C<warn "">) or
1532 you called it with no args and C<$_> was empty.
1534 =item Ill-formed logical name |%s| in prime_env_iter
1536 (W) A warning peculiar to VMS. A logical name was encountered when preparing
1537 to iterate over %ENV which violates the syntactic rules governing logical
1538 names. Since it cannot be translated normally, it is skipped, and will not
1539 appear in %ENV. This may be a benign occurrence, as some software packages
1540 might directly modify logical name tables and introduce nonstandard names,
1541 or it may indicate that a logical name table has been corrupted.
1543 =item Got an error from DosAllocMem
1545 (P) An error peculiar to OS/2. Most probably you're using an obsolete
1546 version of Perl, and this should not happen anyway.
1548 =item Malformed PERLLIB_PREFIX
1550 (F) An error peculiar to OS/2. PERLLIB_PREFIX should be of the form
1558 with nonempty prefix1 and prefix2. If C<prefix1> is indeed a prefix
1559 of a builtin library search path, prefix2 is substituted. The error
1560 may appear if components are not found, or are too long. See
1561 "PERLLIB_PREFIX" in F<README.os2>.
1563 =item PERL_SH_DIR too long
1565 (F) An error peculiar to OS/2. PERL_SH_DIR is the directory to find the
1566 C<sh>-shell in. See "PERL_SH_DIR" in F<README.os2>.
1568 =item Process terminated by SIG%s
1570 (W) This is a standard message issued by OS/2 applications, while *nix
1571 applications die in silence. It is considered a feature of the OS/2
1572 port. One can easily disable this by appropriate sighandlers, see
1573 L<perlipc/"Signals">. See also "Process terminated by SIGTERM/SIGINT"
1580 If you find what you think is a bug, you might check the headers of
1581 recently posted articles in the comp.lang.perl.misc newsgroup.
1582 There may also be information at http://www.perl.com/perl/, the Perl
1585 If you believe you have an unreported bug, please run the B<perlbug>
1586 program included with your release. Make sure you trim your bug down
1587 to a tiny but sufficient test case. Your bug report, along with the
1588 output of C<perl -V>, will be sent off to <F<perlbug@perl.com>> to be
1589 analysed by the Perl porting team.
1593 The F<Changes> file for exhaustive details on what changed.
1595 The F<INSTALL> file for how to build Perl. This file has been
1596 significantly updated for 5.004, so even veteran users should
1599 The F<README> file for general stuff.
1601 The F<Copying> file for copyright information.
1605 Constructed by Tom Christiansen, grabbing material with permission
1606 from innumerable contributors, with kibitzing by more than a few Perl
1609 Last update: Wed May 14 11:14:09 EDT 1997