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