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