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