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