update perldelta for change#4356
[p5sagit/p5-mst-13.2.git] / pod / perldelta.pod
CommitLineData
ba8251e8 1=head1 NAME
2
a5222a85 3perldelta - what's new for perl v5.6 (as of v5.005_62)
ba8251e8 4
5=head1 DESCRIPTION
6
f29c64d6 7This is an unsupported alpha release, meant for intrepid Perl developers
8only. The included sources may not even build correctly on some platforms.
9Subscribing to perl5-porters is the best way to monitor and contribute
10to the progress of development releases (see www.perl.org for info).
11
ba8251e8 12This document describes differences between the 5.005 release and this one.
13
14=head1 Incompatible Changes
15
e02fdbd2 16=head2 Perl Source Incompatibilities
17
a5222a85 18Beware that any new warnings that have been added are B<not> considered
19incompatible changes.
20
21Since all new warnings must be explicitly requested via the C<-w>
22switch or the C<warnings> pragma, it is ultimately the programmer's
23responsibility to ensure that warnings are enabled judiciously.
e02fdbd2 24
757edf6f 25=over 4
26
08cd8952 27=item Treatment of list slices of undef has changed
28
29When taking a slice of a literal list (as opposed to a slice of
30an array or hash), Perl used to return an empty list if the
31result happened to be composed of all undef values.
32
33The new behavior is to produce an empty list if (and only if)
34the original list was empty. Consider the following example:
35
36 @a = (1,undef,undef,2)[2,1,2];
37
38The old behavior would have resulted in @a having no elements.
39The new behavior ensures it has three undefined elements.
40
41Note in particular that the behavior of slices of the following
42cases remains unchanged:
43
44 @a = ()[1,2];
45 @a = (getpwent)[7,0];
46 @a = (anything_returning_empty_list())[2,1,2];
47 @a = @b[2,1,2];
48 @a = @c{'a','b','c'};
49
50See L<perldata>.
51
757edf6f 52=item Possibly changed pseudo-random number generator
53
54In 5.005_0x and earlier, perl's rand() function used the C library
55rand(3) function. As of 5.005_52, Configure tests for drand48(),
56random(), and rand() (in that order) and picks the first one it finds.
57Perl programs that depend on reproducing a specific set of pseudo-random
58numbers will now likely produce different output.
59
a5222a85 60=item Hashing function for hash keys has changed
61
62Perl hashes are not order preserving. The apparently random order
63encountered when iterating on the contents of a hash is determined
64by the hashing algorithm used. To improve the distribution of lower
65bits in the hashed value, the algorithm has changed slightly as of
665.005_52. When iterating over hashes, this may yield a random order
67that is B<different> from that of previous versions.
68
69=item C<undef> fails on read only values
70
71Using the C<undef> operator on a readonly value (such as $1) has
72the same effect as assigning C<undef> to the readonly value--it
73throws an exception.
74
75=item Close-on-exec bit may be set on pipe() handles
76
77On systems that support a close-on-exec flag on filehandles, the
78flag will be set for any handles created by pipe(), if that is
79warranted by the value of $^F that may be in effect. Earlier
80versions neglected to set the flag for handles created with
81pipe(). See L<perlfunc/pipe> and L<perlvar/$^F>.
82
83=item Writing C<"$$1"> to mean C<"${$}1"> is unsupported
84
85Perl 5.004 deprecated the interpretation of C<$$1> and
86similar within interpolated strings to mean C<$$ . "1">,
87but still allowed it.
88
89In Perl 5.6 and later, C<"$$1"> always means C<"${$1}">.
90
91=item values(%h) and C<\(%h)> operate on aliases to values, not copies
92
93each(), values() and hashes in a list context return the actual
94values in the hash, instead of copies (as they used to in earlier
95versions). Typical idioms for using these constructs copy the
96returned values, but this is can make a significant difference when
97creating references to the returned values.
98
99Keys in the hash are still returned as copies when iterating on
08cd8952 100a hash.
a5222a85 101
102=item vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS
103
08cd8952 104vec() generates a run-time error if the BITS argument is not
a5222a85 105a valid power-of-two integer.
106
107=item Text of some diagnostic output has changed
108
109Most references to internal Perl operations in diagnostics
110have been changed to be more descriptive. This may be an
111issue for programs that may incorrectly rely on the exact
112text of diagnostics for proper functioning.
113
114=item C<%@> has been removed
115
116The undocumented special variable C<%@> that used to accumulate
117"background" errors (such as those that happen in DESTROY())
118has been removed, because it could potentially result in memory
119leaks.
120
757edf6f 121=back
122
e02fdbd2 123=head2 C Source Incompatibilities
124
125=over 4
126
127=item C<PERL_POLLUTE>
128
129Release 5.005 grandfathered old global symbol names by providing preprocessor
87275199 130macros for extension source compatibility. As of release 5.6, these
e02fdbd2 131preprocessor definitions are not available by default. You need to explicitly
14218588 132compile perl with C<-DPERL_POLLUTE> to get these definitions. For
133extensions still using the old symbols, this option can be
2aea4d40 134specified via MakeMaker:
135
14218588 136 perl Makefile.PL POLLUTE=1
e02fdbd2 137
f29c64d6 138=item C<PERL_IMPLICIT_CONTEXT>
139
140This new build option provides a set of macros for all API functions
141such that an implicit interpreter/thread context argument is passed to
142every API function. As a result of this, something like C<sv_setsv(foo,bar)>
2c2d71f5 143amounts to a macro invocation that actually translates to something like
f29c64d6 144C<Perl_sv_setsv(my_perl,foo,bar)>. While this is generally expected
145to not have any significant source compatibility issues, the difference
146between a macro and a real function call will need to be considered.
147
2c2d71f5 148This means that there B<is> a source compatibility issue as a result of
149this if your extensions attempt to use pointers to any of the Perl API
150functions.
151
f29c64d6 152Note that the above issue is not relevant to the default build of
153Perl, whose interfaces continue to match those of prior versions
154(but subject to the other options described here).
155
651a3225 156PERL_IMPLICIT_CONTEXT is automatically enabled whenever Perl is built
157with one of -Dusethreads, -Dusemultiplicity, or both.
f29c64d6 158
2c2d71f5 159See L<perlguts/"The Perl API"> for detailed information on the
160ramifications of building Perl using this option.
161
86058a2d 162=item C<PERL_POLLUTE_MALLOC>
163
14218588 164Enabling Perl's malloc in release 5.005 and earlier caused
86058a2d 165the namespace of system versions of the malloc family of functions to
14218588 166be usurped by the Perl versions, since by default they used the
167same names.
86058a2d 168
169Besides causing problems on platforms that do not allow these functions to
170be cleanly replaced, this also meant that the system versions could not
171be called in programs that used Perl's malloc. Previous versions of Perl
14218588 172have allowed this behaviour to be suppressed with the HIDEMYMALLOC and
86058a2d 173EMBEDMYMALLOC preprocessor definitions.
174
87275199 175As of release 5.6, Perl's malloc family of functions have default names
86058a2d 176distinct from the system versions. You need to explicitly compile perl with
14218588 177C<-DPERL_POLLUTE_MALLOC> to get the older behaviour. HIDEMYMALLOC
178and EMBEDMYMALLOC have no effect, since the behaviour they enabled is now
86058a2d 179the default.
180
181Note that these functions do B<not> constitute Perl's memory allocation API.
182See L<perlguts/"Memory Allocation"> for further information about that.
183
e02fdbd2 184=item C<PL_na> and C<dTHR> Issues
185
186The C<PL_na> global is now thread local, so a C<dTHR> declaration is needed
14218588 187in the scope in which the global appears. XSUBs should handle this automatically,
e02fdbd2 188but if you have used C<PL_na> in support functions, you either need to
189change the C<PL_na> to a local variable (which is recommended), or put in
190a C<dTHR>.
191
192=back
193
cceca5ed 194=head2 Compatible C Source API Changes
195
196=over
197
198=item C<PATCHLEVEL> is now C<PERL_VERSION>
199
14218588 200The cpp macros C<PERL_REVISION>, C<PERL_VERSION>, and C<PERL_SUBVERSION>
cceca5ed 201are now available by default from perl.h, and reflect the base revision,
14218588 202patchlevel, and subversion respectively. C<PERL_REVISION> had no
cceca5ed 203prior equivalent, while C<PERL_VERSION> and C<PERL_SUBVERSION> were
204previously available as C<PATCHLEVEL> and C<SUBVERSION>.
205
14218588 206The new names cause less pollution of the B<cpp> namespace and reflect what
cceca5ed 207the numbers have come to stand for in common practice. For compatibility,
14218588 208the old names are still supported when F<patchlevel.h> is explicitly
cceca5ed 209included (as required before), so there is no source incompatibility
14218588 210from the change.
cceca5ed 211
a5222a85 212=item Support for C++ exceptions
213
214change#3386, also needs perlguts documentation
215[TODO - Chip Salzenberg <chip@perlsupport.com>]
216
cceca5ed 217=back
218
e02fdbd2 219=head2 Binary Incompatibilities
220
9c107f78 221The default build of this release is binary compatible with the 5.005
222release or its maintenance versions.
f29c64d6 223
224The usethreads or usemultiplicity builds are B<not> binary compatible
225with the corresponding builds in 5.005.
e02fdbd2 226
a5222a85 227=head1 Installation and Configuration Improvements
228
229=head2 New Configure flags
230
231The following new flags may be enabled on the Configure command line
232by running Configure with C<-Dflag>.
233
234 usemultiplicity
67d3893f 235
236 uselongdouble
a5222a85 237 usemorebits
238 uselargefiles
a5222a85 239
67d3893f 240=head2 -Dusethreads and -Duse64bits now more daring
241
242The Configure options enabling the use of threads and the use of
24364-bitness are now more daring in the sense that they no more have
244an explicit list of operating systems of known threads/64-bit
245capabilities. In other words: if your operating system has the
246necessary APIs, you should be able just to go ahead and use them.
247See also L<"64-bit support">.
248
249=head2 Long Doubles
250
251Some platforms have "long doubles", floating point numbers of even
252larger range than ordinary "doubles". To enable using ng doubles for
253Perl's scalars, use -Duselongdouble.
254
255=head2 -Dusemorebits
256
257You can enable both -Duse64bits and -Dlongdouble by -Dusemorebits.
258See also L<"64-bit support">.
259
260=head2 -Duselargefiles
261
262Some platforms support large files, files larger than two gigabytes.
263See L<"Large file support"> for more information.
a5222a85 264
265=head2 installusrbinperl
266
267You can use "Configure -Uinstallusrbinperl" which causes installperl
268to skip installing perl also as /usr/bin/perl. This is useful if you
269prefer not to modify /usr/bin for some reason or another but harmful
270because many scripts assume to find Perl in /usr/bin/perl.
271
272=head2 SOCKS support
273
274You can use "Configure -Dusesocks" which causes Perl to probe
275for the SOCKS proxy protocol library, http://www.socks.nec.com/
276
277=head2 C<-A> flag
278
279You can "post-edit" the Configure variables using the Configure C<-A>
280flag. The editing happens immediately after the platform specific
281hints files have been processed but before the actual configuration
282process starts. Run C<Configure -h> to find out the full C<-A> syntax.
283
67d3893f 284=head2 New Installation Scheme
285
286vendorprefix et al
287[TODO - Andy Dougherty <doughera@lafcol.lafayette.edu>]
288
ba8251e8 289=head1 Core Changes
290
9d73390d 291=head2 Unicode and UTF-8 support
292
293Perl can optionally use UTF-8 as its internal representation for character
a5222a85 294strings. The C<utf8> pragma enables this support in the current lexical
9d73390d 295scope. See L<utf8> for more information.
296
297=head2 Lexically scoped warning categories
298
299You can now control the granularity of warnings emitted by perl at a finer
4438c4b7 300level using the C<use warnings> pragma. See L<warnings> and L<perllexwarn>
0453d815 301for details.
9d73390d 302
a5222a85 303=head2 Lvalue subroutines
304
305WARNING: This is an experimental feature.
306
307change#4081
308[TODO - Ilya Zakharevich <ilya@math.ohio-state.edu>,
309Tuomas Lukka <lukka@fas.harvard.edu>)]
310
311=head2 "our" declarations
312
313An "our" declaration introduces a value that can be best understood
314as a lexically scoped symbolic alias to a global variable in the
315current package. This is mostly useful as an alternative to the
316C<vars> pragma, but also provides the opportunity to introduce
317typing and other attributes for such variables. See L<perlfunc/our>.
318
319=head2 Weak references
320
321WARNING: This is an experimental feature.
322
323change#3385, also need perlguts documentation
324
325[TODO - Tuomas Lukka <lukka@fas.harvard.edu>]
326
becf2bd3 327=head2 File globbing implemented internally
328
329WARNING: This is currently an experimental feature. Interfaces and
330implementation are likely to change.
331
332Perl can be compiled with -DPERL_INTERNAL_GLOB to use the File::Glob
333implementation of the glob() operator. This avoids using an external
334csh process and the problems associated with it.
335
5fdc711f 336=head2 Binary numbers supported
337
4f19785b 338Binary numbers are now supported as literals, in s?printf formats, and
339C<oct()>:
340
14218588 341 $answer = 0b101010;
342 printf "The answer is: %b\n", oct("0b101010");
4f19785b 343
a5222a85 344=head2 Some arrows may be omitted in calls through references
345
346Perl now allows the arrow to be omitted in many constructs
347involving subroutine calls through references. For example,
348C<$foo[10]->('foo')> may now be written C<$foo[10]('foo')>.
349This is rather similar to how the arrow may be omitted from
350C<$foo[10]->{'foo'}>. Note however, that the arrow is still
351required for C<foo(10)->('bar')>.
352
5fdc711f 353=head2 syswrite() ease-of-use
354
a5222a85 355The length argument of C<syswrite()> has become optional.
356
357=head2 Filehandles can be autovivified
358
359The construct C<open(my $fh, ...)> can be used to create filehandles
360more easily. The filehandle will be automatically closed at the end
361of the scope of $fh, provided there are no other references to it. This
362largely eliminates the need for typeglobs when opening filehandles
363that must be passed around, as in the following example:
364
365 sub myopen {
366 open my $fh, "@_"
367 or die "Can't open '@_': $!";
368 return $fh;
369 }
370
371 {
372 my $f = myopen("</etc/motd");
373 print <$f>;
374 # $f implicitly closed here
375 }
376
377[TODO - this idiom needs more pod penetration]
6c67e1bb 378
5fdc711f 379=head2 64-bit support
380
9c107f78 381All platforms that have 64-bit integers either (a) natively as longs
382or ints (b) via special compiler flags (c) using long long are able to
383use "quads" (64-integers) as follows:
384
385=over 4
386
a5222a85 387=item *
388
389constants (decimal, hexadecimal, octal, binary) in the code
390
391=item *
9c107f78 392
a5222a85 393arguments to oct() and hex()
9c107f78 394
a5222a85 395=item *
396
397arguments to print(), printf() and sprintf() (flag prefixes ll, L, q)
398
399=item *
9c107f78 400
a5222a85 401printed as such
9c107f78 402
a5222a85 403=item *
404
405pack() and unpack() "q" and "Q" formats
406
407=item *
408
409in basic arithmetics: + - * / %
410
411=item *
1fad5d67 412
a5222a85 413vec() (but see the below note about bit arithmetics)
9c107f78 414
415=back
416
417Note that unless you have the case (a) you will have to configure
418and compile Perl using the -Duse64bits Configure flag.
419
3175b8cd 420Unfortunately bit arithmetics (&, |, ^, ~, <<, >>) for numbers are not
42164-bit clean, they are explictly forced to be 32-bit. Bit arithmetics
422for bit vectors (created by vec()) are not limited in their width.
d0ba1bd2 423
2d4389e4 424Last but not least: note that due to Perl's habit of always using
d0ba1bd2 425floating point numbers the quads are still not true integers.
426When quads overflow their limits (0...18_446_744_073_709_551_615 unsigned,
427-9_223_372_036_854_775_808...9_223_372_036_854_775_807 signed), they
428are silently promoted to floating point numbers, after which they will
429start losing precision (their lower digits).
2d4389e4 430
431=head2 Large file support
432
433If you have filesystems that support "large files" (files larger than
aa855319 4342 gigabytes), you may now also be able to create and access them from
249b38c6 435Perl. You have to use Configure -Duselargefiles. Turning on the
436large file support turns on also the 64-bit support, for obvious reasons.
2d4389e4 437
eed7fde4 438Note that in addition to requiring a proper file system to do large
439files you may also need to adjust your per-process (or your
440per-system, or per-process-group, or per-user-group) maximum filesize
441limits before running Perl scripts that try to handle large files,
442especially if you intend to write such files.
443
444Finally, in addition to your process/process group maximum filesize
445limits, you may have quota limits on your filesystems that stop you
446(your user id or your user group id) from using large files.
447
448Adjusting your process/user/group/file system/operating system limits
449is outside the scope of Perl core language. For process limits, you
450may try increasing the limits using your shell's limits/limit/ulimit
451command before running Perl. The BSD::Resource extension (not
452included with the standard Perl distribution) may also be of use, it
453offers the getrlimit/setrlimit interface that can be used to adjust
454process resource usage limits, including the maximum filesize limit.
2d4389e4 455
aa855319 456=head2 Long doubles
457
458In some systems you may be able to use long doubles to enhance the
459range of precision of your double precision floating point numbers
460(that is, Perl's numbers). Use Configure -Duselongdouble to enable
461this support (if it is available).
462
463=head2 "more bits"
464
465You can Configure -Dusemorebits to turn on both the 64-bit support
466and the long double support.
09bef843 467
62c18ce2 468=head2 Better syntax checks on parenthesized unary operators
469
470Expressions such as:
471
14218588 472 print defined(&foo,&bar,&baz);
473 print uc("foo","bar","baz");
474 undef($foo,&bar);
62c18ce2 475
7711098a 476used to be accidentally allowed in earlier versions, and produced
14218588 477unpredictable behaviour. Some produced ancillary warnings
478when used in this way; others silently did the wrong thing.
62c18ce2 479
480The parenthesized forms of most unary operators that expect a single
14218588 481argument now ensure that they are not called with more than one
482argument, making the cases shown above syntax errors. The usual
483behaviour of:
62c18ce2 484
14218588 485 print defined &foo, &bar, &baz;
486 print uc "foo", "bar", "baz";
487 undef $foo, &bar;
62c18ce2 488
489remains unchanged. See L<perlop>.
490
3e3318e7 491=head2 POSIX character class syntax [: :] supported
492
493For example to match alphabetic characters use /[[:alpha:]]/.
494See L<perlre> for details.
495
5a929a98 496=head2 Improved C<qw//> operator
8127e0e3 497
26ef7447 498The C<qw//> operator is now evaluated at compile time into a true list
499instead of being replaced with a run time call to C<split()>. This
14218588 500removes the confusing misbehaviour of C<qw//> in scalar context, which
501had inherited that behaviour from split().
26ef7447 502
503Thus:
504
505 $foo = ($bar) = qw(a b c); print "$foo|$bar\n";
506
507now correctly prints "3|a", instead of "2|a".
8127e0e3 508
5a929a98 509=head2 pack() format 'Z' supported
510
511The new format type 'Z' is useful for packing and unpacking null-terminated
512strings. See L<perlfunc/"pack">.
513
4d0c1c44 514=head2 pack() format modifier '!' supported
ee3907e2 515
14218588 516The new format type modifier '!' is useful for packing and unpacking
ee3907e2 517native shorts, ints, and longs. See L<perlfunc/"pack">.
518
f29c64d6 519=head2 pack() and unpack() support counted strings
520
a5222a85 521The template character '/' can be used to specify a counted string
f29c64d6 522type to be packed or unpacked. See L<perlfunc/"pack">.
523
a5222a85 524=head2 Comments in pack() templates
525
526The '#' character in a template introduces a comment up to
527end of the line. This facilitates documentation of pack()
528templates.
529
2b92dfce 530=head2 $^X variables may now have names longer than one character
531
532Formerly, $^X was synonymous with ${"\cX"}, but $^XY was a syntax
533error. Now variable names that begin with a control character may be
534arbitrarily long. However, for compatibility reasons, these variables
535I<must> be written with explicit braces, as C<${^XY}> for example.
14218588 536C<${^XYZ}> is synonymous with ${"\cXYZ"}. Variable names with more
2b92dfce 537than one control character, such as C<${^XY^Z}>, are illegal.
538
14218588 539The old syntax has not changed. As before, `^X' may be either a
540literal control-X character or the two-character sequence `caret' plus
541`X'. When braces are omitted, the variable name stops after the
2b92dfce 542control character. Thus C<"$^XYZ"> continues to be synonymous with
7711098a 543C<$^X . "YZ"> as before.
2b92dfce 544
545As before, lexical variables may not have names beginning with control
546characters. As before, variables whose names begin with a control
14218588 547character are always forced to be in package `main'. All such variables
548are reserved for future extensions, except those that begin with
09bef843 549C<^_>, which may be used by user programs and are guaranteed not to
14218588 550acquire special meaning in any future version of Perl.
2b92dfce 551
09bef843 552=head2 C<use attrs> implicit in subroutine attributes
553
554Formerly, if you wanted to mark a subroutine as being a method call or
555as requiring an automatic lock() when it is entered, you had to declare
556that with a C<use attrs> pragma in the body of the subroutine.
557That can now be accomplished with a declaration syntax, like this:
558
559 sub mymethod : locked, method ;
560 ...
561 sub mymethod : locked, method {
562 ...
563 }
564
565F<AutoSplit.pm> and F<SelfLoader.pm> have been updated to keep the attributes
566with the stubs they provide. See L<attributes>.
567
a5222a85 568=head2 Regular expression improvements
569
570change#2827,2373,2372,2365,1813,1800,4112,4158,4215,4301
571[TODO - Ilya Zakharevich <ilya@math.ohio-state.edu>]
572
573=head2 Overloading improvements
574
575change#2150
576[TODO - Ilya Zakharevich <ilya@math.ohio-state.edu>]
577
578=head2 open() with more than two arguments
579
580[TODO - Ilya Zakharevich <ilya@math.ohio-state.edu>]
581
582=head2 Support for interpolating named characters
583
584change#4052
585[TODO - Ilya Zakharevich <ilya@math.ohio-state.edu>]
586
08cd8952 587=head2 Experimental support for user-hooks in @INC
a5222a85 588
589[TODO - Ken Fox <kfox@ford.com>]
590
591=head2 C<require> and C<do> may be overridden
592
593C<require> and C<do 'file'> operations may be overridden locally
594by importing subroutines of the same name into the current package
595(or globally by importing them into the CORE::GLOBAL:: namespace).
596Overriding C<require> will also affect C<use>, provided the override
597is visible at compile-time.
598See L<perlsub/"Overriding Built-in Functions">.
599
600=head2 New variable $^C reflects C<-c> switch
601
08cd8952 602C<$^C> has a boolean value that reflects whether perl is being run
a5222a85 603in compile-only mode (i.e. via the C<-c> switch). Since
604BEGIN blocks are executed under such conditions, this variable
605enables perl code to determine whether actions that make sense
606only during normal running are warranted. See L<perlvar>.
607
608=head2 Optional Y2K warnings
609
610If Perl is built with the cpp macro C<PERL_Y2KWARN> defined,
611it emits optional warnings when concatenating the number 19
612with another number.
613
614This behavior must be specifically enabled when running Configure.
615See L<INSTALL> and L<README.Y2K>.
616
fbad3eb5 617=head1 Significant bug fixes
618
619=head2 E<lt>HANDLEE<gt> on empty files
620
621With C<$/> set to C<undef>, slurping an empty file returns a string of
14218588 622zero length (instead of C<undef>, as it used to) the first time the
623HANDLE is read. Further reads yield C<undef>.
fbad3eb5 624
625This means that the following will append "foo" to an empty file (it used
14218588 626to do nothing):
fbad3eb5 627
628 perl -0777 -pi -e 's/^/foo/' empty_file
629
14218588 630The behaviour of:
fbad3eb5 631
632 perl -pi -e 's/^/foo/' empty_file
633
634is unchanged (it continues to leave the file empty).
635
0244c3a4 636=head2 C<eval '...'> improvements
637
638Line numbers (as reflected by caller() and most diagnostics) within
639C<eval '...'> were often incorrect when here documents were involved.
640This has been corrected.
641
642Lexical lookups for variables appearing in C<eval '...'> within
643functions that were themselves called within an C<eval '...'> were
14218588 644searching the wrong place for lexicals. The lexical search now
645correctly ends at the subroutine's block boundary.
0244c3a4 646
647Parsing of here documents used to be flawed when they appeared as
648the replacement expression in C<eval 's/.../.../e'>. This has
649been fixed.
650
a5222a85 651=head2 All compilation errors are true errors
652
653Some "errors" encountered at compile time were by neccessity
654generated as warnings followed by eventual termination of the
655program. This enabled more such errors to be reported in a
656single run, rather than causing a hard stop at the first error
657that was encountered.
658
659The mechanism for reporting such errors has been reimplemented
660to queue compile-time errors and report them at the end of the
661compilation as true errors rather than as warnings. This fixes
08cd8952 662cases where error messages leaked through in the form of warnings
663when code was compiled at run time using C<eval STRING>, and
664also allows such errors to be reliably trapped using __DIE__ hooks.
a5222a85 665
45bc9206 666=head2 Automatic flushing of output buffers
667
14218588 668fork(), exec(), system(), qx//, and pipe open()s now flush buffers
669of all files opened for output when the operation
670was attempted. This mostly eliminates confusing
45bc9206 671buffering mishaps suffered by users unaware of how Perl internally
14218588 672handles I/O.
45bc9206 673
af8c498a 674=head2 Better diagnostics on meaningless filehandle operations
675
676Constructs such as C<open(E<lt>FHE<gt>)> and C<close(E<lt>FHE<gt>)>
677are compile time errors. Attempting to read from filehandles that
678were opened only for writing will now produce warnings (just as
679writing to read-only filehandles does).
680
a5222a85 681=head2 Where possible, buffered data discarded from duped input filehandle
682
683C<open(NEW, "E<lt>&OLD")> now attempts to discard any data that
684was previously read and buffered in C<OLD> before duping the handle.
685On platforms where doing this is allowed, the next read operation
686on C<NEW> will return the same data as the corresponding operation
687on C<OLD>. Formerly, it would have returned the data from the start
688of the following disk block instead.
689
690=head2 system(), backticks and pipe open now reflect exec() failure
691
692On Unix and similar platforms, system(), qx() and open(FOO, "cmd |")
693etc., are implemented via fork() and exec(). When the underlying
694exec() fails, earlier versions did not report the error properly,
695since the exec() happened to be in a different process.
696
697The child process now communicates with the parent about the
698error in launching the external command, which allow these
699constructs to return with their usual error value and set $!.
700
701=head2 Implicitly closed filehandles are safer
702
703Sometimes implicitly closed filehandles (as when they are localized,
704and Perl automatically closes them on exiting the scope) could
705inadvertently set $? or $!. This has been corrected.
706
707=head2 C<(\$)> prototype and C<$foo{a}>
708
709An scalar reference prototype now correctly allows a hash or
710array element in that slot.
711
712=head2 Pseudo-hashes work better
713
714Dereferencing some types of reference values in a pseudo-hash,
715such as C<$ph->{foo}[1]>, was accidentally disallowed. This has
716been corrected.
717
718When applied to a pseudo-hash element, exists() now reports whether
719the specified value exists, not merely if the key is valid.
720
721=head2 C<goto &sub> and AUTOLOAD
722
08cd8952 723The C<goto &sub> construct works correctly when C<&sub> happens
a5222a85 724to be autoloaded.
725
726=head2 C<-bareword> allowed under C<use integer>
727
728The autoquoting of barewords preceded by C<-> did not work
729in prior versions when the C<integer> pragma was enabled.
730This has been fixed.
731
732=head2 Boolean assignment operators are legal lvalues
733
734Constructs such as C<($a ||= 2) += 1> are now allowed.
735
736=head2 C<sort $coderef @foo> allowed
737
738sort() did not accept a subroutine reference as the comparison
08cd8952 739function in earlier versions. This is now permitted.
a5222a85 740
741=head2 Failures in DESTROY()
742
743When code in a destructor threw an exception, it went unnoticed
744in earlier versions of Perl, unless someone happened to be
745looking in $@ just after the point the destructor happened to
746run. Such failures are now visible as warnings when warnings are
747enabled.
748
749=head2 Locale bugs fixed
54195c32 750
67d3893f 751printf() and sprintf() previously did reset the numeric locale
752back to the default "C" locale. This has been fixed.
753
754Numbers formatted according to the local numeric locale
755(such as using a decimal comma instead of a decimal dot) caused
756"isn't numeric" warnings, even while the operations accessing
757those numbers produced correct results. The warnings are gone.
54195c32 758
a5222a85 759=head2 Memory leaks
760
761The C<eval 'return sub {...}'> construct could sometimes leak
762memory. This has been fixed.
763
764Operations that aren't filehandle constructors used to leak memory
765when used on invalid filehandles. This has been fixed.
766
767Constructs that modified C<@_> could fail to deallocate values
768in C<@_> and thus leak memory. This has been corrected.
769
770=head2 Spurious subroutine stubs after failed subroutine calls
771
772Perl could sometimes create empty subroutine stubs when a
773subroutine was not found in the package. Such cases stopped
774later method lookups from progressing into base packages.
775This has been corrected.
776
777=head2 Consistent numeric conversions
778
779change#3378,3318
780[TODO - Ilya Zakharevich <ilya@math.ohio-state.edu>]
781
782=head2 Taint failures under C<-U>
783
784When running in unsafe mode, taint violations could sometimes
785cause silent failures. This has been fixed.
786
787=head2 END blocks and the C<-c> switch
788
789Prior versions used to run BEGIN B<and> END blocks when Perl was
790run in compile-only mode. Since this is typically not the expected
08cd8952 791behavior, END blocks are not executed anymore when the C<-c> switch
a5222a85 792is used.
793
794Note that something resembling the previous behavior can still be
795obtained by putting C<BEGIN { $^C = 0; exit; } at the very end of
796the top level source file.
797
798=head2 Potential to leak DATA filehandles
799
800Using the C<__DATA__> token creates an implicit filehandle to
801the file that contains the token. It is the program's
802responsibility to close it when it is done reading from it.
803
804This caveat is now better explained in the documentation.
805See L<perldata>.
806
807=head2 Diagnostics follow STDERR
808
809Diagnostic output now goes to whichever file the C<STDERR> handle
810is pointing at, instead of always going to the underlying C runtime
811library's C<stderr>.
812
813=head2 Other fixes for better diagnostics
814
815Line numbers are suppressed no more (under most likely circumstances)
816during the global destruction phase.
817
818Diagnostics emitted from code running in threads other than the main
819thread are now accompanied by the thread ID.
820
821Embedded null characters in diagnostics now actually show up. They
822used to truncate the message in prior versions.
823
824$foo::a and $foo::b are now exempt from "possible typo" warnings only
825if sort() is encountered in package foo.
826
827Unrecognized alphabetic escapes encountered when parsing quoting
828constructs now generate a warning, since they may take on new
829semantics in later versions of Perl.
830
831=head1 Performance enhancements
832
833=head2 Simple sort() using { $a <=> $b } and the like are optimized
834
08cd8952 835Many common sort() operations using a simple inlined block are now
a5222a85 836optimized for faster performance.
837
838=head2 Optimized assignments to lexical variables
839
840Certain operations in the RHS of assignment statements have been
841optimized to directly set the lexical variable on the LHS,
842eliminating redundant copying overheads.
843
844=head2 Method lookups optimized
845
846[TODO - Chip Salzenberg <chip@perlsupport.com>]
847
848=head2 Faster mechanism to invoke XSUBs
849
850change#4044,4125
851[TODO - Ilya Zakharevich <ilya@math.ohio-state.edu>]
852
853=head2 Perl_malloc() improvements
854
855change#4237
856[TODO - Ilya Zakharevich <ilya@math.ohio-state.edu>]
857
858=head2 Faster subroutine calls
859
860Minor changes in how subroutine calls are handled internally
861provide marginal improvements in performance.
862
863=head1 Platform specific changes
864
865=head2 Additional supported platforms
ba8251e8 866
5fdc711f 867=over 4
868
869=item *
870
6c67e1bb 871VM/ESA is now supported.
872
5fdc711f 873=item *
874
ee3907e2 875Siemens BS2000 is now supported under the POSIX Shell.
876
877=item *
878
2bb14304 879The Mach CThreads (NEXTSTEP, OPENSTEP) are now supported by the Thread
880extension.
6c67e1bb 881
5fdc711f 882=item *
883
ee3907e2 884GNU/Hurd is now supported.
6c67e1bb 885
00ad96e1 886=item *
887
888Rhapsody is now supported.
889
27806c82 890=item *
891
892EPOC is is now supported (on Psion 5).
893
5fdc711f 894=back
895
a5222a85 896=head2 DOS
897
898[TODO - Laszlo Molnar <laszlo.molnar@eth.ericsson.se>]
899
900=head2 OS/2
901
902[TODO - Ilya Zakharevich <ilya@math.ohio-state.edu>]
903
904=head2 VMS
905
906[TODO - Charles Bailey <bailey@newman.upenn.edu>]
907
908=head2 Win32
909
910Site library searches failed to look for ".../site/5.XXX/lib"
911if ".../site/5.XXXYY/lib" wasn't found. This has been corrected.
912
913When given a pathname that consists only of a drivename, such
914as C<A:>, opendir() and stat() now use the current working
915directory for the drive rather than the drive root.
916
917The builtin XSUB functions in the Win32:: namespace are
918documented. See L<Win32>.
919
920$^X now contains the full path name of the running executable.
921
922A Win32::GetLongPathName() function is provided to complement
923Win32::GetFullPathName() and Win32::GetShortPathName(). See L<Win32>.
924
925POSIX::uname() is supported.
926
927system(1,...) now returns true process IDs rather than process
928handles. kill() accepts any real process id, rather than strictly
929return values from system(1,...).
930
931The C<Shell> module is supported.
932
883d36a6 933Rudimentary support for building under command.com in Windows 95
934has been added.
935
a5222a85 936[TODO - GSAR]
937
6c67e1bb 938=head1 New tests
939
940=over 4
941
09bef843 942=item lib/attrs
943
944Compatibility tests for C<sub : attrs> vs the older C<use attrs>.
945
946=item lib/io_const
6c67e1bb 947
948IO constants (SEEK_*, _IO*).
14218588 949
09bef843 950=item lib/io_dir
6c67e1bb 951
952Directory-related IO methods (new, read, close, rewind, tied delete).
953
09bef843 954=item lib/io_multihomed
6c67e1bb 955
956INET sockets with multi-homed hosts.
957
09bef843 958=item lib/io_poll
6c67e1bb 959
960IO poll().
961
09bef843 962=item lib/io_unix
6c67e1bb 963
964UNIX sockets.
965
09bef843 966=item op/attrs
967
968Regression tests for C<my ($x,@y,%z) : attrs> and <sub : attrs>.
969
6c67e1bb 970=item op/filetest
971
972File test operators.
973
974=item op/lex_assign
975
5fdc711f 976Verify operations that access pad objects (lexicals and temporaries).
6c67e1bb 977
978=back
e02fdbd2 979
ba8251e8 980=head1 Modules and Pragmata
981
3e8c4fa0 982=head2 Modules
983
b7d8191e 984=over 4
985
09bef843 986=item attributes
987
988While used internally by Perl as a pragma, this module also
989provides a way to fetch subroutine and variable attributes.
990See L<attributes>.
991
a5222a85 992=item B
993
994[TODO - Vishal Bhatia <vishal@gol.com>,
995Nick Ing-Simmons <nick@ni-s.u-net.com>]
996
f29c64d6 997=item ByteLoader
998
a5222a85 999The ByteLoader is a dedicated extension to generate and run
f29c64d6 1000Perl bytecode. See L<ByteLoader>.
1001
1002=item B
1003
1004The Perl Compiler suite has been extensively reworked for this
1005release.
1006
a5222a85 1007=item constant
1008
1009References can now be used. See L<constant>.
1010
1011=item charnames
1012
1013change#4052
1014[TODO - Ilya Zakharevich <ilya@math.ohio-state.edu>]
1015
1016=item Data::Dumper
1017
1018A C<Maxdepth> setting can be specified to avoid venturing
1019too deeply into data structures that may be very deep.
1020See L<Data::Dumper>.
1021
1022Dumping C<qr//> objects works correctly.
1023
1024=item DB
1025
1026C<DB> is an experimental module that exposes a clean abstraction
1027to Perl's debugging API.
1028
1029=item DB_File
1030
1031[TODO - Paul Marquess <paul.marquess@bt.com>]
1032
f29c64d6 1033=item Devel::DProf
1034
a5222a85 1035Devel::DProf, a Perl source code profiler has been added. See L<DProf>.
f29c64d6 1036
b7d8191e 1037=item Dumpvalue
1038
1039Added Dumpvalue module provides screen dumps of Perl data.
1040
1041=item Benchmark
1042
868cb350 1043You can now run tests for I<n> seconds instead of guessing the right
14218588 1044number of tests to run: e.g. timethese(-5, ...) will run each
1045code for at least 5 CPU seconds. Zero as the "number of repetitions"
155776c0 1046means "for at least 3 CPU seconds". The output format has also
14218588 1047changed. For example:
155776c0 1048
1049use Benchmark;$x=3;timethese(-5,{a=>sub{$x*$x},b=>sub{$x**2}})
1050
1051will now output something like this:
1052
1053Benchmark: running a, b, each for at least 5 CPU seconds...
1054 a: 5 wallclock secs ( 5.77 usr + 0.00 sys = 5.77 CPU) @ 200551.91/s (n=1156516)
1055 b: 4 wallclock secs ( 5.00 usr + 0.02 sys = 5.02 CPU) @ 159605.18/s (n=800686)
1056
1057New features: "each for at least N CPU seconds...", "wallclock secs",
1058and the "@ operations/CPU second (n=operations)".
b7d8191e 1059
a5222a85 1060change#4265,4266,4292
1061[TODO - Barrie Slaymaker <barries@slaysys.com>]
1062
f505c983 1063=item Devel::Peek
1064
1065The Devel::Peek module provides access to the internal representation
14218588 1066of Perl variables and data. It is a data debugging tool for the XS programmer.
f505c983 1067
a5222a85 1068=item ExtUtils::MakeMaker
1069
1070change#4135, also needs docs in module pod
1071[TODO - Ilya Zakharevich <ilya@math.ohio-state.edu>]
1072
b7d8191e 1073=item Fcntl
1074
1075More Fcntl constants added: F_SETLK64, F_SETLKW64, O_LARGEFILE for
14218588 1076large (more than 4G) file access (64-bit support is not yet
b7d8191e 1077working, though, so no need to get overly excited), Free/Net/OpenBSD
1078locking behaviour flags F_FLOCK, F_POSIX, Linux F_SHLCK, and
1079O_ACCMODE: the mask of O_RDONLY, O_WRONLY, and O_RDWR.
1080
a5222a85 1081=item File::Compare
1082
1083A compare_text() function has been added, which allows custom
1084comparison functions. See L<File::Compare>.
1085
1086=item File::Find
1087
1088File::Find now works correctly when the wanted() function is either
1089autoloaded or is a symbolic reference.
1090
08cd8952 1091A bug that caused File::Find to lose track of the working directory
a5222a85 1092when pruning top-level directories has been fixed.
1093
becf2bd3 1094=item File::Glob
1095
1096This extension implements BSD-style file globbing. It will also be
1097used for the internal implementation of the glob() operator if
1098Perl was compiled with -DPERL_INTERNAL_GLOB. See L<File::Glob>.
1099
f505c983 1100=item File::Spec
1101
1102New methods have been added to the File::Spec module: devnull() returns
19799a22 1103the name of the null device (/dev/null on Unix) and tmpdir() the name of
14218588 1104the temp directory (normally /tmp on Unix). There are now also methods
f505c983 1105to convert between absolute and relative filenames: abs2rel() and
14218588 1106rel2abs(). For compatibility with operating systems that specify volume
1107names in file paths, the splitpath(), splitdir(), and catdir() methods
f505c983 1108have been added.
1109
1110=item File::Spec::Functions
1111
1112The new File::Spec::Functions modules provides a function interface
14218588 1113to the File::Spec module. Allows shorthand
f505c983 1114
14218588 1115 $fullname = catfile($dir1, $dir2, $file);
f505c983 1116
1117instead of
1118
14218588 1119 $fullname = File::Spec->catfile($dir1, $dir2, $file);
f505c983 1120
a5222a85 1121=item Getopt::Long
1122
1123[TODO - Johan Vromans <jvromans@squirrel.nl>]
1124
1125=item IO
1126
1127write() and syswrite() will now accept a single-argument
1128form of the call, for consistency with Perl's syswrite().
1129
1130You can now create a TCP-based IO::Socket::INET without forcing
1131a connect attempt. This allows you to configure its options
1132(like making it non-blocking) and then call connect() manually.
1133
1134A bug that prevented the IO::Socket::protocol() accessor
1135from ever returning the correct value has been corrected.
1136
1137=item JPL
1138
1139Java Perl Lingo is now distributed with Perl. See jpl/README
1140for more information.
1141
883d36a6 1142=item lib
1143
1144C<use lib> now weeds out any trailing duplicate entries.
1145C<no lib> removes all named entries.
1146
e16b8f49 1147=item Math::BigInt
1148
14218588 1149The logical operations C<E<lt>E<lt>>, C<E<gt>E<gt>>, C<&>, C<|>,
e16b8f49 1150and C<~> are now supported on bigints.
1151
b7d8191e 1152=item Math::Complex
7711098a 1153
14218588 1154The accessor methods Re, Im, arg, abs, rho, and theta can now also
868cb350 1155act as mutators (accessor $z->Re(), mutator $z->Re(3)).
b7d8191e 1156
1157=item Math::Trig
1158
14218588 1159A little bit of radial trigonometry (cylindrical and spherical),
1160radial coordinate conversions, and the great circle distance were added.
b7d8191e 1161
a5222a85 1162=item Pod::Parser
1163
1164[TODO - Brad Appleton <bradapp@enteract.com>]
1165
1166=item Pod::Text and Pod::Man
1167
1168[TODO - Russ Allbery <rra@stanford.edu>]
1169
f4b9d880 1170=item SDBM_File
1171
1172An EXISTS method has been added to this module (and sdbm_exists() has
1173been added to the underlying sdbm library), so one can now call exists
14218588 1174on an SDBM_File tied hash and get the correct result, rather than a
f4b9d880 1175runtime error.
1176
a5222a85 1177A bug that may have caused data loss when more than one disk block
1178happens to be read from the database in a single FETCH() has been
1179fixed.
1180
06ef4121 1181=item Time::Local
1182
1183The timelocal() and timegm() functions used to silently return bogus
1184results when the date exceeded the machine's integer range. They
a5222a85 1185now consistently croak() if the date falls in an unsupported range.
06ef4121 1186
8fe0a5c4 1187=item Win32
1188
1189The error return value in list context has been changed for all functions
14218588 1190that return a list of values. Previously these functions returned a list
1191with a single element C<undef> if an error occurred. Now these functions
1192return the empty list in these situations. This applies to the following
8fe0a5c4 1193functions:
1194
14218588 1195 Win32::FsType
1196 Win32::GetOSVersion
8fe0a5c4 1197
1198The remaining functions are unchanged and continue to return C<undef> on
1199error even in list context.
1200
1201The Win32::SetLastError(ERROR) function has been added as a complement
1202to the Win32::GetLastError() function.
1203
1204The new Win32::GetFullPathName(FILENAME) returns the full absolute
14218588 1205pathname for FILENAME in scalar context. In list context it returns
1206a two-element list containing the fully qualified directory name and
8fe0a5c4 1207the filename.
1208
9fe6733a 1209=item DBM Filters
1210
1211A new feature called "DBM Filters" has been added to all the
14218588 1212DBM modules--DB_File, GDBM_File, NDBM_File, ODBM_File, and SDBM_File.
1213DBM Filters add four new methods to each DBM module:
9fe6733a 1214
1215 filter_store_key
1216 filter_store_value
1217 filter_fetch_key
1218 filter_fetch_value
1219
14218588 1220These can be used to filter key-value pairs before the pairs are
9fe6733a 1221written to the database or just after they are read from the database.
1222See L<perldbmfilter> for further information.
1223
b7d8191e 1224=back
3e8c4fa0 1225
1226=head2 Pragmata
1227
09bef843 1228C<use attrs> is now obsolescent, and is only provided for
1229backward-compatibility. It's been replaced by the C<sub : attributes>
1230syntax. See L<perlsub/"Subroutine Attributes"> and L<attributes>.
1231
14218588 1232C<use utf8> to enable UTF-8 and Unicode support.
43165c05 1233
1234C<use caller 'encoding'> allows modules to inherit pragmatic attributes
1235from the caller's context. C<encoding> is currently the only supported
1236attribute.
9d73390d 1237
4438c4b7 1238Lexical warnings pragma, C<use warnings;>, to control optional warnings.
a5222a85 1239See L<perllexwarn>.
6c67e1bb 1240
67d3893f 1241C<use filetest> to control the behaviour of filetests (C<-r> C<-w>
1242...). Currently only one subpragma implemented, "use filetest
1243'access';", that uses access(2) or equivalent to check permissions
1244instead of using stat(2) as usual. This matters in filesystems
1245where there are ACLs (access control lists): the stat(2) might lie,
1246but access(2) knows better.
6c67e1bb 1247
ba8251e8 1248=head1 Utility Changes
1249
a5222a85 1250=head2 h2ph
1251
1252[TODO - Kurt Starsinic <kstar@chapin.edu>]
1253
1254=head2 perlcc
1255
1256C<perlcc> now supports the C and Bytecode backends. By default,
1257it generates output from the simple C backend rather than the
1258optimized C backend.
1259
1260Support for non-Unix platforms has been improved.
1261
1262=head2 h2xs
1263
1264change#4232
1265[TODO - Ilya Zakharevich <ilya@math.ohio-state.edu>]
e02fdbd2 1266
ba8251e8 1267=head1 Documentation Changes
1268
5fdc711f 1269=over 4
1270
883d36a6 1271=item perlcompile.pod
1272
1273An introduction to using the Perl Compiler suite.
1274
1275=item perlhack.pod
1276
1277Some guidelines for hacking the Perl source code.
1278
5fdc711f 1279=item perlopentut.pod
f8284313 1280
5fdc711f 1281A tutorial on using open() effectively.
1282
1283=item perlreftut.pod
1284
1285A tutorial that introduces the essentials of references.
1286
14218588 1287=item perltootc.pod
1288
1289A tutorial on managing class data for object modules.
1290
5fdc711f 1291=back
e02fdbd2 1292
ba8251e8 1293=head1 New Diagnostics
1294
a99ba403 1295=over 4
1296
09bef843 1297=item "my sub" not yet implemented
1298
1299(F) Lexically scoped subroutines are not yet implemented. Don't try that
1300yet.
1301
a99ba403 1302=item '!' allowed only after types %s
1303
1304(F) The '!' is allowed in pack() and unpack() only after certain types.
1305See L<perlfunc/pack>.
1306
1307=item / cannot take a count
1308
1309(F) You had an unpack template indicating a counted-length string,
1310but you have also specified an explicit size for the string.
1311See L<perlfunc/pack>.
1312
1313=item / must be followed by a, A or Z
1314
1315(F) You had an unpack template indicating a counted-length string,
1316which must be followed by one of the letters a, A or Z
1317to indicate what sort of string is to be unpacked.
1318See L<perlfunc/pack>.
1319
1320=item / must be followed by a*, A* or Z*
1321
1322(F) You had an pack template indicating a counted-length string,
1323Currently the only things that can have their length counted are a*, A* or Z*.
1324See L<perlfunc/pack>.
1325
1326=item / must follow a numeric type
1327
1328(F) You had an unpack template that contained a '#',
1329but this did not follow some numeric unpack specification.
1330See L<perlfunc/pack>.
1331
1332=item Repeat count in pack overflows
1333
1334(F) You can't specify a repeat count so large that it overflows
1335your signed integers. See L<perlfunc/pack>.
1336
1337=item Repeat count in unpack overflows
1338
1339(F) You can't specify a repeat count so large that it overflows
1340your signed integers. See L<perlfunc/unpack>.
1341
1342=item /%s/: Unrecognized escape \\%c passed through
1343
1344(W) You used a backslash-character combination which is not recognized
1345by Perl. This combination appears in an interpolated variable or a
1346C<'>-delimited regular expression.
1347
1348=item /%s/ should probably be written as "%s"
1349
1350(W) You have used a pattern where Perl expected to find a string,
1351like in the first argument to C<join>. Perl will treat the true
1352or false result of matching the pattern against $_ as the string,
1353which is probably not what you had in mind.
1354
1355=item %s() called too early to check prototype
1356
1357(W) You've called a function that has a prototype before the parser saw a
1358definition or declaration for it, and Perl could not check that the call
1359conforms to the prototype. You need to either add an early prototype
1360declaration for the subroutine in question, or move the subroutine
1361definition ahead of the call to get proper prototype checking. Alternatively,
1362if you are certain that you're calling the function correctly, you may put
1363an ampersand before the name to avoid the warning. See L<perlsub>.
1364
09bef843 1365=item %s package attribute may clash with future reserved word: %s
1366
1367(W) A lowercase attribute name was used that had a package-specific handler.
1368That name might have a meaning to Perl itself some day, even though it
1369doesn't yet. Perhaps you should use a mixed-case attribute name, instead.
1370See L<attributes>.
1371
a99ba403 1372=item (in cleanup) %s
6b121555 1373
a99ba403 1374(W) This prefix usually indicates that a DESTROY() method raised
1375the indicated exception. Since destructors are usually called by
1376the system at arbitrary points during execution, and often a vast
1377number of times, the warning is issued only once for any number
1378of failures that would otherwise result in the same message being
1379repeated.
1380
1381Failure of user callbacks dispatched using the C<G_KEEPERR> flag
1382could also result in this warning. See L<perlcall/G_KEEPERR>.
1383
1384=item <> should be quotes
1385
1386(F) You wrote C<require E<lt>fileE<gt>> when you should have written
1387C<require 'file'>.
1388
1389=item Attempt to join self
1390
1391(F) You tried to join a thread from within itself, which is an
1392impossible task. You may be joining the wrong thread, or you may
1393need to move the join() to some other thread.
1394
1395=item Bad evalled substitution pattern
1396
1397(F) You've used the /e switch to evaluate the replacement for a
1398substitution, but perl found a syntax error in the code to evaluate,
1399most likely an unexpected right brace '}'.
1400
1401=item Bad realloc() ignored
1402
1403(S) An internal routine called realloc() on something that had never been
1404malloc()ed in the first place. Mandatory, but can be disabled by
1405setting environment variable C<PERL_BADFREE> to 1.
1406
1407=item Binary number > 0b11111111111111111111111111111111 non-portable
1408
1409(W) The binary number you specified is larger than 2**32-1
1410(4294967295) and therefore non-portable between systems. See
1411L<perlport> for more on portability concerns.
1412
1413=item Bit vector size > 32 non-portable
1414
1415(W) Using bit vector sizes larger than 32 is non-portable.
1416
1417=item Buffer overflow in prime_env_iter: %s
1418
1419(W) A warning peculiar to VMS. While Perl was preparing to iterate over
1420%ENV, it encountered a logical name or symbol definition which was too long,
1421so it was truncated to the string shown.
1422
1423=item Can't check filesystem of script "%s"
1424
1425(P) For some reason you can't check the filesystem of the script for nosuid.
1426
1427=item Can't modify non-lvalue subroutine call
1428
1429(F) Subroutines used in lvalue context should be marked as such, see
1430L<perlsub/"Lvalue subroutines">.
1431
1432=item Can't read CRTL environ
1433
1434(S) A warning peculiar to VMS. Perl tried to read an element of %ENV
1435from the CRTL's internal environment array and discovered the array was
1436missing. You need to figure out where your CRTL misplaced its environ
1437or define F<PERL_ENV_TABLES> (see L<perlvms>) so that environ is not searched.
1438
1439=item Can't remove %s: %s, skipping file
1440
1441(S) You requested an inplace edit without creating a backup file. Perl
1442was unable to remove the original file to replace it with the modified
1443file. The file was left unmodified.
1444
1445=item Can't return %s from lvalue subroutine
1446
1447(F) Perl detected an attempt to return illegal lvalues (such
1448as temporary or readonly values) from a subroutine used as an lvalue.
1449This is not allowed.
1450
1451=item Can't weaken a nonreference
1452
1453(F) You attempted to weaken something that was not a reference. Only
1454references can be weakened.
1455
1456=item Character class [:%s:] unknown
1457
1458(F) The class in the character class [: :] syntax is unknown.
1459
1460=item Character class syntax [%s] belongs inside character classes
1461
1462(W) The character class constructs [: :], [= =], and [. .] go
1463I<inside> character classes, the [] are part of the construct,
1464for example: /[012[:alpha:]345]/. Note that the last two constructs
1465are not currently implemented, they are placeholders for future extensions.
1466
1467=item Constant is not %s reference
1468
1469(F) A constant value (perhaps declared using the C<use constant> pragma)
1470is being dereferenced, but it amounts to the wrong type of reference. The
1471message indicates the type of reference that was expected. This usually
1472indicates a syntax error in dereferencing the constant value.
1473See L<perlsub/"Constant Functions"> and L<constant>.
1474
1475=item constant(%s): %%^H is not localized
1476
1477(F) When setting compile-time-lexicalized hash %^H one should set the
1478corresponding bit of $^H as well.
1479
1480=item constant(%s): %s
1481
1482(F) Compile-time-substitutions (such as overloaded constants and
1483character names) were not correctly set up.
1484
1485=item defined(@array) is deprecated
1486
1487(D) defined() is not usually useful on arrays because it checks for an
1488undefined I<scalar> value. If you want to see if the array is empty,
1489just use C<if (@array) { # not empty }> for example.
1490
1491=item defined(%hash) is deprecated
1492
1493(D) defined() is not usually useful on hashes because it checks for an
1494undefined I<scalar> value. If you want to see if the hash is empty,
1495just use C<if (%hash) { # not empty }> for example.
1496
1497=item Did not produce a valid header
1498
1499See Server error.
1500
1501=item Document contains no data
1502
1503See Server error.
1504
1505=item entering effective %s failed
1506
1507(F) While under the C<use filetest> pragma, switching the real and
1508effective uids or gids failed.
6b121555 1509
af8c498a 1510=item Filehandle %s opened only for output
6b121555 1511
af8c498a 1512(W) You tried to read from a filehandle opened only for writing. If you
1513intended it to be a read-write filehandle, you needed to open it with
1514"+E<lt>" or "+E<gt>" or "+E<gt>E<gt>" instead of with "E<lt>" or nothing. If
1515you intended only to read from the file, use "E<lt>". See
1516L<perlfunc/open>.
e02fdbd2 1517
a99ba403 1518=item Hexadecimal number > 0xffffffff non-portable
1519
1520(W) The hexadecimal number you specified is larger than 2**32-1
1521(4294967295) and therefore non-portable between systems. See
1522L<perlport> for more on portability concerns.
1523
1524=item Ill-formed CRTL environ value "%s"
1525
1526(W) A warning peculiar to VMS. Perl tried to read the CRTL's internal
1527environ array, and encountered an element without the C<=> delimiter
1528used to spearate keys from values. The element is ignored.
1529
1530=item Ill-formed message in prime_env_iter: |%s|
1531
1532(W) A warning peculiar to VMS. Perl tried to read a logical name
1533or CLI symbol definition when preparing to iterate over %ENV, and
1534didn't see the expected delimiter between key and value, so the
1535line was ignored.
1536
1537=item Illegal binary digit %s
1538
1539(F) You used a digit other than 0 and 1 in a binary number.
1540
1541=item Illegal binary digit %s ignored
1542
1543(W) You may have tried to use a digit other than 0 or 1 in a binary number.
1544Interpretation of the binary number stopped before the offending digit.
1545
1546=item Illegal number of bits in vec
1547
1548(F) The number of bits in vec() (the third argument) must be a power of
1549two from 1 to 32 (or 64, if your platform supports that).
1550
1551=item Integer overflow in %s number
1552
1553(W) The hexadecimal, octal or binary number you have specified either
1554as a literal in your code or as a scalar is too big for your
1555architecture, and has been converted to a floating point number. On a
155632-bit architecture the largest hexadecimal, octal or binary number
1557representable without overflow is 0xFFFFFFFF, 037777777777, or
15580b11111111111111111111111111111111 respectively. Note that Perl
1559transparently promotes all numbers to a floating point representation
1560internally--subject to loss of precision errors in subsequent
1561operations.
1562
09bef843 1563=item Invalid %s attribute: %s
1564
1565The indicated attribute for a subroutine or variable was not recognized
1566by Perl or by a user-supplied handler. See L<attributes>.
1567
1568=item Invalid %s attributes: %s
1569
1570The indicated attributes for a subroutine or variable were not recognized
1571by Perl or by a user-supplied handler. See L<attributes>.
1572
1573=item Invalid separator character %s in attribute list
1574
1575(F) Something other than a comma or whitespace was seen between the
1576elements of an attribute list. If the previous attribute
1577had a parenthesised parameter list, perhaps that list was terminated
1578too soon. See L<attributes>.
1579
a99ba403 1580=item Invalid separator character %s in subroutine attribute list
1581
1582(F) Something other than a comma or whitespace was seen between the
1583elements of a subroutine attribute list. If the previous attribute
1584had a parenthesised parameter list, perhaps that list was terminated
1585too soon.
1586
1587=item leaving effective %s failed
1588
1589(F) While under the C<use filetest> pragma, switching the real and
1590effective uids or gids failed.
1591
1592=item Lvalue subs returning %s not implemented yet
1593
1594(F) Due to limitations in the current implementation, array and hash
1595values cannot be returned in subroutines used in lvalue context.
1596See L<perlsub/"Lvalue subroutines">.
1597
1598=item Method %s not permitted
1599
1600See Server error.
1601
1602=item Missing %sbrace%s on \N{}
1603
1604(F) Wrong syntax of character name literal C<\N{charname}> within
1605double-quotish context.
1606
06eaf0bc 1607=item Missing command in piped open
1608
1609(W) You used the C<open(FH, "| command")> or C<open(FH, "command |")>
1610construction, but the command was missing or blank.
1611
09bef843 1612=item Missing name in "my sub"
1613
1614(F) The reserved syntax for lexically scoped subroutines requires that they
1615have a name with which they can be found.
1616
a99ba403 1617=item no UTC offset information; assuming local time is UTC
1618
1619(S) A warning peculiar to VMS. Perl was unable to find the local
1620timezone offset, so it's assuming that local system time is equivalent
1621to UTC. If it's not, define the logical name F<SYS$TIMEZONE_DIFFERENTIAL>
1622to translate to the number of seconds which need to be added to UTC to
1623get local time.
1624
1625=item Octal number > 037777777777 non-portable
1626
1627(W) The octal number you specified is larger than 2**32-1 (4294967295)
1628and therefore non-portable between systems. See L<perlport> for more
1629on portability concerns.
1630
1631See also L<perlport> for writing portable code.
1632
1633=item panic: del_backref
1634
1635(P) Failed an internal consistency check while trying to reset a weak
1636reference.
1637
1638=item panic: kid popen errno read
1639
1640(F) forked child returned an incomprehensible message about its errno.
1641
1642=item panic: magic_killbackrefs
1643
1644(P) Failed an internal consistency check while trying to reset all weak
1645references to an object.
1646
1647=item Possible Y2K bug: %s
1648
1649(W) You are concatenating the number 19 with another number, which
1650could be a potential Year 2000 problem.
1651
1652=item Premature end of script headers
1653
1654See Server error.
1655
1656=item realloc() of freed memory ignored
1657
1658(S) An internal routine called realloc() on something that had already
1659been freed.
1660
1661=item Reference is already weak
1662
1663(W) You have attempted to weaken a reference that is already weak.
1664Doing so has no effect.
1665
1666=item setpgrp can't take arguments
1667
1668(F) Your system has the setpgrp() from BSD 4.2, which takes no arguments,
1669unlike POSIX setpgid(), which takes a process ID and process group ID.
1670
1671=item Strange *+?{} on zero-length expression
1672
1673(W) You applied a regular expression quantifier in a place where it
1674makes no sense, such as on a zero-width assertion.
1675Try putting the quantifier inside the assertion instead. For example,
1676the way to match "abc" provided that it is followed by three
1677repetitions of "xyz" is C</abc(?=(?:xyz){3})/>, not C</abc(?=xyz){3}/>.
1678
1679=item switching effective %s is not implemented
1680
1681(F) While under the C<use filetest> pragma, we cannot switch the
1682real and effective uids or gids.
1683
1684=item This Perl can't reset CRTL eviron elements (%s)
1685
1686=item This Perl can't set CRTL environ elements (%s=%s)
1687
1688(W) Warnings peculiar to VMS. You tried to change or delete an element
1689of the CRTL's internal environ array, but your copy of Perl wasn't
1690built with a CRTL that contained the setenv() function. You'll need to
1691rebuild Perl with a CRTL that does, or redefine F<PERL_ENV_TABLES> (see
1692L<perlvms>) so that the environ array isn't the target of the change to
1693%ENV which produced the warning.
1694
1695=item Unknown open() mode '%s'
1696
1697(F) The second argument of 3-arguments open is not one from the list
1698of C<L<lt>>, C<L<gt>>, C<E<gt>E<gt>>, C<+L<lt>>, C<+L<gt>>,
1699C<+E<gt>E<gt>>, C<-|>, C<|-> of possible open() modes.
1700
1701=item Unknown process %x sent message to prime_env_iter: %s
1702
1703(P) An error peculiar to VMS. Perl was reading values for %ENV before
1704iterating over it, and someone else stuck a message in the stream of
1705data Perl expected. Someone's very confused, or perhaps trying to
1706subvert Perl's population of %ENV for nefarious purposes.
1707
af8c498a 1708=item Unrecognized escape \\%c passed through
1709
1710(W) You used a backslash-character combination which is not recognized
1711by Perl.
1712
09bef843 1713=item Unterminated attribute parameter in attribute list
1714
1715(F) The lexer saw an opening (left) parenthesis character while parsing an
1716attribute list, but the matching closing (right) parenthesis
1717character was not found. You may need to add (or remove) a backslash
1718character to get your parentheses to balance. See L<attributes>.
1719
1720=item Unterminated attribute list
1721
1722(F) The lexer found something other than a simple identifier at the start
1723of an attribute, and it wasn't a semicolon or the start of a
1724block. Perhaps you terminated the parameter list of the previous attribute
1725too soon. See L<attributes>.
1726
09bef843 1727=item Unterminated attribute parameter in subroutine attribute list
1728
1729(F) The lexer saw an opening (left) parenthesis character while parsing a
1730subroutine attribute list, but the matching closing (right) parenthesis
1731character was not found. You may need to add (or remove) a backslash
1732character to get your parentheses to balance.
1733
1734=item Unterminated subroutine attribute list
1735
1736(F) The lexer found something other than a simple identifier at the start
1737of a subroutine attribute, and it wasn't a semicolon or the start of a
1738block. Perhaps you terminated the parameter list of the previous attribute
1739too soon.
1740
a99ba403 1741=item Value of CLI symbol "%s" too long
eb6e2d6f 1742
a99ba403 1743(W) A warning peculiar to VMS. Perl tried to read the value of an %ENV
1744element from a CLI symbol table, and found a resultant string longer
1745than 1024 characters. The return value has been truncated to 1024
1746characters.
eb6e2d6f 1747
a99ba403 1748=item Version number must be a constant number
ba8251e8 1749
a99ba403 1750(P) The attempt to translate a C<use Module n.n LIST> statement into
1751its equivalent C<BEGIN> block found an internal inconsistency with
1752the version number.
1753
1754=back
27806c82 1755
a5222a85 1756=head1 Obsolete Diagnostics
3175b8cd 1757
a99ba403 1758=over 4
1759
1760=item Character class syntax [: :] is reserved for future extensions
1761
1762(W) Within regular expression character classes ([]) the syntax beginning
1763with "[:" and ending with ":]" is reserved for future extensions.
1764If you need to represent those character sequences inside a regular
1765expression character class, just quote the square brackets with the
1766backslash: "\[:" and ":\]".
1767
1768=item Ill-formed logical name |%s| in prime_env_iter
1769
1770(W) A warning peculiar to VMS. A logical name was encountered when preparing
1771to iterate over %ENV which violates the syntactic rules governing logical
1772names. Because it cannot be translated normally, it is skipped, and will not
1773appear in %ENV. This may be a benign occurrence, as some software packages
1774might directly modify logical name tables and introduce nonstandard names,
1775or it may indicate that a logical name table has been corrupted.
1776
1777=item regexp too big
1778
1779(F) The current implementation of regular expressions uses shorts as
1780address offsets within a string. Unfortunately this means that if
1781the regular expression compiles to longer than 32767, it'll blow up.
1782Usually when you want a regular expression this big, there is a better
1783way to do it with multiple statements. See L<perlre>.
1784
1785=item Use of "$$<digit>" to mean "${$}<digit>" is deprecated
1786
1787(D) Perl versions before 5.004 misinterpreted any type marker followed
1788by "$" and a digit. For example, "$$0" was incorrectly taken to mean
1789"${$}0" instead of "${$0}". This bug is (mostly) fixed in Perl 5.004.
1790
1791However, the developers of Perl 5.004 could not fix this bug completely,
1792because at least two widely-used modules depend on the old meaning of
1793"$$0" in a string. So Perl 5.004 still interprets "$$<digit>" in the
1794old (broken) way inside strings; but it generates this message as a
1795warning. And in Perl 5.005, this special treatment will cease.
1796
1797=back
3175b8cd 1798
ba8251e8 1799=head1 BUGS
1800
1801If you find what you think is a bug, you might check the headers of
14218588 1802articles recently posted to the comp.lang.perl.misc newsgroup.
ba8251e8 1803There may also be information at http://www.perl.com/perl/, the Perl
1804Home Page.
1805
1806If you believe you have an unreported bug, please run the B<perlbug>
14218588 1807program included with your release. Make sure to trim your bug down
ba8251e8 1808to a tiny but sufficient test case. Your bug report, along with the
14218588 1809output of C<perl -V>, will be sent off to perlbug@perl.com to be
ba8251e8 1810analysed by the Perl porting team.
1811
1812=head1 SEE ALSO
1813
1814The F<Changes> file for exhaustive details on what changed.
1815
1816The F<INSTALL> file for how to build Perl.
1817
1818The F<README> file for general stuff.
1819
1820The F<Artistic> and F<Copying> files for copyright information.
1821
1822=head1 HISTORY
1823
a5222a85 1824Written by Gurusamy Sarathy <F<gsar@activestate.com>>, with many
1825contributions from The Perl Porters.
ba8251e8 1826
1827Send omissions or corrections to <F<perlbug@perl.com>>.
1828
1829=cut