This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[inseparable changes from patch from perl5.003_27 to perl5.003_28]
[perl5.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
TB
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
CS
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
TB
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
674=back
675
5f05dabc 676=head1 Documentation Changes
677
678Many of the base and library pods were updated. These
679new pods are included in section 1:
680
0a753a76 681=over
5f05dabc 682
774d564b 683=item L<perldelta>
5f05dabc 684
71be2cbc 685This document.
5f05dabc 686
71be2cbc 687=item L<perllocale>
5f05dabc 688
71be2cbc 689Locale support (internationalization and localization).
5f05dabc 690
691=item L<perltoot>
692
693Tutorial on Perl OO programming.
694
71be2cbc 695=item L<perlapio>
696
697Perl internal IO abstraction interface.
698
5f05dabc 699=item L<perldebug>
700
701Although not new, this has been massively updated.
702
703=item L<perlsec>
704
705Although not new, this has been massively updated.
706
707=back
708
709=head1 New Diagnostics
710
711Several new conditions will trigger warnings that were
712silent before. Some only affect certain platforms.
774d564b 713The following new warnings and errors outline these.
714These messages are classified as follows (listed in
715increasing order of desperation):
716
717 (W) A warning (optional).
718 (D) A deprecation (optional).
719 (S) A severe warning (mandatory).
720 (F) A fatal error (trappable).
721 (P) An internal error you should never see (trappable).
722 (X) A very fatal error (non-trappable).
723 (A) An alien error message (not generated by Perl).
5f05dabc 724
0a753a76 725=over
5f05dabc 726
727=item "my" variable %s masks earlier declaration in same scope
728
729(S) A lexical variable has been redeclared in the same scope, effectively
730eliminating all access to the previous instance. This is almost always
731a typographical error. Note that the earlier variable will still exist
732until the end of the scope or until all closure referents to it are
733destroyed.
734
774d564b 735=item %s argument is not a HASH element or slice
736
737(F) The argument to delete() must be either a hash element, such as
738
739 $foo{$bar}
740 $ref->[12]->{"susie"}
741
742or a hash slice, such as
743
744 @foo{$bar, $baz, $xyzzy}
745 @{$ref->[12]}{"susie", "queue"}
746
5f05dabc 747=item Allocation too large: %lx
748
749(X) You can't allocate more than 64K on an MSDOS machine.
750
751=item Allocation too large
752
753(F) You can't allocate more than 2^31+"small amount" bytes.
754
755=item Attempt to free non-existent shared string
756
757(P) Perl maintains a reference counted internal table of strings to
758optimize the storage and access of hash keys and other strings. This
759indicates someone tried to decrement the reference count of a string
760that can no longer be found in the table.
761
762=item Attempt to use reference as lvalue in substr
763
764(W) You supplied a reference as the first argument to substr() used
765as an lvalue, which is pretty strange. Perhaps you forgot to
766dereference it first. See L<perlfunc/substr>.
767
768=item Unsupported function fork
769
770(F) Your version of executable does not support forking.
771
772Note that under some systems, like OS/2, there may be different flavors of
773Perl executables, some of which may support fork, some not. Try changing
774the name you call Perl by to C<perl_>, C<perl__>, and so on.
775
776=item Ill-formed logical name |%s| in prime_env_iter
777
778(W) A warning peculiar to VMS. A logical name was encountered when preparing
779to iterate over %ENV which violates the syntactic rules governing logical
780names. Since it cannot be translated normally, it is skipped, and will not
781appear in %ENV. This may be a benign occurrence, as some software packages
782might directly modify logical name tables and introduce non-standard names,
783or it may indicate that a logical name table has been corrupted.
784
774d564b 785=item Can't use bareword ("%s") as %s ref while "strict refs" in use
786
787(F) Only hard references are allowed by "strict refs". Symbolic references
788are disallowed. See L<perlref>.
789
790=item Constant subroutine %s redefined
791
792(S) You redefined a subroutine which had previously been eligible for
793inlining. See L<perlsub/"Constant Functions"> for commentary and
794workarounds.
795
796=item Died
797
798(F) You passed die() an empty string (the equivalent of C<die "">) or
799you called it with no args and both C<$@> and C<$_> were empty.
800
5f05dabc 801=item Integer overflow in hex number
802
803(S) The literal hex number you have specified is too big for your
804architecture. On a 32-bit architecture the largest hex literal is
8050xFFFFFFFF.
806
807=item Integer overflow in octal number
808
809(S) The literal octal number you have specified is too big for your
810architecture. On a 32-bit architecture the largest octal literal is
811037777777777.
812
774d564b 813=item Name "%s::%s" used only once: possible typo
814
815(W) Typographical errors often show up as unique variable names.
816If you had a good reason for having a unique name, then just mention
817it again somehow to suppress the message (the C<use vars> pragma is
818provided for just this purpose).
819
5f05dabc 820=item Null picture in formline
821
822(F) The first argument to formline must be a valid format picture
823specification. It was found to be empty, which probably means you
824supplied it an uninitialized value. See L<perlform>.
825
826=item Offset outside string
827
828(F) You tried to do a read/write/send/recv operation with an offset
829pointing outside the buffer. This is difficult to imagine.
830The sole exception to this is that C<sysread()>ing past the buffer
831will extend the buffer and zero pad the new area.
832
774d564b 833=item Stub found while resolving method `%s' overloading `%s' in package `%s'
834
835(P) Overloading resolution over @ISA tree may be broken by importing stubs.
836Stubs should never be implicitely created, but explicit calls to C<can>
837may break this.
838
839=item Cannot resolve method `%s' overloading `%s' in package `s'
840
841(P) Internal error trying to resolve overloading specified by a method
842name (as opposed to a subroutine reference).
843
5f05dabc 844=item Out of memory!
845
846(X|F) The malloc() function returned 0, indicating there was insufficient
847remaining memory (or virtual memory) to satisfy the request.
848
849The request was judged to be small, so the possibility to trap it
850depends on the way Perl was compiled. By default it is not trappable.
851However, if compiled for this, Perl may use the contents of C<$^M> as
852an emergency pool after die()ing with this message. In this case the
853error is trappable I<once>.
854
855=item Out of memory during request for %s
856
857(F) The malloc() function returned 0, indicating there was insufficient
858remaining memory (or virtual memory) to satisfy the request. However,
859the request was judged large enough (compile-time default is 64K), so
860a possibility to shut down by trapping this error is granted.
861
862=item Possible attempt to put comments in qw() list
863
774d564b 864(W) qw() lists contain items separated by whitespace; as with literal
865strings, comment characters are not ignored, but are instead treated
866as literal data. (You may have used different delimiters than the
867exclamation marks parentheses shown here; braces are also frequently
868used.)
869
870You probably wrote something like this:
5f05dabc 871
774d564b 872 @list = qw(
873 a # a comment
5f05dabc 874 b # another comment
774d564b 875 );
5f05dabc 876
877when you should have written this:
878
774d564b 879 @list = qw(
880 a
5f05dabc 881 b
774d564b 882 );
883
884If you really want comments, build your list the
885old-fashioned way, with quotes and commas:
886
887 @list = (
888 'a', # a comment
889 'b', # another comment
890 );
5f05dabc 891
892=item Possible attempt to separate words with commas
893
774d564b 894(W) qw() lists contain items separated by whitespace; therefore commas
895aren't needed to separate the items. (You may have used different
896delimiters than the parentheses shown here; braces are also frequently
897used.)
5f05dabc 898
774d564b 899You probably wrote something like this:
5f05dabc 900
774d564b 901 qw! a, b, c !;
902
903which puts literal commas into some of the list items. Write it without
904commas if you don't want them to appear in your data:
905
906 qw! a b c !;
5f05dabc 907
774d564b 908=item Scalar value @%s{%s} better written as $%s{%s}
909
910(W) You've used a hash slice (indicated by @) to select a single element of
911a hash. Generally it's better to ask for a scalar value (indicated by $).
912The difference is that C<$foo{&bar}> always behaves like a scalar, both when
913assigning to it and when evaluating its argument, while C<@foo{&bar}> behaves
914like a list when you assign to it, and provides a list context to its
915subscript, which can do weird things if you're expecting only one subscript.
5f05dabc 916
917=item untie attempted while %d inner references still exist
918
919(W) A copy of the object returned from C<tie> (or C<tied>) was still
920valid when C<untie> was called.
921
774d564b 922=item Value of %s construct can be "0"; test with defined()
923
924(W) In a conditional expression, you used <HANDLE>, <*> (glob), or
925C<readdir> as a boolean value. Each of these constructs can return a
926value of "0"; that would make the conditional expression false, which
927is probably not what you intended. When using these constructs in
928conditional expressions, test their values with the C<defined> operator.
929
930=item Variable "%s" may be unavailable
931
932(W) An inner (nested) I<anonymous> subroutine is inside a I<named>
933subroutine, and outside that is another subroutine; and the anonymous
934(innermost) subroutine is referencing a lexical variable defined in
935the outermost subroutine. For example:
936
937 sub outermost { my $a; sub middle { sub { $a } } }
938
939If the anonymous subroutine is called or referenced (directly or
940indirectly) from the outermost subroutine, it will share the variable
941as you would expect. But if the anonymous subroutine is called or
942referenced when the outermost subroutine is not active, it will see
943the value of the shared variable as it was before and during the
944*first* call to the outermost subroutine, which is probably not what
945you want.
946
947In these circumstances, it is usually best to make the middle
948subroutine anonymous, using the C<sub {}> syntax. Perl has specific
949support for shared variables in nested anonymous subroutines; a named
950subroutine in between interferes with this feature.
951
952=item Variable "%s" will not stay shared
953
954(W) An inner (nested) I<named> subroutine is referencing a lexical
955variable defined in an outer subroutine.
956
957When the inner subroutine is called, it will probably see the value of
958the outer subroutine's variable as it was before and during the
959*first* call to the outer subroutine; in this case, after the first
960call to the outer subroutine is complete, the inner and outer
961subroutines will no longer share a common value for the variable. In
962other words, the variable will no longer be shared.
963
964Furthermore, if the outer subroutine is anonymous and references a
965lexical variable outside itself, then the outer and inner subroutines
966will I<never> share the given variable.
967
968This problem can usually be solved by making the inner subroutine
969anonymous, using the C<sub {}> syntax. When inner anonymous subs that
970reference variables in outer subroutines are called or referenced,
971they are automatically re-bound to the current values of such
972variables.
973
974=item Warning: something's wrong
975
976(W) You passed warn() an empty string (the equivalent of C<warn "">) or
977you called it with no args and C<$_> was empty.
978
979=item Got an error from DosAllocMem
5f05dabc 980
774d564b 981(P) An error peculiar to OS/2. Most probably you're using an obsolete
982version of Perl, and this should not happen anyway.
5f05dabc 983
984=item Malformed PERLLIB_PREFIX
985
986(F) An error peculiar to OS/2. PERLLIB_PREFIX should be of the form
987
988 prefix1;prefix2
989
990or
991
992 prefix1 prefix2
993
994with non-empty prefix1 and prefix2. If C<prefix1> is indeed a prefix of
995a builtin library search path, prefix2 is substituted. The error may appear
996if components are not found, or are too long. See L<perlos2/"PERLLIB_PREFIX">.
997
998=item PERL_SH_DIR too long
999
1000(F) An error peculiar to OS/2. PERL_SH_DIR is the directory to find the
1001C<sh>-shell in. See L<perlos2/"PERL_SH_DIR">.
1002
1003=item Process terminated by SIG%s
1004
1005(W) This is a standard message issued by OS/2 applications, while *nix
1006applications die in silence. It is considered a feature of the OS/2
1007port. One can easily disable this by appropriate sighandlers, see
1008L<perlipc/"Signals">. See L<perlos2/"Process terminated by SIGTERM/SIGINT">.
1009
1010=back
1011
1012=head1 BUGS
1013
774d564b 1014If you find what you think is a bug, you might check the headers of
1015recently posted articles in the comp.lang.perl.misc newsgroup.
1016There may also be information at http://www.perl.com/perl/, the Perl
1017Home Page.
5f05dabc 1018
1019If you believe you have an unreported bug, please run the B<perlbug>
1020program included with your release. Make sure you trim your bug
1021down to a tiny but sufficient test case. Your bug report, along
1022with the output of C<perl -V>, will be sent off to perlbug@perl.com
1023to be analysed by the Perl porting team.
1024
1025=head1 SEE ALSO
1026
1027The F<Changes> file for exhaustive details on what changed.
1028
1029The F<INSTALL> file for how to build Perl. This file has been
1030significantly updated for 5.004, so even veteran users should
1031look through it.
1032
1033The F<README> file for general stuff.
1034
1035The F<Copying> file for copyright information.
1036
1037=head1 HISTORY
1038
1039Constructed by Tom Christiansen, grabbing material with permission
1040from innumerable contributors, with kibitzing by more than a few Perl
1041porters.
1042
44a8e56a 1043Last update: Tue Jan 14 14:03:02 EST 1997