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