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