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