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