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