Protect against having no such command as 'cc'
[p5sagit/p5-mst-13.2.git] / pod / perldelta.pod
CommitLineData
5f05dabc 1=head1 NAME
2
774d564b 3perldelta - what's new for perl5.004
5f05dabc 4
5=head1 DESCRIPTION
6
7This document describes differences between the 5.003 release (as
8documented in I<Programming Perl>, second edition--the Camel Book) and
9this one.
10
11=head1 Supported Environments
12
7bac28a0 13Perl5.004 builds out of the box on Unix, Plan 9, LynxOS, VMS, OS/2,
14QNX, AmigaOS, and Windows NT. Perl runs on Windows 95 as well, but it
15cannot be built there, for lack of a reasonable command interpreter.
5f05dabc 16
17=head1 Core Changes
18
19Most importantly, many bugs were fixed. See the F<Changes>
20file in the distribution for details.
21
54310121 22=head2 Compilation option: Binary compatibility with 5.003
5f05dabc 23
24There is a new Configure question that asks if you want to maintain
25binary compatibility with Perl 5.003. If you choose binary
26compatibility, you do not have to recompile your extensions, but you
44a8e56a 27might have symbol conflicts if you embed Perl in another application,
774d564b 28just as in the 5.003 release. By default, binary compatibility
29is preserved at the expense of symbol table pollution.
5f05dabc 30
54310121 31=head2 $PERL5OPT environment variable
32
33You may now put Perl options in the $PERL5OPT environment variable.
34Unless Perl is running with taint checks, it will interpret this
35variable as if its contents had appeared on a "#!perl" line at the
36beginning of your script, except that hyphens are optional. PERL5OPT
37may only be used to set the following switches: B<-[DIMUdmw]>.
38
8cc95fdb 39=head2 Limitations on B<-M>, and C<-m>, and B<-T> options
40
41The C<-M> and C<-m> options are no longer allowed on the C<#!> line of
42a script. If a script needs a module, it should invoke it with the
43C<use> pragma.
44
45The B<-T> option is also forbidden on the C<#!> line of a script,
46unless it was present on the Perl command line. Due to the way C<#!>
47works, this usually means that B<-T> must be in the first argument.
48Thus:
49
50 #!/usr/bin/perl -T -w
51
52will probably work for an executable script invoked as C<scriptname>,
53while:
54
55 #!/usr/bin/perl -w -T
56
57will probably fail under the same conditions. (Non-Unix systems will
58probably not follow this rule.) But C<perl scriptname> is guaranteed
59to fail, since then there is no chance of B<-T> being found on the
60command line before it is found on the C<#!> line.
61
54310121 62=head2 More precise warnings
63
dc848c6f 64If you removed the B<-w> option from your Perl 5.003 scripts because it
54310121 65made Perl too verbose, we recommend that you try putting it back when
66you upgrade to Perl 5.004. Each new perl version tends to remove some
67undesirable warnings, while adding new warnings that may catch bugs in
68your scripts.
69
dc848c6f 70=head2 Deprecated: Inherited C<AUTOLOAD> for non-methods
71
72Before Perl 5.004, C<AUTOLOAD> functions were looked up as methods
73(using the C<@ISA> hierarchy), even when the function to be autoloaded
74was called as a plain function (e.g. C<Foo::bar()>), not a method
7bac28a0 75(e.g. C<Foo-E<gt>bar()> or C<$obj-E<gt>bar()>).
dc848c6f 76
77Perl 5.005 will use method lookup only for methods' C<AUTOLOAD>s.
78However, there is a significant base of existing code that may be using
79the old behavior. So, as an interim step, Perl 5.004 issues an optional
80warning when a non-method uses an inherited C<AUTOLOAD>.
81
82The simple rule is: Inheritance will not work when autoloading
83non-methods. The simple fix for old code is: In any module that used to
84depend on inheriting C<AUTOLOAD> for non-methods from a base class named
85C<BaseClass>, execute C<*AUTOLOAD = \&BaseClass::AUTOLOAD> during startup.
86
3fe9a6f1 87=head2 Subroutine arguments created only when they're modified
7cfe7857 88
3fe9a6f1 89In Perl 5.004, nonexistent array and hash elements used as subroutine
90parameters are brought into existence only if they are actually
91assigned to (via C<@_>).
2ae324a7 92
3fe9a6f1 93Earlier versions of Perl vary in their handling of such arguments.
94Perl versions 5.002 and 5.003 always brought them into existence.
7bac28a0 95Perl versions 5.000 and 5.001 brought them into existence only if
96they were not the first argument (which was almost certainly a bug).
97Earlier versions of Perl never brought them into existence.
3fe9a6f1 98
99For example, given this code:
100
101 undef @a; undef %a;
102 sub show { print $_[0] };
103 sub change { $_[0]++ };
104 show($a[2]);
105 change($a{b});
106
107After this code executes in Perl 5.004, $a{b} exists but $a[2] does
108not. In Perl 5.002 and 5.003, both $a{b} and $a[2] would have existed
109(but $a[2]'s value would have been undefined).
7cfe7857 110
8cc95fdb 111=head2 Group vector changeable with C<$)>
5cd24f17 112
113The C<$)> special variable has always (well, in Perl 5, at least)
8cc95fdb 114reflected not only the current effective group, but also the group list
115as returned by the C<getgroups()> C function (if there is one).
116However, until this release, there has not been a way to call the
117C<setgroups()> C function from Perl.
5cd24f17 118
8cc95fdb 119In Perl 5.004, assigning to C<$)> is exactly symmetrical with examining
120it: The first number in its string value is used as the effective gid;
121if there are any numbers after the first one, they are passed to the
122C<setgroups()> C function (if there is one).
5cd24f17 123
54310121 124=head2 Fixed parsing of $$<digit>, &$<digit>, etc.
aa689395 125
5cd24f17 126Perl versions before 5.004 misinterpreted any type marker followed by
127"$" and a digit. For example, "$$0" was incorrectly taken to mean
128"${$}0" instead of "${$0}". This bug is (mostly) fixed in Perl 5.004.
129
130However, the developers of Perl 5.004 could not fix this bug completely,
131because at least two widely-used modules depend on the old meaning of
132"$$0" in a string. So Perl 5.004 still interprets "$$<digit>" in the
133old (broken) way inside strings; but it generates this message as a
134warning. And in Perl 5.005, this special treatment will cease.
aa689395 135
54310121 136=head2 No resetting of $. on implicit close
68dc0745 137
138The documentation for Perl 5.0 has always stated that C<$.> is I<not>
54310121 139reset when an already-open file handle is reopened with no intervening
140call to C<close>. Due to a bug, perl versions 5.000 through 5.003
68dc0745 141I<did> reset C<$.> under that circumstance; Perl 5.004 does not.
142
54310121 143=head2 C<wantarray> may return undef
144
145The C<wantarray> operator returns true if a subroutine is expected to
146return a list, and false otherwise. In Perl 5.004, C<wantarray> can
147also return the undefined value if a subroutine's return value will
148not be used at all, which allows subroutines to avoid a time-consuming
149calculation of a return value if it isn't going to be used.
150
151=head2 Changes to tainting checks
5f05dabc 152
9607fc9c 153A bug in previous versions may have failed to detect some insecure
8cc95fdb 154conditions when taint checks are turned on. (Taint checks are used
9607fc9c 155in setuid or setgid scripts, or when explicitly turned on with the
8cc95fdb 156C<-T> invocation option.) Although it's unlikely, this may cause a
9607fc9c 157previously-working script to now fail -- which should be construed
158as a blessing, since that indicates a potentially-serious security
159hole was just plugged.
160
54310121 161=head2 New Opcode module and revised Safe module
2ae324a7 162
163A new Opcode module supports the creation, manipulation and
164application of opcode masks. The revised Safe module has a new API
165and is implemented using the new Opcode module. Please read the new
166Opcode and Safe documentation.
167
54310121 168=head2 Embedding improvements
68dc0745 169
170In older versions of Perl it was not possible to create more than one
171Perl interpreter instance inside a single process without leaking like a
172sieve and/or crashing. The bugs that caused this behavior have all been
173fixed. However, you still must take care when embedding Perl in a C
174program. See the updated perlembed manpage for tips on how to manage
175your interpreters.
176
54310121 177=head2 Internal change: FileHandle class based on IO::* classes
9607fc9c 178
179File handles are now stored internally as type IO::Handle. The
180FileHandle module is still supported for backwards compatibility, but
181it is now merely a front end to the IO::* modules -- specifically,
182IO::Handle, IO::Seekable, and IO::File. We suggest, but do not
183require, that you use the IO::* modules in new code.
184
185In harmony with this change, C<*GLOB{FILEHANDLE}> is now a
186backward-compatible synonym for C<*STDOUT{IO}>.
5f05dabc 187
54310121 188=head2 Internal change: PerlIO abstraction interface
5f05dabc 189
190It is now possible to build Perl with AT&T's sfio IO package
191instead of stdio. See L<perlapio> for more details, and
192the F<INSTALL> file for how to use it.
193
6da72b64 194=head2 New and changed syntax
195
196=over
197
198=item $coderef->(PARAMS)
199
200A subroutine reference may now be suffixed with an arrow and a
201(possibly empty) parameter list. This syntax denotes a call of the
202referenced subroutine, with the given parameters (if any).
203
3e07908e 204This new syntax follows the pattern of S<C<$hashref-E<gt>{FOO}>> and
205S<C<$aryref-E<gt>[$foo]>>: You may now write S<C<&$subref($foo)>> as
206S<C<$subref-E<gt>($foo)>>. All of these arrow terms may be chained;
207thus, S<C<&{$table-E<gt>{FOO}}($bar)>> may now be written
208S<C<$table-E<gt>{FOO}-E<gt>($bar)>>.
6da72b64 209
210=back
211
dd2afc7e 212=head2 New and changed builtin constants
213
214=over
215
216=item __PACKAGE__
217
218The current package name at compile time, or the undefined value if
219there is no current package (due to a C<package;> directive). Like
220C<__FILE__> and C<__LINE__>, C<__PACKAGE__> does I<not> interpolate
221into strings.
222
223=back
224
54310121 225=head2 New and changed builtin variables
5f05dabc 226
227=over
228
229=item $^E
230
f86702cc 231Extended error message on some platforms. (Also known as
232$EXTENDED_OS_ERROR if you C<use English>).
5f05dabc 233
234=item $^H
235
236The current set of syntax checks enabled by C<use strict>. See the
237documentation of C<strict> for more details. Not actually new, but
238newly documented.
239Because it is intended for internal use by Perl core components,
240there is no C<use English> long name for this variable.
241
242=item $^M
243
244By default, running out of memory it is not trappable. However, if
245compiled for this, Perl may use the contents of C<$^M> as an emergency
246pool after die()ing with this message. Suppose that your Perl were
247compiled with -DEMERGENCY_SBRK and used Perl's malloc. Then
248
249 $^M = 'a' x (1<<16);
250
774d564b 251would allocate a 64K buffer for use when in emergency.
5f05dabc 252See the F<INSTALL> file for information on how to enable this option.
253As a disincentive to casual use of this advanced feature,
254there is no C<use English> long name for this variable.
255
256=back
257
54310121 258=head2 New and changed builtin functions
5f05dabc 259
260=over
261
262=item delete on slices
263
264This now works. (e.g. C<delete @ENV{'PATH', 'MANPATH'}>)
265
266=item flock
267
68dc0745 268is now supported on more platforms, prefers fcntl to lockf when
269emulating, and always flushes before (un)locking.
5f05dabc 270
046ff0ed 271=item printf and sprintf
272
74a77017 273Perl now implements these functions itself; it doesn't use the C
274library function sprintf() any more, except for floating-point
275numbers, and even then only known flags are allowed. As a result, it
276is now possible to know which conversions and flags will work, and
277what they will do.
278
279The new conversions in Perl's sprintf() are:
280
281 %i a synonym for %d
282 %p a pointer (the address of the Perl value, in hexadecimal)
7bac28a0 283 %n special: *stores* the number of characters output so far
284 into the next variable in the parameter list
74a77017 285
286The new flags that go between the C<%> and the conversion are:
287
288 # prefix octal with "0", hex with "0x"
289 h interpret integer as C type "short" or "unsigned short"
290 V interpret integer as Perl's standard integer type
291
292Also, where a number would appear in the flags, an asterisk ("*") may
293be used instead, in which case Perl uses the next item in the
294parameter list as the given number (that is, as the field width or
295precision). If a field width obtained through "*" is negative, it has
296the same effect as the '-' flag: left-justification.
297
298See L<perlfunc/sprintf> for a complete list of conversion and flags.
046ff0ed 299
5f05dabc 300=item keys as an lvalue
301
302As an lvalue, C<keys> allows you to increase the number of hash buckets
aa689395 303allocated for the given hash. This can gain you a measure of efficiency if
304you know the hash is going to get big. (This is similar to pre-extending
305an array by assigning a larger number to $#array.) If you say
5f05dabc 306
307 keys %hash = 200;
308
309then C<%hash> will have at least 200 buckets allocated for it. These
310buckets will be retained even if you do C<%hash = ()>; use C<undef
311%hash> if you want to free the storage while C<%hash> is still in scope.
312You can't shrink the number of buckets allocated for the hash using
313C<keys> in this way (but you needn't worry about doing this by accident,
314as trying has no effect).
315
316=item my() in Control Structures
317
318You can now use my() (with or without the parentheses) in the control
319expressions of control structures such as:
320
aa689395 321 while (defined(my $line = <>)) {
5f05dabc 322 $line = lc $line;
323 } continue {
324 print $line;
325 }
326
774d564b 327 if ((my $answer = <STDIN>) =~ /^y(es)?$/i) {
5f05dabc 328 user_agrees();
774d564b 329 } elsif ($answer =~ /^n(o)?$/i) {
5f05dabc 330 user_disagrees();
331 } else {
332 chomp $answer;
774d564b 333 die "`$answer' is neither `yes' nor `no'";
5f05dabc 334 }
335
336Also, you can declare a foreach loop control variable as lexical by
337preceding it with the word "my". For example, in:
338
339 foreach my $i (1, 2, 3) {
340 some_function();
341 }
342
343$i is a lexical variable, and the scope of $i extends to the end of
344the loop, but not beyond it.
345
346Note that you still cannot use my() on global punctuation variables
347such as $_ and the like.
348
137443ea 349=item pack() and unpack()
5f05dabc 350
351A new format 'w' represents a BER compressed integer (as defined in
352ASN.1). Its format is a sequence of one or more bytes, each of which
353provides seven bits of the total value, with the most significant
354first. Bit eight of each byte is set, except for the last byte, in
355which bit eight is clear.
356
8903cb82 357Both pack() and unpack() now fail when their templates contain invalid
358types. (Invalid types used to be ignored.)
137443ea 359
8903cb82 360=item sysseek()
361
362The new sysseek() operator is a variant of seek() that sets and gets the
363file's system read/write position, using the lseek(2) system call. It is
364the only reliable way to seek before using sysread() or syswrite(). Its
365return value is the new position, or the undefined value on failure.
137443ea 366
5f05dabc 367=item use VERSION
368
369If the first argument to C<use> is a number, it is treated as a version
370number instead of a module name. If the version of the Perl interpreter
371is less than VERSION, then an error message is printed and Perl exits
774d564b 372immediately. Because C<use> occurs at compile time, this check happens
373immediately during the compilation process, unlike C<require VERSION>,
54310121 374which waits until runtime for the check. This is often useful if you
774d564b 375need to check the current Perl version before C<use>ing library modules
376which have changed in incompatible ways from older versions of Perl.
377(We try not to do this more than we have to.)
5f05dabc 378
379=item use Module VERSION LIST
380
381If the VERSION argument is present between Module and LIST, then the
71be2cbc 382C<use> will call the VERSION method in class Module with the given
383version as an argument. The default VERSION method, inherited from
dc848c6f 384the UNIVERSAL class, croaks if the given version is larger than the
71be2cbc 385value of the variable $Module::VERSION. (Note that there is not a
386comma after VERSION!)
5f05dabc 387
7cfe7857 388This version-checking mechanism is similar to the one currently used
389in the Exporter module, but it is faster and can be used with modules
390that don't use the Exporter. It is the recommended method for new
391code.
392
5f05dabc 393=item prototype(FUNCTION)
394
395Returns the prototype of a function as a string (or C<undef> if the
396function has no prototype). FUNCTION is a reference to or the name of the
397function whose prototype you want to retrieve.
398(Not actually new; just never documented before.)
399
9607fc9c 400=item srand
401
402The default seed for C<srand>, which used to be C<time>, has been changed.
403Now it's a heady mix of difficult-to-predict system-dependent values,
404which should be sufficient for most everyday purposes.
405
406Previous to version 5.004, calling C<rand> without first calling C<srand>
407would yield the same sequence of random numbers on most or all machines.
408Now, when perl sees that you're calling C<rand> and haven't yet called
409C<srand>, it calls C<srand> with the default seed. You should still call
410C<srand> manually if your code might ever be run on a pre-5.004 system,
2ae324a7 411of course, or if you want a seed other than the default.
9607fc9c 412
5f05dabc 413=item $_ as Default
414
415Functions documented in the Camel to default to $_ now in
416fact do, and all those that do are so documented in L<perlfunc>.
417
a99df21c 418=item C<m//g> does not reset search position on failure
419
420The C<m//g> match iteration construct used to reset its target string's
421search position (which is visible through the C<pos> operator) when a
422match failed; as a result, the next C<m//g> match would start at the
423beginning of the string). With Perl 5.004, the search position must be
424reset explicitly, as with C<pos $str = 0;>, or by modifying the target
425string. This change in Perl makes it possible to chain matches together
426in conjunction with the C<\G> zero-width assertion. See L<perlop> and
427L<perlre>.
428
429Here is an illustration of what it takes to get the old behavior:
430
431 for ( qw(this and that are not what you think you got) ) {
432 while ( /(\w*t\w*)/g ) { print "t word is: $1\n" }
433 pos = 0; # REQUIRED FOR 5.004
434 while ( /(\w*a\w*)/g ) { print "a word is: $1\n" }
435 print "\n";
436 }
44a8e56a 437
3fe9a6f1 438=item C<m//x> ignores whitespace before ?*+{}
439
440The C<m//x> construct has always been intended to ignore all unescaped
441whitespace. However, before Perl 5.004, whitespace had the effect of
54310121 442escaping repeat modifiers like "*" or "?"; for example, C</a *b/x> was
3fe9a6f1 443(mis)interpreted as C</a\*b/x>. This bug has been fixed in 5.004.
444
774d564b 445=item nested C<sub{}> closures work now
446
2ae324a7 447Prior to the 5.004 release, nested anonymous functions didn't work
448right. They do now.
774d564b 449
450=item formats work right on changing lexicals
451
452Just like anonymous functions that contain lexical variables
453that change (like a lexical index variable for a C<foreach> loop),
454formats now work properly. For example, this silently failed
455before, and is fine now:
456
457 my $i;
458 foreach $i ( 1 .. 10 ) {
459 format =
460 my i is @#
461 $i
462 .
463 write;
2ae324a7 464 }
774d564b 465
5f05dabc 466=back
467
54310121 468=head2 New builtin methods
5f05dabc 469
470The C<UNIVERSAL> package automatically contains the following methods that
471are inherited by all other classes:
472
0a753a76 473=over
5f05dabc 474
475=item isa(CLASS)
476
68dc0745 477C<isa> returns I<true> if its object is blessed into a subclass of C<CLASS>
5f05dabc 478
479C<isa> is also exportable and can be called as a sub with two arguments. This
480allows the ability to check what a reference points to. Example:
481
482 use UNIVERSAL qw(isa);
483
484 if(isa($ref, 'ARRAY')) {
485 ...
486 }
487
488=item can(METHOD)
489
490C<can> checks to see if its object has a method called C<METHOD>,
491if it does then a reference to the sub is returned; if it does not then
492I<undef> is returned.
493
494=item VERSION( [NEED] )
495
71be2cbc 496C<VERSION> returns the version number of the class (package). If the
497NEED argument is given then it will check that the current version (as
498defined by the $VERSION variable in the given package) not less than
499NEED; it will die if this is not the case. This method is normally
500called as a class method. This method is called automatically by the
501C<VERSION> form of C<use>.
5f05dabc 502
503 use A 1.2 qw(some imported subs);
71be2cbc 504 # implies:
505 A->VERSION(1.2);
5f05dabc 506
5f05dabc 507=back
508
509B<NOTE:> C<can> directly uses Perl's internal code for method lookup, and
774d564b 510C<isa> uses a very similar method and caching strategy. This may cause
5f05dabc 511strange effects if the Perl code dynamically changes @ISA in any package.
512
513You may add other methods to the UNIVERSAL class via Perl or XS code.
514You do not need to C<use UNIVERSAL> in order to make these methods
515available to your program. This is necessary only if you wish to
516have C<isa> available as a plain subroutine in the current package.
517
54310121 518=head2 TIEHANDLE now supported
5f05dabc 519
774d564b 520See L<perltie> for other kinds of tie()s.
521
5f05dabc 522=over
523
524=item TIEHANDLE classname, LIST
525
526This is the constructor for the class. That means it is expected to
527return an object of some sort. The reference can be used to
528hold some internal information.
529
2ae324a7 530 sub TIEHANDLE {
531 print "<shout>\n";
532 my $i;
774d564b 533 return bless \$i, shift;
534 }
5f05dabc 535
536=item PRINT this, LIST
537
538This method will be triggered every time the tied handle is printed to.
539Beyond its self reference it also expects the list that was passed to
540the print function.
541
2ae324a7 542 sub PRINT {
543 $r = shift;
544 $$r++;
774d564b 545 return print join( $, => map {uc} @_), $\;
546 }
5f05dabc 547
46fc3d4c 548=item PRINTF this, LIST
549
550This method will be triggered every time the tied handle is printed to
551with the C<printf()> function.
552Beyond its self reference it also expects the format and list that was
553passed to the printf function.
554
555 sub PRINTF {
556 shift;
557 my $fmt = shift;
558 print sprintf($fmt, @_)."\n";
559 }
560
2ae324a7 561=item READ this LIST
562
563This method will be called when the handle is read from via the C<read>
564or C<sysread> functions.
565
566 sub READ {
567 $r = shift;
568 my($buf,$len,$offset) = @_;
569 print "READ called, \$buf=$buf, \$len=$len, \$offset=$offset";
570 }
571
5f05dabc 572=item READLINE this
573
574This method will be called when the handle is read from. The method
575should return undef when there is no more data.
576
2ae324a7 577 sub READLINE {
578 $r = shift;
579 return "PRINT called $$r times\n"
774d564b 580 }
5f05dabc 581
2ae324a7 582=item GETC this
583
584This method will be called when the C<getc> function is called.
585
586 sub GETC { print "Don't GETC, Get Perl"; return "a"; }
587
5f05dabc 588=item DESTROY this
589
590As with the other types of ties, this method will be called when the
591tied handle is about to be destroyed. This is useful for debugging and
592possibly for cleaning up.
593
2ae324a7 594 sub DESTROY {
774d564b 595 print "</shout>\n";
596 }
5f05dabc 597
598=back
599
54310121 600=head2 Malloc enhancements
aa689395 601
2ae324a7 602Four new compilation flags are recognized by malloc.c. (They have no
603effect if perl is compiled with system malloc().)
604
605=over
606
607=item -DDEBUGGING_MSTATS
608
609If perl is compiled with C<DEBUGGING_MSTATS> defined, you can print
610memory statistics at runtime by running Perl thusly:
aa689395 611
612 env PERL_DEBUG_MSTATS=2 perl your_script_here
613
614The value of 2 means to print statistics after compilation and on
615exit; with a value of 1, the statistics ares printed only on exit.
616(If you want the statistics at an arbitrary time, you'll need to
617install the optional module Devel::Peek.)
618
aa689395 619=item -DEMERGENCY_SBRK
620
621If this macro is defined, running out of memory need not be a fatal
622error: a memory pool can allocated by assigning to the special
623variable C<$^M>. See L<"$^M">.
774d564b 624
aa689395 625=item -DPACK_MALLOC
626
627Perl memory allocation is by bucket with sizes close to powers of two.
628Because of these malloc overhead may be big, especially for data of
629size exactly a power of two. If C<PACK_MALLOC> is defined, perl uses
630a slightly different algorithm for small allocations (up to 64 bytes
631long), which makes it possible to have overhead down to 1 byte for
632allocations which are powers of two (and appear quite often).
633
634Expected memory savings (with 8-byte alignment in C<alignbytes>) is
635about 20% for typical Perl usage. Expected slowdown due to additional
636malloc overhead is in fractions of a percent (hard to measure, because
637of the effect of saved memory on speed).
638
639=item -DTWO_POT_OPTIMIZE
640
641Similarly to C<PACK_MALLOC>, this macro improves allocations of data
642with size close to a power of two; but this works for big allocations
643(starting with 16K by default). Such allocations are typical for big
644hashes and special-purpose scripts, especially image processing.
645
646On recent systems, the fact that perl requires 2M from system for 1M
647allocation will not affect speed of execution, since the tail of such
648a chunk is not going to be touched (and thus will not require real
649memory). However, it may result in a premature out-of-memory error.
650So if you will be manipulating very large blocks with sizes close to
651powers of two, it would be wise to define this macro.
652
653Expected saving of memory is 0-100% (100% in applications which
654require most memory in such 2**n chunks); expected slowdown is
655negligible.
656
657=back
658
54310121 659=head2 Miscellaneous efficiency enhancements
774d564b 660
661Functions that have an empty prototype and that do nothing but return
662a fixed value are now inlined (e.g. C<sub PI () { 3.14159 }>).
663
aa689395 664Each unique hash key is only allocated once, no matter how many hashes
665have an entry with that key. So even if you have 100 copies of the
68dc0745 666same hash, the hash keys never have to be reallocated.
aa689395 667
7bac28a0 668=head1 Support for More Operating Systems
669
670Support for the following operating systems is new in Perl 5.004.
671
672=head2 Win32
673
674Perl 5.004 now includes support for building a "native" perl under
675Windows NT, using the Microsoft Visual C++ compiler (versions 2.0
676and above). The resulting perl can be used under Windows 95 (if it
677is installed in the same directory locations as it got installed
678in Windows NT). This port includes support for perl extension
679building tools like L<MakeMaker> and L<h2xs>, so that many extensions
680available on the Comprehensive Perl Archive Network (CPAN) can now be
681readily built under Windows NT. See http://www.perl.com/ for more
682information on CPAN, and L<README.win32> for more details on how to
683get started with building this port.
684
685There is also support for building perl under the Cygwin32 environment.
686Cygwin32 is a set of GNU tools that make it possible to compile and run
687many UNIX programs under Windows NT by providing a mostly UNIX-like
688interface for compilation and execution. See L<README.cygwin32> for
689more details on this port, and how to obtain the Cygwin32 toolkit.
690This port has not been as well tested as the "native" port described
691above (which is not as well tested as we'd like either :)
692
693=head2 Plan 9
694
695See L<README.plan9>.
696
697=head2 QNX
698
699See L<README.qnx>.
700
701=head2 AmigaOS
702
703See L<README.amigaos>.
704
5f05dabc 705=head1 Pragmata
706
54310121 707Six new pragmatic modules exist:
5f05dabc 708
709=over
710
54310121 711=item use autouse MODULE => qw(sub1 sub2 sub3)
712
713Defers C<require MODULE> until someone calls one of the specified
714subroutines (which must be exported by MODULE). This pragma should be
715used with caution, and only when necessary.
716
5f05dabc 717=item use blib
718
774d564b 719=item use blib 'dir'
720
5f05dabc 721Looks for MakeMaker-like I<'blib'> directory structure starting in
722I<dir> (or current directory) and working back up to five levels of
723parent directories.
724
725Intended for use on command line with B<-M> option as a way of testing
726arbitrary scripts against an uninstalled version of a package.
727
54310121 728=item use constant NAME => VALUE
729
730Provides a convenient interface for creating compile-time constants,
731See L<perlsub/"Constant Functions">.
732
5f05dabc 733=item use locale
734
735Tells the compiler to enable (or disable) the use of POSIX locales for
54310121 736builtin operations.
5f05dabc 737
738When C<use locale> is in effect, the current LC_CTYPE locale is used
739for regular expressions and case mapping; LC_COLLATE for string
740ordering; and LC_NUMERIC for numeric formating in printf and sprintf
741(but B<not> in print). LC_NUMERIC is always used in write, since
742lexical scoping of formats is problematic at best.
743
744Each C<use locale> or C<no locale> affects statements to the end of
745the enclosing BLOCK or, if not inside a BLOCK, to the end of the
746current file. Locales can be switched and queried with
747POSIX::setlocale().
748
749See L<perllocale> for more information.
750
751=item use ops
752
7cfe7857 753Disable unsafe opcodes, or any named opcodes, when compiling Perl code.
5f05dabc 754
ff0cee69 755=item use vmsish
756
757Enable VMS-specific language features. Currently, there are three
aa689395 758VMS-specific features available: 'status', which makes C<$?> and
ff0cee69 759C<system> return genuine VMS status values instead of emulating POSIX;
760'exit', which makes C<exit> take a genuine VMS status value instead of
761assuming that C<exit 1> is an error; and 'time', which makes all times
762relative to the local time zone, in the VMS tradition.
763
5f05dabc 764=back
765
766=head1 Modules
767
5cd24f17 768=head2 Required Updates
769
770Though Perl 5.004 is compatible with almost all modules that work
771with Perl 5.003, there are a few exceptions:
772
773 Module Required Version for Perl 5.004
774 ------ -------------------------------
137443ea 775 Filter Filter-1.12
776 LWP libwww-perl-5.08
5cd24f17 777 Tk Tk400.202 (-w makes noise)
778
137443ea 779Also, the majordomo mailing list program, version 1.94.1, doesn't work
780with Perl 5.004 (nor with perl 4), because it executes an invalid
781regular expression. This bug is fixed in majordomo version 1.94.2.
782
54310121 783=head2 Installation directories
f86702cc 784
785The I<installperl> script now places the Perl source files for
786extensions in the architecture-specific library directory, which is
787where the shared libraries for extensions have always been. This
788change is intended to allow administrators to keep the Perl 5.004
789library directory unchanged from a previous version, without running
790the risk of binary incompatibility between extensions' Perl source and
791shared libraries.
792
54310121 793=head2 Module information summary
5f05dabc 794
774d564b 795Brand new modules, arranged by topic rather than strictly
796alphabetically:
797
137443ea 798 CGI.pm Web server interface ("Common Gateway Interface")
799 CGI/Apache.pm Support for Apache's Perl module
800 CGI/Carp.pm Log server errors with helpful context
801 CGI/Fast.pm Support for FastCGI (persistent server process)
802 CGI/Push.pm Support for server push
803 CGI/Switch.pm Simple interface for multiple server types
804
805 CPAN Interface to Comprehensive Perl Archive Network
806 CPAN::FirstTime Utility for creating CPAN configuration file
807 CPAN::Nox Runs CPAN while avoiding compiled extensions
5f05dabc 808
809 IO.pm Top-level interface to IO::* classes
810 IO/File.pm IO::File extension Perl module
811 IO/Handle.pm IO::Handle extension Perl module
812 IO/Pipe.pm IO::Pipe extension Perl module
813 IO/Seekable.pm IO::Seekable extension Perl module
814 IO/Select.pm IO::Select extension Perl module
815 IO/Socket.pm IO::Socket extension Perl module
816
817 Opcode.pm Disable named opcodes when compiling Perl code
818
819 ExtUtils/Embed.pm Utilities for embedding Perl in C programs
820 ExtUtils/testlib.pm Fixes up @INC to use just-built extension
821
5f05dabc 822 FindBin.pm Find path of currently executing program
823
8cc95fdb 824 Class/Struct.pm Declare struct-like datatypes as Perl classes
46fc3d4c 825 File/stat.pm By-name interface to Perl's builtin stat
826 Net/hostent.pm By-name interface to Perl's builtin gethost*
827 Net/netent.pm By-name interface to Perl's builtin getnet*
828 Net/protoent.pm By-name interface to Perl's builtin getproto*
829 Net/servent.pm By-name interface to Perl's builtin getserv*
830 Time/gmtime.pm By-name interface to Perl's builtin gmtime
831 Time/localtime.pm By-name interface to Perl's builtin localtime
8cc95fdb 832 Time/tm.pm Internal object for Time::{gm,local}time
46fc3d4c 833 User/grent.pm By-name interface to Perl's builtin getgr*
834 User/pwent.pm By-name interface to Perl's builtin getpw*
5f05dabc 835
774d564b 836 Tie/RefHash.pm Base class for tied hashes with references as keys
7a4c00b4 837
5f05dabc 838 UNIVERSAL.pm Base class for *ALL* classes
839
54310121 840=head2 Fcntl
841
842New constants in the existing Fcntl modules are now supported,
843provided that your operating system happens to support them:
844
845 F_GETOWN F_SETOWN
846 O_ASYNC O_DEFER O_DSYNC O_FSYNC O_SYNC
847 O_EXLOCK O_SHLOCK
848
849These constants are intended for use with the Perl operators sysopen()
850and fcntl() and the basic database modules like SDBM_File. For the
851exact meaning of these and other Fcntl constants please refer to your
852operating system's documentation for fcntl() and open().
853
854In addition, the Fcntl module now provides these constants for use
855with the Perl operator flock():
856
857 LOCK_SH LOCK_EX LOCK_NB LOCK_UN
858
859These constants are defined in all environments (because where there is
860no flock() system call, Perl emulates it). However, for historical
861reasons, these constants are not exported unless they are explicitly
862requested with the ":flock" tag (e.g. C<use Fcntl ':flock'>).
863
5f05dabc 864=head2 IO
865
866The IO module provides a simple mechanism to load all of the IO modules at one
867go. Currently this includes:
868
869 IO::Handle
870 IO::Seekable
871 IO::File
872 IO::Pipe
873 IO::Socket
874
875For more information on any of these modules, please see its
876respective documentation.
877
878=head2 Math::Complex
879
880The Math::Complex module has been totally rewritten, and now supports
881more operations. These are overloaded:
882
883 + - * / ** <=> neg ~ abs sqrt exp log sin cos atan2 "" (stringify)
884
885And these functions are now exported:
886
887 pi i Re Im arg
5cd24f17 888 log10 logn ln cbrt root
889 tan
890 csc sec cot
891 asin acos atan
892 acsc asec acot
893 sinh cosh tanh
894 csch sech coth
895 asinh acosh atanh
896 acsch asech acoth
5f05dabc 897 cplx cplxe
898
5aabfad6 899=head2 Math::Trig
900
5cd24f17 901This new module provides a simpler interface to parts of Math::Complex for
5aabfad6 902those who need trigonometric functions only for real numbers.
903
0a753a76 904=head2 DB_File
905
906There have been quite a few changes made to DB_File. Here are a few of
907the highlights:
908
909=over
910
911=item *
912
913Fixed a handful of bugs.
914
915=item *
916
917By public demand, added support for the standard hash function exists().
918
919=item *
920
921Made it compatible with Berkeley DB 1.86.
922
923=item *
924
925Made negative subscripts work with RECNO interface.
926
927=item *
928
929Changed the default flags from O_RDWR to O_CREAT|O_RDWR and the default
930mode from 0640 to 0666.
931
932=item *
933
934Made DB_File automatically import the open() constants (O_RDWR,
935O_CREAT etc.) from Fcntl, if available.
936
937=item *
938
939Updated documentation.
940
941=back
942
943Refer to the HISTORY section in DB_File.pm for a complete list of
944changes. Everything after DB_File 1.01 has been added since 5.003.
945
946=head2 Net::Ping
947
948Major rewrite - support added for both udp echo and real icmp pings.
949
54310121 950=head2 Object-oriented overrides for builtin operators
5f05dabc 951
54310121 952Many of the Perl builtins returning lists now have
5f05dabc 953object-oriented overrides. These are:
954
955 File::stat
956 Net::hostent
957 Net::netent
958 Net::protoent
959 Net::servent
960 Time::gmtime
961 Time::localtime
962 User::grent
963 User::pwent
964
965For example, you can now say
966
967 use File::stat;
968 use User::pwent;
969 $his = (stat($filename)->st_uid == pwent($whoever)->pw_uid);
970
774d564b 971=head1 Utility Changes
5f05dabc 972
7bac28a0 973=head2 pod2html
974
975=over
976
977=item Sends converted HTML to standard output
978
979The I<pod2html> utility included with Perl 5.004 is entirely new.
980By default, it sends the converted HTML to its standard output,
981instead of writing it to a file like Perl 5.003's I<pod2html> did.
982Use the B<--outfile=FILENAME> option to write to a file.
983
984=back
985
774d564b 986=head2 xsubpp
5f05dabc 987
0a753a76 988=over
989
774d564b 990=item C<void> XSUBs now default to returning nothing
991
992Due to a documentation/implementation bug in previous versions of
993Perl, XSUBs with a return type of C<void> have actually been
994returning one value. Usually that value was the GV for the XSUB,
995but sometimes it was some already freed or reused value, which would
996sometimes lead to program failure.
997
998In Perl 5.004, if an XSUB is declared as returning C<void>, it
999actually returns no value, i.e. an empty list (though there is a
1000backward-compatibility exception; see below). If your XSUB really
1001does return an SV, you should give it a return type of C<SV *>.
1002
1003For backward compatibility, I<xsubpp> tries to guess whether a
1004C<void> XSUB is really C<void> or if it wants to return an C<SV *>.
1005It does so by examining the text of the XSUB: if I<xsubpp> finds
1006what looks like an assignment to C<ST(0)>, it assumes that the
1007XSUB's return type is really C<SV *>.
5f05dabc 1008
0a753a76 1009=back
1010
1011=head1 C Language API Changes
1012
1013=over
1014
1015=item C<gv_fetchmethod> and C<perl_call_sv>
1016
1017The C<gv_fetchmethod> function finds a method for an object, just like
1018in Perl 5.003. The GV it returns may be a method cache entry.
1019However, in Perl 5.004, method cache entries are not visible to users;
1020therefore, they can no longer be passed directly to C<perl_call_sv>.
1021Instead, you should use the C<GvCV> macro on the GV to extract its CV,
1022and pass the CV to C<perl_call_sv>.
1023
1024The most likely symptom of passing the result of C<gv_fetchmethod> to
1025C<perl_call_sv> is Perl's producing an "Undefined subroutine called"
1026error on the I<second> call to a given method (since there is no cache
1027on the first call).
1028
137443ea 1029=item C<perl_eval_pv>
1030
8903cb82 1031A new function handy for eval'ing strings of Perl code inside C code.
137443ea 1032This function returns the value from the eval statement, which can
1033be used instead of fetching globals from the symbol table. See
1034L<perlguts>, L<perlembed> and L<perlcall> for details and examples.
1035
1e422769 1036=item Extended API for manipulating hashes
1037
1038Internal handling of hash keys has changed. The old hashtable API is
1039still fully supported, and will likely remain so. The additions to the
1040API allow passing keys as C<SV*>s, so that C<tied> hashes can be given
54310121 1041real scalars as keys rather than plain strings (nontied hashes still
1e422769 1042can only use strings as keys). New extensions must use the new hash
1043access functions and macros if they wish to use C<SV*> keys. These
1044additions also make it feasible to manipulate C<HE*>s (hash entries),
1045which can be more efficient. See L<perlguts> for details.
1046
0a753a76 1047=back
1048
5f05dabc 1049=head1 Documentation Changes
1050
1051Many of the base and library pods were updated. These
1052new pods are included in section 1:
1053
0a753a76 1054=over
5f05dabc 1055
774d564b 1056=item L<perldelta>
5f05dabc 1057
71be2cbc 1058This document.
5f05dabc 1059
71be2cbc 1060=item L<perllocale>
5f05dabc 1061
71be2cbc 1062Locale support (internationalization and localization).
5f05dabc 1063
1064=item L<perltoot>
1065
1066Tutorial on Perl OO programming.
1067
71be2cbc 1068=item L<perlapio>
1069
1070Perl internal IO abstraction interface.
1071
5f05dabc 1072=item L<perldebug>
1073
1074Although not new, this has been massively updated.
1075
1076=item L<perlsec>
1077
1078Although not new, this has been massively updated.
1079
1080=back
1081
1082=head1 New Diagnostics
1083
1084Several new conditions will trigger warnings that were
1085silent before. Some only affect certain platforms.
2ae324a7 1086The following new warnings and errors outline these.
774d564b 1087These messages are classified as follows (listed in
1088increasing order of desperation):
1089
1090 (W) A warning (optional).
1091 (D) A deprecation (optional).
1092 (S) A severe warning (mandatory).
1093 (F) A fatal error (trappable).
1094 (P) An internal error you should never see (trappable).
54310121 1095 (X) A very fatal error (nontrappable).
774d564b 1096 (A) An alien error message (not generated by Perl).
5f05dabc 1097
0a753a76 1098=over
5f05dabc 1099
1100=item "my" variable %s masks earlier declaration in same scope
1101
1102(S) A lexical variable has been redeclared in the same scope, effectively
1103eliminating all access to the previous instance. This is almost always
1104a typographical error. Note that the earlier variable will still exist
1105until the end of the scope or until all closure referents to it are
1106destroyed.
1107
774d564b 1108=item %s argument is not a HASH element or slice
1109
1110(F) The argument to delete() must be either a hash element, such as
1111
1112 $foo{$bar}
1113 $ref->[12]->{"susie"}
1114
1115or a hash slice, such as
1116
1117 @foo{$bar, $baz, $xyzzy}
1118 @{$ref->[12]}{"susie", "queue"}
1119
5f05dabc 1120=item Allocation too large: %lx
1121
54310121 1122(X) You can't allocate more than 64K on an MS-DOS machine.
5f05dabc 1123
1124=item Allocation too large
1125
1126(F) You can't allocate more than 2^31+"small amount" bytes.
1127
54310121 1128=item Applying %s to %s will act on scalar(%s)
1129
1130(W) The pattern match (//), substitution (s///), and translation (tr///)
1131operators work on scalar values. If you apply one of them to an array
1132or a hash, it will convert the array or hash to a scalar value -- the
1133length of an array, or the population info of a hash -- and then work on
1134that scalar value. This is probably not what you meant to do. See
1135L<perlfunc/grep> and L<perlfunc/map> for alternatives.
1136
1137=item Attempt to free nonexistent shared string
5f05dabc 1138
1139(P) Perl maintains a reference counted internal table of strings to
1140optimize the storage and access of hash keys and other strings. This
1141indicates someone tried to decrement the reference count of a string
1142that can no longer be found in the table.
1143
1144=item Attempt to use reference as lvalue in substr
1145
1146(W) You supplied a reference as the first argument to substr() used
1147as an lvalue, which is pretty strange. Perhaps you forgot to
1148dereference it first. See L<perlfunc/substr>.
1149
7bac28a0 1150=item Can't redefine active sort subroutine %s
1151
1152(F) Perl optimizes the internal handling of sort subroutines and keeps
1153pointers into them. You tried to redefine one such sort subroutine when it
1154was currently active, which is not allowed. If you really want to do
1155this, you should write C<sort { &func } @x> instead of C<sort func @x>.
1156
774d564b 1157=item Can't use bareword ("%s") as %s ref while "strict refs" in use
1158
1159(F) Only hard references are allowed by "strict refs". Symbolic references
1160are disallowed. See L<perlref>.
1161
54310121 1162=item Cannot resolve method `%s' overloading `%s' in package `%s'
1163
1164(P) Internal error trying to resolve overloading specified by a method
1165name (as opposed to a subroutine reference).
1166
774d564b 1167=item Constant subroutine %s redefined
1168
1169(S) You redefined a subroutine which had previously been eligible for
dc848c6f 1170inlining. See L<perlsub/"Constant Functions"> for commentary and
54310121 1171workarounds.
1172
1173=item Constant subroutine %s undefined
1174
1175(S) You undefined a subroutine which had previously been eligible for
774d564b 1176inlining. See L<perlsub/"Constant Functions"> for commentary and
1177workarounds.
1178
54310121 1179=item Copy method did not return a reference
1180
1181(F) The method which overloads "=" is buggy. See L<overload/Copy Constructor>.
1182
774d564b 1183=item Died
1184
1185(F) You passed die() an empty string (the equivalent of C<die "">) or
1186you called it with no args and both C<$@> and C<$_> were empty.
1187
54310121 1188=item Exiting pseudo-block via %s
1189
1190(W) You are exiting a rather special block construct (like a sort block or
1191subroutine) by unconventional means, such as a goto, or a loop control
1192statement. See L<perlfunc/sort>.
1193
8903cb82 1194=item Identifier too long
1195
1196(F) Perl limits identifiers (names for variables, functions, etc.) to
1197252 characters for simple names, somewhat more for compound names (like
1198C<$A::B>). You've exceeded Perl's limits. Future versions of Perl are
1199likely to eliminate these arbitrary limitations.
1200
54310121 1201=item Illegal character %s (carriage return)
1202
1203(F) A carriage return character was found in the input. This is an
1204error, and not a warning, because carriage return characters can break
1205multi-line strings, including here documents (e.g., C<print E<lt>E<lt>EOF;>).
1206
1207=item Illegal switch in PERL5OPT: %s
1208
1209(X) The PERL5OPT environment variable may only be used to set the
1210following switches: B<-[DIMUdmw]>.
1211
5f05dabc 1212=item Integer overflow in hex number
1213
1214(S) The literal hex number you have specified is too big for your
1215architecture. On a 32-bit architecture the largest hex literal is
12160xFFFFFFFF.
1217
1218=item Integer overflow in octal number
1219
1220(S) The literal octal number you have specified is too big for your
1221architecture. On a 32-bit architecture the largest octal literal is
1222037777777777.
1223
5cd24f17 1224=item internal error: glob failed
1225
1226(P) Something went wrong with the external program(s) used for C<glob>
1227and C<E<lt>*.cE<gt>>. This may mean that your csh (C shell) is
1228broken. If so, you should change all of the csh-related variables in
1229config.sh: If you have tcsh, make the variables refer to it as if it
1230were csh (e.g. C<full_csh='/usr/bin/tcsh'>); otherwise, make them all
1231empty (except that C<d_csh> should be C<'undef'>) so that Perl will
1232think csh is missing. In either case, after editing config.sh, run
1233C<./Configure -S> and rebuild Perl.
1234
878e08df 1235=item Invalid conversion in %s: "%s"
1236
1237(W) Perl does not understand the given format conversion.
1238See L<perlfunc/sprintf>.
1239
8903cb82 1240=item Invalid type in pack: '%s'
1241
1242(F) The given character is not a valid pack type. See L<perlfunc/pack>.
1243
1244=item Invalid type in unpack: '%s'
1245
1246(F) The given character is not a valid unpack type. See L<perlfunc/unpack>.
1247
774d564b 1248=item Name "%s::%s" used only once: possible typo
1249
1250(W) Typographical errors often show up as unique variable names.
1251If you had a good reason for having a unique name, then just mention
1252it again somehow to suppress the message (the C<use vars> pragma is
1253provided for just this purpose).
1254
5f05dabc 1255=item Null picture in formline
1256
1257(F) The first argument to formline must be a valid format picture
1258specification. It was found to be empty, which probably means you
1259supplied it an uninitialized value. See L<perlform>.
1260
1261=item Offset outside string
1262
1263(F) You tried to do a read/write/send/recv operation with an offset
1264pointing outside the buffer. This is difficult to imagine.
1265The sole exception to this is that C<sysread()>ing past the buffer
1266will extend the buffer and zero pad the new area.
1267
1268=item Out of memory!
1269
1270(X|F) The malloc() function returned 0, indicating there was insufficient
1271remaining memory (or virtual memory) to satisfy the request.
1272
1273The request was judged to be small, so the possibility to trap it
1274depends on the way Perl was compiled. By default it is not trappable.
1275However, if compiled for this, Perl may use the contents of C<$^M> as
1276an emergency pool after die()ing with this message. In this case the
1277error is trappable I<once>.
1278
1279=item Out of memory during request for %s
1280
1281(F) The malloc() function returned 0, indicating there was insufficient
1282remaining memory (or virtual memory) to satisfy the request. However,
1283the request was judged large enough (compile-time default is 64K), so
1284a possibility to shut down by trapping this error is granted.
1285
878e08df 1286=item panic: frexp
1287
1288(P) The library function frexp() failed, making printf("%f") impossible.
1289
5f05dabc 1290=item Possible attempt to put comments in qw() list
1291
774d564b 1292(W) qw() lists contain items separated by whitespace; as with literal
1293strings, comment characters are not ignored, but are instead treated
1294as literal data. (You may have used different delimiters than the
1295exclamation marks parentheses shown here; braces are also frequently
1296used.)
1297
1298You probably wrote something like this:
5f05dabc 1299
2ae324a7 1300 @list = qw(
774d564b 1301 a # a comment
5f05dabc 1302 b # another comment
774d564b 1303 );
5f05dabc 1304
1305when you should have written this:
1306
774d564b 1307 @list = qw(
2ae324a7 1308 a
5f05dabc 1309 b
774d564b 1310 );
1311
1312If you really want comments, build your list the
1313old-fashioned way, with quotes and commas:
1314
1315 @list = (
1316 'a', # a comment
1317 'b', # another comment
1318 );
5f05dabc 1319
1320=item Possible attempt to separate words with commas
1321
774d564b 1322(W) qw() lists contain items separated by whitespace; therefore commas
1323aren't needed to separate the items. (You may have used different
1324delimiters than the parentheses shown here; braces are also frequently
1325used.)
5f05dabc 1326
2ae324a7 1327You probably wrote something like this:
5f05dabc 1328
774d564b 1329 qw! a, b, c !;
1330
1331which puts literal commas into some of the list items. Write it without
1332commas if you don't want them to appear in your data:
1333
1334 qw! a b c !;
5f05dabc 1335
774d564b 1336=item Scalar value @%s{%s} better written as $%s{%s}
1337
1338(W) You've used a hash slice (indicated by @) to select a single element of
1339a hash. Generally it's better to ask for a scalar value (indicated by $).
1340The difference is that C<$foo{&bar}> always behaves like a scalar, both when
1341assigning to it and when evaluating its argument, while C<@foo{&bar}> behaves
1342like a list when you assign to it, and provides a list context to its
1343subscript, which can do weird things if you're expecting only one subscript.
5f05dabc 1344
54310121 1345=item Stub found while resolving method `%s' overloading `%s' in package `%s'
1346
1347(P) Overloading resolution over @ISA tree may be broken by importing stubs.
1348Stubs should never be implicitely created, but explicit calls to C<can>
1349may break this.
1350
1351=item Too late for "B<-T>" option
1352
1353(X) The #! line (or local equivalent) in a Perl script contains the
1354B<-T> option, but Perl was not invoked with B<-T> in its argument
1355list. This is an error because, by the time Perl discovers a B<-T> in
1356a script, it's too late to properly taint everything from the
1357environment. So Perl gives up.
1358
5f05dabc 1359=item untie attempted while %d inner references still exist
1360
1361(W) A copy of the object returned from C<tie> (or C<tied>) was still
1362valid when C<untie> was called.
1363
54310121 1364=item Unrecognized character %s
1365
1366(F) The Perl parser has no idea what to do with the specified character
1367in your Perl script (or eval). Perhaps you tried to run a compressed
1368script, a binary program, or a directory as a Perl program.
1369
1370=item Unsupported function fork
1371
1372(F) Your version of executable does not support forking.
1373
1374Note that under some systems, like OS/2, there may be different flavors of
1375Perl executables, some of which may support fork, some not. Try changing
1376the name you call Perl by to C<perl_>, C<perl__>, and so on.
1377
5cd24f17 1378=item Use of "$$<digit>" to mean "${$}<digit>" is deprecated
1379
1380(D) Perl versions before 5.004 misinterpreted any type marker followed
1381by "$" and a digit. For example, "$$0" was incorrectly taken to mean
1382"${$}0" instead of "${$0}". This bug is (mostly) fixed in Perl 5.004.
1383
1384However, the developers of Perl 5.004 could not fix this bug completely,
1385because at least two widely-used modules depend on the old meaning of
1386"$$0" in a string. So Perl 5.004 still interprets "$$<digit>" in the
1387old (broken) way inside strings; but it generates this message as a
1388warning. And in Perl 5.005, this special treatment will cease.
1389
54310121 1390=item Value of %s can be "0"; test with defined()
774d564b 1391
54310121 1392(W) In a conditional expression, you used <HANDLE>, <*> (glob), C<each()>,
1393or C<readdir()> as a boolean value. Each of these constructs can return a
1394value of "0"; that would make the conditional expression false, which is
1395probably not what you intended. When using these constructs in conditional
1396expressions, test their values with the C<defined> operator.
774d564b 1397
1398=item Variable "%s" may be unavailable
1399
1400(W) An inner (nested) I<anonymous> subroutine is inside a I<named>
1401subroutine, and outside that is another subroutine; and the anonymous
1402(innermost) subroutine is referencing a lexical variable defined in
1403the outermost subroutine. For example:
1404
1405 sub outermost { my $a; sub middle { sub { $a } } }
1406
1407If the anonymous subroutine is called or referenced (directly or
1408indirectly) from the outermost subroutine, it will share the variable
1409as you would expect. But if the anonymous subroutine is called or
1410referenced when the outermost subroutine is not active, it will see
1411the value of the shared variable as it was before and during the
1412*first* call to the outermost subroutine, which is probably not what
1413you want.
1414
1415In these circumstances, it is usually best to make the middle
1416subroutine anonymous, using the C<sub {}> syntax. Perl has specific
1417support for shared variables in nested anonymous subroutines; a named
1418subroutine in between interferes with this feature.
1419
1420=item Variable "%s" will not stay shared
1421
1422(W) An inner (nested) I<named> subroutine is referencing a lexical
1423variable defined in an outer subroutine.
1424
1425When the inner subroutine is called, it will probably see the value of
1426the outer subroutine's variable as it was before and during the
1427*first* call to the outer subroutine; in this case, after the first
1428call to the outer subroutine is complete, the inner and outer
1429subroutines will no longer share a common value for the variable. In
1430other words, the variable will no longer be shared.
1431
1432Furthermore, if the outer subroutine is anonymous and references a
1433lexical variable outside itself, then the outer and inner subroutines
1434will I<never> share the given variable.
1435
1436This problem can usually be solved by making the inner subroutine
1437anonymous, using the C<sub {}> syntax. When inner anonymous subs that
1438reference variables in outer subroutines are called or referenced,
54310121 1439they are automatically rebound to the current values of such
774d564b 1440variables.
1441
1442=item Warning: something's wrong
1443
1444(W) You passed warn() an empty string (the equivalent of C<warn "">) or
1445you called it with no args and C<$_> was empty.
1446
54310121 1447=item Ill-formed logical name |%s| in prime_env_iter
1448
1449(W) A warning peculiar to VMS. A logical name was encountered when preparing
1450to iterate over %ENV which violates the syntactic rules governing logical
1451names. Since it cannot be translated normally, it is skipped, and will not
1452appear in %ENV. This may be a benign occurrence, as some software packages
1453might directly modify logical name tables and introduce nonstandard names,
1454or it may indicate that a logical name table has been corrupted.
1455
774d564b 1456=item Got an error from DosAllocMem
5f05dabc 1457
774d564b 1458(P) An error peculiar to OS/2. Most probably you're using an obsolete
1459version of Perl, and this should not happen anyway.
5f05dabc 1460
1461=item Malformed PERLLIB_PREFIX
1462
dc848c6f 1463(F) An error peculiar to OS/2. PERLLIB_PREFIX should be of the form
5f05dabc 1464
1465 prefix1;prefix2
1466
1467or
1468
1469 prefix1 prefix2
1470
dc848c6f 1471with nonempty prefix1 and prefix2. If C<prefix1> is indeed a prefix
1472of a builtin library search path, prefix2 is substituted. The error
1473may appear if components are not found, or are too long. See
1474"PERLLIB_PREFIX" in F<README.os2>.
5f05dabc 1475
1476=item PERL_SH_DIR too long
1477
1478(F) An error peculiar to OS/2. PERL_SH_DIR is the directory to find the
dc848c6f 1479C<sh>-shell in. See "PERL_SH_DIR" in F<README.os2>.
5f05dabc 1480
1481=item Process terminated by SIG%s
1482
1483(W) This is a standard message issued by OS/2 applications, while *nix
dc848c6f 1484applications die in silence. It is considered a feature of the OS/2
1485port. One can easily disable this by appropriate sighandlers, see
1486L<perlipc/"Signals">. See also "Process terminated by SIGTERM/SIGINT"
1487in F<README.os2>.
5f05dabc 1488
1489=back
1490
1491=head1 BUGS
1492
774d564b 1493If you find what you think is a bug, you might check the headers of
1494recently posted articles in the comp.lang.perl.misc newsgroup.
1495There may also be information at http://www.perl.com/perl/, the Perl
1496Home Page.
5f05dabc 1497
1498If you believe you have an unreported bug, please run the B<perlbug>
9607fc9c 1499program included with your release. Make sure you trim your bug down
1500to a tiny but sufficient test case. Your bug report, along with the
1501output of C<perl -V>, will be sent off to <F<perlbug@perl.com>> to be
1502analysed by the Perl porting team.
5f05dabc 1503
1504=head1 SEE ALSO
1505
1506The F<Changes> file for exhaustive details on what changed.
1507
1508The F<INSTALL> file for how to build Perl. This file has been
1509significantly updated for 5.004, so even veteran users should
1510look through it.
1511
1512The F<README> file for general stuff.
1513
1514The F<Copying> file for copyright information.
1515
1516=head1 HISTORY
1517
1518Constructed by Tom Christiansen, grabbing material with permission
1519from innumerable contributors, with kibitzing by more than a few Perl
1520porters.
1521
2ae324a7 1522Last update: Sat Mar 8 19:51:26 EST 1997