home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl560.zip / pod / perldelta.pod < prev    next >
Text File  |  2000-03-22  |  105KB  |  2,968 lines

  1. =head1 NAME
  2.  
  3. perldelta - what's new for perl v5.6.0
  4.  
  5. =head1 DESCRIPTION
  6.  
  7. This document describes differences between the 5.005 release and this one.
  8.  
  9. =head1 Core Enhancements
  10.  
  11. =head2 Interpreter cloning, threads, and concurrency
  12.  
  13. Perl 5.005_63 introduces the beginnings of support for running multiple
  14. interpreters concurrently in different threads.  In conjunction with
  15. the perl_clone() API call, which can be used to selectively duplicate
  16. the state of any given interpreter, it is possible to compile a
  17. piece of code once in an interpreter, clone that interpreter
  18. one or more times, and run all the resulting interpreters in distinct
  19. threads.
  20.  
  21. On the Windows platform, this feature is used to emulate fork() at the
  22. interpreter level.  See L<perlfork> for details about that.
  23.  
  24. This feature is still in evolution.  It is eventually meant to be used
  25. to selectively clone a subroutine and data reachable from that
  26. subroutine in a separate interpreter and run the cloned subroutine
  27. in a separate thread.  Since there is no shared data between the
  28. interpreters, little or no locking will be needed (unless parts of
  29. the symbol table are explicitly shared).  This is obviously intended
  30. to be an easy-to-use replacement for the existing threads support.
  31.  
  32. Support for cloning interpreters and interpreter concurrency can be
  33. enabled using the -Dusethreads Configure option (see win32/Makefile for
  34. how to enable it on Windows.)  The resulting perl executable will be
  35. functionally identical to one that was built with -Dmultiplicity, but
  36. the perl_clone() API call will only be available in the former.
  37.  
  38. -Dusethreads enables the cpp macro USE_ITHREADS by default, which in turn
  39. enables Perl source code changes that provide a clear separation between
  40. the op tree and the data it operates with.  The former is immutable, and
  41. can therefore be shared between an interpreter and all of its clones,
  42. while the latter is considered local to each interpreter, and is therefore
  43. copied for each clone.
  44.  
  45. Note that building Perl with the -Dusemultiplicity Configure option
  46. is adequate if you wish to run multiple B<independent> interpreters
  47. concurrently in different threads.  -Dusethreads only provides the
  48. additional functionality of the perl_clone() API call and other
  49. support for running B<cloned> interpreters concurrently.
  50.  
  51.     NOTE: This is an experimental feature.  Implementation details are
  52.     subject to change.
  53.  
  54. =head2 Lexically scoped warning categories
  55.  
  56. You can now control the granularity of warnings emitted by perl at a finer
  57. level using the C<use warnings> pragma.  L<warnings> and L<perllexwarn>
  58. have copious documentation on this feature.
  59.  
  60. =head2 Unicode and UTF-8 support
  61.  
  62. Perl now uses UTF-8 as its internal representation for character
  63. strings.  The C<utf8> and C<bytes> pragmas are used to control this support
  64. in the current lexical scope.  See L<perlunicode>, L<utf8> and L<bytes> for
  65. more information.
  66.  
  67. This feature is expected to evolve quickly to support some form of I/O
  68. disciplines that can be used to specify the kind of input and output data
  69. (bytes or characters).  Until that happens, additional modules from CPAN
  70. will be needed to complete the toolkit for dealing with Unicode.
  71.  
  72.     NOTE: This should be considered an experimental feature.  Implementation
  73.     details are subject to change.
  74.  
  75. =head2 Support for interpolating named characters
  76.  
  77. The new C<\N> escape interpolates named characters within strings.
  78. For example, C<"Hi! \N{WHITE SMILING FACE}"> evaluates to a string
  79. with a unicode smiley face at the end.
  80.  
  81. =head2 "our" declarations
  82.  
  83. An "our" declaration introduces a value that can be best understood
  84. as a lexically scoped symbolic alias to a global variable in the
  85. package that was current where the variable was declared.  This is
  86. mostly useful as an alternative to the C<vars> pragma, but also provides
  87. the opportunity to introduce typing and other attributes for such
  88. variables.  See L<perlfunc/our>.
  89.  
  90. =head2 Support for strings represented as a vector of ordinals
  91.  
  92. Literals of the form C<v1.2.3.4> are now parsed as a string composed
  93. of characters with the specified ordinals.  This is an alternative, more
  94. readable way to construct (possibly unicode) strings instead of
  95. interpolating characters, as in C<"\x{1}\x{2}\x{3}\x{4}">.  The leading
  96. C<v> may be omitted if there are more than two ordinals, so C<1.2.3> is
  97. parsed the same as C<v1.2.3>.
  98.  
  99. Strings written in this form are also useful to represent version "numbers".
  100. It is easy to compare such version "numbers" (which are really just plain
  101. strings) using any of the usual string comparison operators C<eq>, C<ne>,
  102. C<lt>, C<gt>, etc., or perform bitwise string operations on them using C<|>,
  103. C<&>, etc.
  104.  
  105. In conjunction with the new C<$^V> magic variable (which contains
  106. the perl version as a string), such literals can be used as a readable way
  107. to check if you're running a particular version of Perl:
  108.  
  109.     # this will parse in older versions of Perl also
  110.     if ($^V and $^V gt v5.6.0) {
  111.         # new features supported
  112.     }
  113.  
  114. C<require> and C<use> also have some special magic to support such literals.
  115. They will be interpreted as a version rather than as a module name:
  116.  
  117.     require v5.6.0;        # croak if $^V lt v5.6.0
  118.     use v5.6.0;            # same, but croaks at compile-time
  119.  
  120. Alternatively, the C<v> may be omitted if there is more than one dot:
  121.  
  122.     require 5.6.0;
  123.     use 5.6.0;
  124.  
  125. Also, C<sprintf> and C<printf> support the Perl-specific format flag C<%v>
  126. to print ordinals of characters in arbitrary strings:
  127.  
  128.     printf "v%vd", $^V;        # prints current version, such as "v5.5.650"
  129.     printf "%*vX", ":", $addr;    # formats IPv6 address
  130.     printf "%*vb", " ", $bits;    # displays bitstring
  131.  
  132. See L<perldata/"Scalar value constructors"> for additional information.
  133.  
  134. =head2 Improved Perl version numbering system
  135.  
  136. Beginning with Perl version 5.6.0, the version number convention has been
  137. changed to a "dotted integer" scheme that is more commonly found in open
  138. source projects.
  139.  
  140. Maintenance versions of v5.6.0 will be released as v5.6.1, v5.6.2 etc.
  141. The next development series following v5.6.0 will be numbered v5.7.x,
  142. beginning with v5.7.0, and the next major production release following
  143. v5.6.0 will be v5.8.0.
  144.  
  145. The English module now sets $PERL_VERSION to $^V (a string value) rather
  146. than C<$]> (a numeric value).  (This is a potential incompatibility.
  147. Send us a report via perlbug if you are affected by this.)
  148.  
  149. The v1.2.3 syntax is also now legal in Perl.
  150. See L<Support for strings represented as a vector of ordinals> for more on that.
  151.  
  152. To cope with the new versioning system's use of at least three significant
  153. digits for each version component, the method used for incrementing the
  154. subversion number has also changed slightly.  We assume that versions older
  155. than v5.6.0 have been incrementing the subversion component in multiples of
  156. 10.  Versions after v5.6.0 will increment them by 1.  Thus, using the new
  157. notation, 5.005_03 is the "same" as v5.5.30, and the first maintenance
  158. version following v5.6.0 will be v5.6.1 (which should be read as being
  159. equivalent to a floating point value of 5.006_001 in the older format,
  160. stored in C<$]>).
  161.  
  162. =head2 New syntax for declaring subroutine attributes
  163.  
  164. Formerly, if you wanted to mark a subroutine as being a method call or
  165. as requiring an automatic lock() when it is entered, you had to declare
  166. that with a C<use attrs> pragma in the body of the subroutine.
  167. That can now be accomplished with declaration syntax, like this:
  168.  
  169.     sub mymethod : locked method ;
  170.     ...
  171.     sub mymethod : locked method {
  172.     ...
  173.     }
  174.  
  175.     sub othermethod :locked :method ;
  176.     ...
  177.     sub othermethod :locked :method {
  178.     ...
  179.     }
  180.  
  181.  
  182. (Note how only the first C<:> is mandatory, and whitespace surrounding
  183. the C<:> is optional.)
  184.  
  185. F<AutoSplit.pm> and F<SelfLoader.pm> have been updated to keep the attributes
  186. with the stubs they provide.  See L<attributes>.
  187.  
  188. =head2 File and directory handles can be autovivified
  189.  
  190. Similar to how constructs such as C<< $x->[0] >> autovivify a reference,
  191. handle constructors (open(), opendir(), pipe(), socketpair(), sysopen(),
  192. socket(), and accept()) now autovivify a file or directory handle
  193. if the handle passed to them is an uninitialized scalar variable.  This
  194. allows the constructs such as C<open(my $fh, ...)> and C<open(local $fh,...)>
  195. to be used to create filehandles that will conveniently be closed
  196. automatically when the scope ends, provided there are no other references
  197. to them.  This largely eliminates the need for typeglobs when opening
  198. filehandles that must be passed around, as in the following example:
  199.  
  200.     sub myopen {
  201.         open my $fh, "@_"
  202.          or die "Can't open '@_': $!";
  203.     return $fh;
  204.     }
  205.  
  206.     {
  207.         my $f = myopen("</etc/motd");
  208.     print <$f>;
  209.     # $f implicitly closed here
  210.     }
  211.  
  212. =head2 open() with more than two arguments
  213.  
  214. If open() is passed three arguments instead of two, the second argument
  215. is used as the mode and the third argument is taken to be the file name.
  216. This is primarily useful for protecting against unintended magic behavior
  217. of the traditional two-argument form.  See L<perlfunc/open>.
  218.  
  219. =head2 64-bit support
  220.  
  221. Any platform that has 64-bit integers either
  222.  
  223.     (1) natively as longs or ints
  224.     (2) via special compiler flags
  225.     (3) using long long or int64_t
  226.  
  227. is able to use "quads" (64-bit integers) as follows:
  228.  
  229. =over 4
  230.  
  231. =item *
  232.  
  233. constants (decimal, hexadecimal, octal, binary) in the code 
  234.  
  235. =item *
  236.  
  237. arguments to oct() and hex()
  238.  
  239. =item *
  240.  
  241. arguments to print(), printf() and sprintf() (flag prefixes ll, L, q)
  242.  
  243. =item *
  244.  
  245. printed as such
  246.  
  247. =item *
  248.  
  249. pack() and unpack() "q" and "Q" formats
  250.  
  251. =item *
  252.  
  253. in basic arithmetics: + - * / % (NOTE: operating close to the limits
  254. of the integer values may produce surprising results)
  255.  
  256. =item *
  257.  
  258. in bit arithmetics: & | ^ ~ << >> (NOTE: these used to be forced 
  259. to be 32 bits wide but now operate on the full native width.)
  260.  
  261. =item *
  262.  
  263. vec()
  264.  
  265. =back
  266.  
  267. Note that unless you have the case (a) you will have to configure
  268. and compile Perl using the -Duse64bitint Configure flag.
  269.  
  270.     NOTE: The Configure flags -Duselonglong and -Duse64bits have been
  271.     deprecated.  Use -Duse64bitint instead.
  272.  
  273. There are actually two modes of 64-bitness: the first one is achieved
  274. using Configure -Duse64bitint and the second one using Configure
  275. -Duse64bitall.  The difference is that the first one is minimal and
  276. the second one maximal.  The first works in more places than the second.
  277.  
  278. The C<use64bitint> does only as much as is required to get 64-bit
  279. integers into Perl (this may mean, for example, using "long longs")
  280. while your memory may still be limited to 2 gigabytes (because your
  281. pointers could still be 32-bit).  Note that the name C<64bitint> does
  282. not imply that your C compiler will be using 64-bit C<int>s (it might,
  283. but it doesn't have to): the C<use64bitint> means that you will be
  284. able to have 64 bits wide scalar values.
  285.  
  286. The C<use64bitall> goes all the way by attempting to switch also
  287. integers (if it can), longs (and pointers) to being 64-bit.  This may
  288. create an even more binary incompatible Perl than -Duse64bitint: the
  289. resulting executable may not run at all in a 32-bit box, or you may
  290. have to reboot/reconfigure/rebuild your operating system to be 64-bit
  291. aware.
  292.  
  293. Natively 64-bit systems like Alpha and Cray need neither -Duse64bitint
  294. nor -Duse64bitall.
  295.  
  296. Last but not least: note that due to Perl's habit of always using
  297. floating point numbers, the quads are still not true integers.
  298. When quads overflow their limits (0...18_446_744_073_709_551_615 unsigned,
  299. -9_223_372_036_854_775_808...9_223_372_036_854_775_807 signed), they
  300. are silently promoted to floating point numbers, after which they will
  301. start losing precision (in their lower digits).
  302.  
  303.     NOTE: 64-bit support is still experimental on most platforms.
  304.     Existing support only covers the LP64 data model.  In particular, the
  305.     LLP64 data model is not yet supported.  64-bit libraries and system
  306.     APIs on many platforms have not stabilized--your mileage may vary.
  307.  
  308. =head2 Large file support
  309.  
  310. If you have filesystems that support "large files" (files larger than
  311. 2 gigabytes), you may now also be able to create and access them from
  312. Perl.
  313.  
  314.     NOTE: The default action is to enable large file support, if
  315.     available on the platform.
  316.  
  317. If the large file support is on, and you have a Fcntl constant
  318. O_LARGEFILE, the O_LARGEFILE is automatically added to the flags
  319. of sysopen().
  320.  
  321. Beware that unless your filesystem also supports "sparse files" seeking
  322. to umpteen petabytes may be inadvisable.
  323.  
  324. Note that in addition to requiring a proper file system to do large
  325. files you may also need to adjust your per-process (or your
  326. per-system, or per-process-group, or per-user-group) maximum filesize
  327. limits before running Perl scripts that try to handle large files,
  328. especially if you intend to write such files.
  329.  
  330. Finally, in addition to your process/process group maximum filesize
  331. limits, you may have quota limits on your filesystems that stop you
  332. (your user id or your user group id) from using large files.
  333.  
  334. Adjusting your process/user/group/file system/operating system limits
  335. is outside the scope of Perl core language.  For process limits, you
  336. may try increasing the limits using your shell's limits/limit/ulimit
  337. command before running Perl.  The BSD::Resource extension (not
  338. included with the standard Perl distribution) may also be of use, it
  339. offers the getrlimit/setrlimit interface that can be used to adjust
  340. process resource usage limits, including the maximum filesize limit.
  341.  
  342. =head2 Long doubles
  343.  
  344. In some systems you may be able to use long doubles to enhance the
  345. range and precision of your double precision floating point numbers
  346. (that is, Perl's numbers).  Use Configure -Duselongdouble to enable
  347. this support (if it is available).
  348.  
  349. =head2 "more bits"
  350.  
  351. You can "Configure -Dusemorebits" to turn on both the 64-bit support
  352. and the long double support.
  353.  
  354. =head2 Enhanced support for sort() subroutines
  355.  
  356. Perl subroutines with a prototype of C<($$)>, and XSUBs in general, can
  357. now be used as sort subroutines.  In either case, the two elements to
  358. be compared are passed as normal parameters in @_.  See L<perlfunc/sort>.
  359.  
  360. For unprototyped sort subroutines, the historical behavior of passing 
  361. the elements to be compared as the global variables $a and $b remains
  362. unchanged.
  363.  
  364. =head2 C<sort $coderef @foo> allowed
  365.  
  366. sort() did not accept a subroutine reference as the comparison
  367. function in earlier versions.  This is now permitted.
  368.  
  369. =head2 File globbing implemented internally
  370.  
  371. Perl now uses the File::Glob implementation of the glob() operator
  372. automatically.  This avoids using an external csh process and the
  373. problems associated with it.
  374.  
  375.     NOTE: This is currently an experimental feature.  Interfaces and
  376.     implementation are subject to change.
  377.  
  378. =item Support for CHECK blocks
  379.  
  380. In addition to C<BEGIN>, C<INIT>, C<END>, C<DESTROY> and C<AUTOLOAD>,
  381. subroutines named C<CHECK> are now special.  These are queued up during
  382. compilation and behave similar to END blocks, except they are called at
  383. the end of compilation rather than at the end of execution.  They cannot
  384. be called directly.
  385.  
  386. =head2 POSIX character class syntax [: :] supported
  387.  
  388. For example to match alphabetic characters use /[[:alpha:]]/.
  389. See L<perlre> for details.
  390.  
  391. =item Better pseudo-random number generator
  392.  
  393. In 5.005_0x and earlier, perl's rand() function used the C library
  394. rand(3) function.  As of 5.005_52, Configure tests for drand48(),
  395. random(), and rand() (in that order) and picks the first one it finds.
  396.  
  397. These changes should result in better random numbers from rand().
  398.  
  399. =head2 Improved C<qw//> operator
  400.  
  401. The C<qw//> operator is now evaluated at compile time into a true list
  402. instead of being replaced with a run time call to C<split()>.  This
  403. removes the confusing misbehaviour of C<qw//> in scalar context, which
  404. had inherited that behaviour from split().
  405.  
  406. Thus:
  407.  
  408.     $foo = ($bar) = qw(a b c); print "$foo|$bar\n";
  409.  
  410. now correctly prints "3|a", instead of "2|a".
  411.  
  412. =item Better worst-case behavior of hashes
  413.  
  414. Small changes in the hashing algorithm have been implemented in
  415. order to improve the distribution of lower order bits in the
  416. hashed value.  This is expected to yield better performance on
  417. keys that are repeated sequences.
  418.  
  419. =head2 pack() format 'Z' supported
  420.  
  421. The new format type 'Z' is useful for packing and unpacking null-terminated
  422. strings.  See L<perlfunc/"pack">.
  423.  
  424. =head2 pack() format modifier '!' supported
  425.  
  426. The new format type modifier '!' is useful for packing and unpacking
  427. native shorts, ints, and longs.  See L<perlfunc/"pack">.
  428.  
  429. =head2 pack() and unpack() support counted strings
  430.  
  431. The template character '/' can be used to specify a counted string
  432. type to be packed or unpacked.  See L<perlfunc/"pack">.
  433.  
  434. =head2 Comments in pack() templates
  435.  
  436. The '#' character in a template introduces a comment up to
  437. end of the line.  This facilitates documentation of pack()
  438. templates.
  439.  
  440. =head2 Weak references
  441.  
  442. In previous versions of Perl, you couldn't cache objects so as
  443. to allow them to be deleted if the last reference from outside 
  444. the cache is deleted.  The reference in the cache would hold a
  445. reference count on the object and the objects would never be
  446. destroyed.
  447.  
  448. Another familiar problem is with circular references.  When an
  449. object references itself, its reference count would never go
  450. down to zero, and it would not get destroyed until the program
  451. is about to exit.
  452.  
  453. Weak references solve this by allowing you to "weaken" any
  454. reference, that is, make it not count towards the reference count.
  455. When the last non-weak reference to an object is deleted, the object
  456. is destroyed and all the weak references to the object are
  457. automatically undef-ed.
  458.  
  459. To use this feature, you need the WeakRef package from CPAN, which
  460. contains additional documentation.
  461.  
  462.     NOTE: This is an experimental feature.  Details are subject to change.  
  463.  
  464. =head2 Binary numbers supported
  465.  
  466. Binary numbers are now supported as literals, in s?printf formats, and
  467. C<oct()>:
  468.  
  469.     $answer = 0b101010;
  470.     printf "The answer is: %b\n", oct("0b101010");
  471.  
  472. =head2 Lvalue subroutines
  473.  
  474. Subroutines can now return modifiable lvalues.
  475. See L<perlsub/"Lvalue subroutines">.
  476.  
  477.     NOTE: This is an experimental feature.  Details are subject to change.
  478.  
  479. =head2 Some arrows may be omitted in calls through references
  480.  
  481. Perl now allows the arrow to be omitted in many constructs
  482. involving subroutine calls through references.  For example,
  483. C<< $foo[10]->('foo') >> may now be written C<$foo[10]('foo')>.
  484. This is rather similar to how the arrow may be omitted from
  485. C<< $foo[10]->{'foo'} >>.  Note however, that the arrow is still
  486. required for C<< foo(10)->('bar') >>.
  487.  
  488. =head2 Boolean assignment operators are legal lvalues
  489.  
  490. Constructs such as C<($a ||= 2) += 1> are now allowed.
  491.  
  492. =head2 exists() is supported on subroutine names
  493.  
  494. The exists() builtin now works on subroutine names.  A subroutine
  495. is considered to exist if it has been declared (even if implicitly).
  496. See L<perlfunc/exists> for examples.
  497.  
  498. =head2 exists() and delete() are supported on array elements
  499.  
  500. The exists() and delete() builtins now work on simple arrays as well.
  501. The behavior is similar to that on hash elements.
  502.  
  503. exists() can be used to check whether an array element has been
  504. initialized.  This avoids autovivifying array elements that don't exist.
  505. If the array is tied, the EXISTS() method in the corresponding tied
  506. package will be invoked.
  507.  
  508. delete() may be used to remove an element from the array and return
  509. it.  The array element at that position returns to its unintialized
  510. state, so that testing for the same element with exists() will return
  511. false.  If the element happens to be the one at the end, the size of
  512. the array also shrinks up to the highest element that tests true for
  513. exists(), or 0 if none such is found.  If the array is tied, the DELETE() 
  514. method in the corresponding tied package will be invoked.
  515.  
  516. See L<perlfunc/exists> and L<perlfunc/delete> for examples.
  517.  
  518. =head2 Pseudo-hashes work better
  519.  
  520. Dereferencing some types of reference values in a pseudo-hash,
  521. such as C<< $ph->{foo}[1] >>, was accidentally disallowed.  This has
  522. been corrected.
  523.  
  524. When applied to a pseudo-hash element, exists() now reports whether
  525. the specified value exists, not merely if the key is valid.
  526.  
  527. delete() now works on pseudo-hashes.  When given a pseudo-hash element
  528. or slice it deletes the values corresponding to the keys (but not the keys
  529. themselves).  See L<perlref/"Pseudo-hashes: Using an array as a hash">.
  530.  
  531. Pseudo-hash slices with constant keys are now optimized to array lookups
  532. at compile-time.
  533.  
  534. List assignments to pseudo-hash slices are now supported.
  535.  
  536. The C<fields> pragma now provides ways to create pseudo-hashes, via
  537. fields::new() and fields::phash().  See L<fields>.
  538.  
  539.     NOTE: The pseudo-hash data type continues to be experimental.
  540.     Limiting oneself to the interface elements provided by the
  541.     fields pragma will provide protection from any future changes.
  542.  
  543. =head2 Automatic flushing of output buffers
  544.  
  545. fork(), exec(), system(), qx//, and pipe open()s now flush buffers
  546. of all files opened for output when the operation was attempted.  This
  547. mostly eliminates confusing buffering mishaps suffered by users unaware
  548. of how Perl internally handles I/O.
  549.  
  550. This is not supported on some platforms like Solaris where a suitably
  551. correct implementation of fflush(NULL) isn't available.
  552.  
  553. =head2 Better diagnostics on meaningless filehandle operations
  554.  
  555. Constructs such as C<< open(<FH>) >> and C<< close(<FH>) >>
  556. are compile time errors.  Attempting to read from filehandles that
  557. were opened only for writing will now produce warnings (just as
  558. writing to read-only filehandles does).
  559.  
  560. =head2 Where possible, buffered data discarded from duped input filehandle
  561.  
  562. C<< open(NEW, "<&OLD") >> now attempts to discard any data that
  563. was previously read and buffered in C<OLD> before duping the handle.
  564. On platforms where doing this is allowed, the next read operation
  565. on C<NEW> will return the same data as the corresponding operation
  566. on C<OLD>.  Formerly, it would have returned the data from the start
  567. of the following disk block instead.
  568.  
  569. =head2 eof() has the same old magic as <>
  570.  
  571. C<eof()> would return true if no attempt to read from C<< <> >> had
  572. yet been made.  C<eof()> has been changed to have a little magic of its
  573. own, it now opens the C<< <> >> files.
  574.  
  575. =head2 binmode() can be used to set :crlf and :raw modes
  576.  
  577. binmode() now accepts a second argument that specifies a discipline
  578. for the handle in question.  The two pseudo-disciplines ":raw" and
  579. ":crlf" are currently supported on DOS-derivative platforms.
  580. See L<perlfunc/"binmode"> and L<open>.
  581.  
  582. =head2 C<-T> filetest recognizes UTF-8 encoded files as "text"
  583.  
  584. The algorithm used for the C<-T> filetest has been enhanced to
  585. correctly identify UTF-8 content as "text".
  586.  
  587. =head2 system(), backticks and pipe open now reflect exec() failure
  588.  
  589. On Unix and similar platforms, system(), qx() and open(FOO, "cmd |")
  590. etc., are implemented via fork() and exec().  When the underlying
  591. exec() fails, earlier versions did not report the error properly,
  592. since the exec() happened to be in a different process.
  593.  
  594. The child process now communicates with the parent about the
  595. error in launching the external command, which allows these
  596. constructs to return with their usual error value and set $!.
  597.  
  598. =head2 Improved diagnostics
  599.  
  600. Line numbers are no longer suppressed (under most likely circumstances)
  601. during the global destruction phase.
  602.  
  603. Diagnostics emitted from code running in threads other than the main
  604. thread are now accompanied by the thread ID.
  605.  
  606. Embedded null characters in diagnostics now actually show up.  They
  607. used to truncate the message in prior versions.
  608.  
  609. $foo::a and $foo::b are now exempt from "possible typo" warnings only
  610. if sort() is encountered in package C<foo>.
  611.  
  612. Unrecognized alphabetic escapes encountered when parsing quote
  613. constructs now generate a warning, since they may take on new
  614. semantics in later versions of Perl.
  615.  
  616. Many diagnostics now report the internal operation in which the warning
  617. was provoked, like so:
  618.  
  619.     Use of uninitialized value in concatenation (.) at (eval 1) line 1.
  620.     Use of uninitialized value in print at (eval 1) line 1.
  621.  
  622. Diagnostics  that occur within eval may also report the file and line
  623. number where the eval is located, in addition to the eval sequence
  624. number and the line number within the evaluated text itself.  For
  625. example:
  626.  
  627.     Not enough arguments for scalar at (eval 4)[newlib/perl5db.pl:1411] line 2, at EOF
  628.  
  629. =head2 Diagnostics follow STDERR
  630.  
  631. Diagnostic output now goes to whichever file the C<STDERR> handle
  632. is pointing at, instead of always going to the underlying C runtime
  633. library's C<stderr>.
  634.  
  635. =item More consistent close-on-exec behavior
  636.  
  637. On systems that support a close-on-exec flag on filehandles, the
  638. flag is now set for any handles created by pipe(), socketpair(),
  639. socket(), and accept(), if that is warranted by the value of $^F
  640. that may be in effect.  Earlier versions neglected to set the flag
  641. for handles created with these operators.  See L<perlfunc/pipe>,
  642. L<perlfunc/socketpair>, L<perlfunc/socket>, L<perlfunc/accept>,
  643. and L<perlvar/$^F>.
  644.  
  645. =head2 syswrite() ease-of-use
  646.  
  647. The length argument of C<syswrite()> has become optional.
  648.  
  649. =head2 Better syntax checks on parenthesized unary operators
  650.  
  651. Expressions such as:
  652.  
  653.     print defined(&foo,&bar,&baz);
  654.     print uc("foo","bar","baz");
  655.     undef($foo,&bar);
  656.  
  657. used to be accidentally allowed in earlier versions, and produced
  658. unpredictable behaviour.  Some produced ancillary warnings
  659. when used in this way; others silently did the wrong thing.
  660.  
  661. The parenthesized forms of most unary operators that expect a single
  662. argument now ensure that they are not called with more than one
  663. argument, making the cases shown above syntax errors.  The usual
  664. behaviour of:
  665.  
  666.     print defined &foo, &bar, &baz;
  667.     print uc "foo", "bar", "baz";
  668.     undef $foo, &bar;
  669.  
  670. remains unchanged.  See L<perlop>.
  671.  
  672. =head2 Bit operators support full native integer width
  673.  
  674. The bit operators (& | ^ ~ << >>) now operate on the full native
  675. integral width (the exact size of which is available in $Config{ivsize}).
  676. For example, if your platform is either natively 64-bit or if Perl
  677. has been configured to use 64-bit integers, these operations apply
  678. to 8 bytes (as opposed to 4 bytes on 32-bit platforms).
  679. For portability, be sure to mask off the excess bits in the result of
  680. unary C<~>, e.g., C<~$x & 0xffffffff>.
  681.  
  682. =head2 Improved security features
  683.  
  684. More potentially unsafe operations taint their results for improved
  685. security.
  686.  
  687. The C<passwd> and C<shell> fields returned by the getpwent(), getpwnam(),
  688. and getpwuid() are now tainted, because the user can affect their own
  689. encrypted password and login shell.
  690.  
  691. The variable modified by shmread(), and messages returned by msgrcv()
  692. (and its object-oriented interface IPC::SysV::Msg::rcv) are also tainted,
  693. because other untrusted processes can modify messages and shared memory
  694. segments for their own nefarious purposes.
  695.  
  696. =item More functional bareword prototype (*)
  697.  
  698. Bareword prototypes have been rationalized to enable them to be used
  699. to override builtins that accept barewords and interpret them in
  700. a special way, such as C<require> or C<do>.
  701.  
  702. Arguments prototyped as C<*> will now be visible within the subroutine
  703. as either a simple scalar or as a reference to a typeglob.
  704. See L<perlsub/Prototypes>.
  705.  
  706. =head2 C<require> and C<do> may be overridden
  707.  
  708. C<require> and C<do 'file'> operations may be overridden locally
  709. by importing subroutines of the same name into the current package 
  710. (or globally by importing them into the CORE::GLOBAL:: namespace).
  711. Overriding C<require> will also affect C<use>, provided the override
  712. is visible at compile-time.
  713. See L<perlsub/"Overriding Built-in Functions">.
  714.  
  715. =head2 $^X variables may now have names longer than one character
  716.  
  717. Formerly, $^X was synonymous with ${"\cX"}, but $^XY was a syntax
  718. error.  Now variable names that begin with a control character may be
  719. arbitrarily long.  However, for compatibility reasons, these variables
  720. I<must> be written with explicit braces, as C<${^XY}> for example.
  721. C<${^XYZ}> is synonymous with ${"\cXYZ"}.  Variable names with more
  722. than one control character, such as C<${^XY^Z}>, are illegal.
  723.  
  724. The old syntax has not changed.  As before, `^X' may be either a
  725. literal control-X character or the two-character sequence `caret' plus
  726. `X'.  When braces are omitted, the variable name stops after the
  727. control character.  Thus C<"$^XYZ"> continues to be synonymous with
  728. C<$^X . "YZ"> as before.
  729.  
  730. As before, lexical variables may not have names beginning with control
  731. characters.  As before, variables whose names begin with a control
  732. character are always forced to be in package `main'.  All such variables
  733. are reserved for future extensions, except those that begin with
  734. C<^_>, which may be used by user programs and are guaranteed not to
  735. acquire special meaning in any future version of Perl.
  736.  
  737. =head2 New variable $^C reflects C<-c> switch
  738.  
  739. C<$^C> has a boolean value that reflects whether perl is being run
  740. in compile-only mode (i.e. via the C<-c> switch).  Since
  741. BEGIN blocks are executed under such conditions, this variable
  742. enables perl code to determine whether actions that make sense
  743. only during normal running are warranted.  See L<perlvar>.
  744.  
  745. =head2 New variable $^V contains Perl version as a string
  746.  
  747. C<$^V> contains the Perl version number as a string composed of
  748. characters whose ordinals match the version numbers, i.e. v5.6.0.
  749. This may be used in string comparisons.
  750.  
  751. See C<Support for strings represented as a vector of ordinals> for an
  752. example.
  753.  
  754. =head2 Optional Y2K warnings
  755.  
  756. If Perl is built with the cpp macro C<PERL_Y2KWARN> defined,
  757. it emits optional warnings when concatenating the number 19
  758. with another number.
  759.  
  760. This behavior must be specifically enabled when running Configure.
  761. See F<INSTALL> and F<README.Y2K>.
  762.  
  763. =head1 Modules and Pragmata
  764.  
  765. =head2 Modules
  766.  
  767. =over 4
  768.  
  769. =item attributes
  770.  
  771. While used internally by Perl as a pragma, this module also
  772. provides a way to fetch subroutine and variable attributes.
  773. See L<attributes>.
  774.  
  775. =item B
  776.  
  777. The Perl Compiler suite has been extensively reworked for this
  778. release.  More of the standard Perl testsuite passes when run
  779. under the Compiler, but there is still a significant way to
  780. go to achieve production quality compiled executables.
  781.  
  782.     NOTE: The Compiler suite remains highly experimental.  The
  783.     generated code may not be correct, even it manages to execute
  784.     without errors.
  785.  
  786. =item Benchmark
  787.  
  788. Overall, Benchmark results exhibit lower average error and better timing
  789. accuracy.  
  790.  
  791. You can now run tests for I<n> seconds instead of guessing the right
  792. number of tests to run: e.g., timethese(-5, ...) will run each 
  793. code for at least 5 CPU seconds.  Zero as the "number of repetitions"
  794. means "for at least 3 CPU seconds".  The output format has also
  795. changed.  For example:
  796.  
  797.    use Benchmark;$x=3;timethese(-5,{a=>sub{$x*$x},b=>sub{$x**2}})
  798.  
  799. will now output something like this:
  800.  
  801.    Benchmark: running a, b, each for at least 5 CPU seconds...
  802.             a:  5 wallclock secs ( 5.77 usr +  0.00 sys =  5.77 CPU) @ 200551.91/s (n=1156516)
  803.             b:  4 wallclock secs ( 5.00 usr +  0.02 sys =  5.02 CPU) @ 159605.18/s (n=800686)
  804.  
  805. New features: "each for at least N CPU seconds...", "wallclock secs",
  806. and the "@ operations/CPU second (n=operations)".
  807.  
  808. timethese() now returns a reference to a hash of Benchmark objects containing
  809. the test results, keyed on the names of the tests.
  810.  
  811. timethis() now returns the iterations field in the Benchmark result object
  812. instead of 0.
  813.  
  814. timethese(), timethis(), and the new cmpthese() (see below) can also take
  815. a format specifier of 'none' to suppress output.
  816.  
  817. A new function countit() is just like timeit() except that it takes a
  818. TIME instead of a COUNT.
  819.  
  820. A new function cmpthese() prints a chart comparing the results of each test
  821. returned from a timethese() call.  For each possible pair of tests, the
  822. percentage speed difference (iters/sec or seconds/iter) is shown.
  823.  
  824. For other details, see L<Benchmark>.
  825.  
  826. =item ByteLoader
  827.  
  828. The ByteLoader is a dedicated extension to generate and run
  829. Perl bytecode.  See L<ByteLoader>.
  830.  
  831. =item constant
  832.  
  833. References can now be used.
  834.  
  835. The new version also allows a leading underscore in constant names, but
  836. disallows a double leading underscore (as in "__LINE__").  Some other names
  837. are disallowed or warned against, including BEGIN, END, etc.  Some names
  838. which were forced into main:: used to fail silently in some cases; now they're
  839. fatal (outside of main::) and an optional warning (inside of main::).
  840. The ability to detect whether a constant had been set with a given name has
  841. been added.
  842.  
  843. See L<constant>.
  844.  
  845. =item charnames
  846.  
  847. This pragma implements the C<\N> string escape.  See L<charnames>.
  848.  
  849. =item Data::Dumper
  850.  
  851. A C<Maxdepth> setting can be specified to avoid venturing
  852. too deeply into deep data structures.  See L<Data::Dumper>.
  853.  
  854. The XSUB implementation of Dump() is now automatically called if the
  855. C<Useqq> setting is not in use.
  856.  
  857. Dumping C<qr//> objects works correctly.
  858.  
  859. =item DB
  860.  
  861. C<DB> is an experimental module that exposes a clean abstraction
  862. to Perl's debugging API.
  863.  
  864. =item DB_File
  865.  
  866. DB_File can now be built with Berkeley DB versions 1, 2 or 3.
  867. See C<ext/DB_File/Changes>.
  868.  
  869. =item Devel::DProf
  870.  
  871. Devel::DProf, a Perl source code profiler has been added.  See
  872. L<Devel::DProf> and L<dprofpp>.
  873.  
  874. =item Devel::Peek
  875.  
  876. The Devel::Peek module provides access to the internal representation
  877. of Perl variables and data.  It is a data debugging tool for the XS programmer.
  878.  
  879. =item Dumpvalue
  880.  
  881. The Dumpvalue module provides screen dumps of Perl data.
  882.  
  883. =item DynaLoader
  884.  
  885. DynaLoader now supports a dl_unload_file() function on platforms that
  886. support unloading shared objects using dlclose().
  887.  
  888. Perl can also optionally arrange to unload all extension shared objects
  889. loaded by Perl.  To enable this, build Perl with the Configure option
  890. C<-Accflags=-DDL_UNLOAD_ALL_AT_EXIT>.  (This maybe useful if you are
  891. using Apache with mod_perl.)
  892.  
  893. =item English
  894.  
  895. $PERL_VERSION now stands for C<$^V> (a string value) rather than for C<$]>
  896. (a numeric value).
  897.  
  898. =item Env
  899.  
  900. Env now supports accessing environment variables like PATH as array
  901. variables.
  902.  
  903. =item Fcntl
  904.  
  905. More Fcntl constants added: F_SETLK64, F_SETLKW64, O_LARGEFILE for
  906. large file (more than 4GB) access (NOTE: the O_LARGEFILE is
  907. automatically added to sysopen() flags if large file support has been
  908. configured, as is the default), Free/Net/OpenBSD locking behaviour
  909. flags F_FLOCK, F_POSIX, Linux F_SHLCK, and O_ACCMODE: the combined
  910. mask of O_RDONLY, O_WRONLY, and O_RDWR.  The seek()/sysseek()
  911. constants SEEK_SET, SEEK_CUR, and SEEK_END are available via the
  912. C<:seek> tag.  The chmod()/stat() S_IF* constants and S_IS* functions
  913. are available via the C<:mode> tag.
  914.  
  915. =item File::Compare
  916.  
  917. A compare_text() function has been added, which allows custom
  918. comparison functions.  See L<File::Compare>.
  919.  
  920. =item File::Find
  921.  
  922. File::Find now works correctly when the wanted() function is either
  923. autoloaded or is a symbolic reference.
  924.  
  925. A bug that caused File::Find to lose track of the working directory
  926. when pruning top-level directories has been fixed.
  927.  
  928. File::Find now also supports several other options to control its
  929. behavior.  It can follow symbolic links if the C<follow> option is
  930. specified.  Enabling the C<no_chdir> option will make File::Find skip
  931. changing the current directory when walking directories.  The C<untaint>
  932. flag can be useful when running with taint checks enabled.
  933.  
  934. See L<File::Find>.
  935.  
  936. =item File::Glob
  937.  
  938. This extension implements BSD-style file globbing.  By default,
  939. it will also be used for the internal implementation of the glob()
  940. operator.  See L<File::Glob>.
  941.  
  942. =item File::Spec
  943.  
  944. New methods have been added to the File::Spec module: devnull() returns
  945. the name of the null device (/dev/null on Unix) and tmpdir() the name of
  946. the temp directory (normally /tmp on Unix).  There are now also methods
  947. to convert between absolute and relative filenames: abs2rel() and
  948. rel2abs().  For compatibility with operating systems that specify volume
  949. names in file paths, the splitpath(), splitdir(), and catdir() methods
  950. have been added.
  951.  
  952. =item File::Spec::Functions
  953.  
  954. The new File::Spec::Functions modules provides a function interface
  955. to the File::Spec module.  Allows shorthand
  956.  
  957.     $fullname = catfile($dir1, $dir2, $file);
  958.  
  959. instead of
  960.  
  961.     $fullname = File::Spec->catfile($dir1, $dir2, $file);
  962.  
  963. =item Getopt::Long
  964.  
  965. Getopt::Long licensing has changed to allow the Perl Artistic License
  966. as well as the GPL. It used to be GPL only, which got in the way of
  967. non-GPL applications that wanted to use Getopt::Long.
  968.  
  969. Getopt::Long encourages the use of Pod::Usage to produce help
  970. messages. For example:
  971.  
  972.     use Getopt::Long;
  973.     use Pod::Usage;
  974.     my $man = 0;
  975.     my $help = 0;
  976.     GetOptions('help|?' => \$help, man => \$man) or pod2usage(2);
  977.     pod2usage(1) if $help;
  978.     pod2usage(-exitstatus => 0, -verbose => 2) if $man;
  979.  
  980.     __END__
  981.  
  982.     =head1 NAME
  983.  
  984.     sample - Using GetOpt::Long and Pod::Usage
  985.  
  986.     =head1 SYNOPSIS
  987.  
  988.     sample [options] [file ...]
  989.  
  990.      Options:
  991.        -help            brief help message
  992.        -man             full documentation
  993.  
  994.     =head1 OPTIONS
  995.  
  996.     =over 8
  997.  
  998.     =item B<-help>
  999.  
  1000.     Print a brief help message and exits.
  1001.  
  1002.     =item B<-man>
  1003.  
  1004.     Prints the manual page and exits.
  1005.  
  1006.     =back
  1007.  
  1008.     =head1 DESCRIPTION
  1009.  
  1010.     B<This program> will read the given input file(s) and do someting
  1011.     useful with the contents thereof.
  1012.  
  1013.     =cut
  1014.  
  1015. See L<Pod::Usage> for details.
  1016.  
  1017. A bug that prevented the non-option call-back <> from being
  1018. specified as the first argument has been fixed.
  1019.  
  1020. To specify the characters < and > as option starters, use ><. Note,
  1021. however, that changing option starters is strongly deprecated. 
  1022.  
  1023. =item IO
  1024.  
  1025. write() and syswrite() will now accept a single-argument
  1026. form of the call, for consistency with Perl's syswrite().
  1027.  
  1028. You can now create a TCP-based IO::Socket::INET without forcing
  1029. a connect attempt.  This allows you to configure its options
  1030. (like making it non-blocking) and then call connect() manually.
  1031.  
  1032. A bug that prevented the IO::Socket::protocol() accessor
  1033. from ever returning the correct value has been corrected.
  1034.  
  1035. IO::Socket::connect now uses non-blocking IO instead of alarm()
  1036. to do connect timeouts.
  1037.  
  1038. IO::Socket::accept now uses select() instead of alarm() for doing
  1039. timeouts.
  1040.  
  1041. IO::Socket::INET->new now sets $! correctly on failure. $@ is
  1042. still set for backwards compatability.
  1043.  
  1044. =item JPL
  1045.  
  1046. Java Perl Lingo is now distributed with Perl.  See jpl/README
  1047. for more information.
  1048.  
  1049. =item lib
  1050.  
  1051. C<use lib> now weeds out any trailing duplicate entries.
  1052. C<no lib> removes all named entries.
  1053.  
  1054. =item Math::BigInt
  1055.  
  1056. The bitwise operations C<<< << >>>, C<<< >> >>>, C<&>, C<|>,
  1057. and C<~> are now supported on bigints.
  1058.  
  1059. =item Math::Complex
  1060.  
  1061. The accessor methods Re, Im, arg, abs, rho, and theta can now also
  1062. act as mutators (accessor $z->Re(), mutator $z->Re(3)).
  1063.  
  1064. The class method C<display_format> and the corresponding object method
  1065. C<display_format>, in addition to accepting just one argument, now can
  1066. also accept a parameter hash.  Recognized keys of a parameter hash are
  1067. C<"style">, which corresponds to the old one parameter case, and two
  1068. new parameters: C<"format">, which is a printf()-style format string
  1069. (defaults usually to C<"%.15g">, you can revert to the default by
  1070. setting the format string to C<undef>) used for both parts of a
  1071. complex number, and C<"polar_pretty_print"> (defaults to true),
  1072. which controls whether an attempt is made to try to recognize small
  1073. multiples and rationals of pi (2pi, pi/2) at the argument (angle) of a
  1074. polar complex number.
  1075.  
  1076. The potentially disruptive change is that in list context both methods
  1077. now I<return the parameter hash>, instead of only the value of the
  1078. C<"style"> parameter.
  1079.  
  1080. =item Math::Trig
  1081.  
  1082. A little bit of radial trigonometry (cylindrical and spherical),
  1083. radial coordinate conversions, and the great circle distance were added.
  1084.  
  1085. =item Pod::Parser, Pod::InputObjects
  1086.  
  1087. Pod::Parser is a base class for parsing and selecting sections of
  1088. pod documentation from an input stream.  This module takes care of
  1089. identifying pod paragraphs and commands in the input and hands off the
  1090. parsed paragraphs and commands to user-defined methods which are free
  1091. to interpret or translate them as they see fit.
  1092.  
  1093. Pod::InputObjects defines some input objects needed by Pod::Parser, and
  1094. for advanced users of Pod::Parser that need more about a command besides
  1095. its name and text.
  1096.  
  1097. As of release 5.6.0 of Perl, Pod::Parser is now the officially sanctioned
  1098. "base parser code" recommended for use by all pod2xxx translators.
  1099. Pod::Text (pod2text) and Pod::Man (pod2man) have already been converted
  1100. to use Pod::Parser and efforts to convert Pod::HTML (pod2html) are already
  1101. underway.  For any questions or comments about pod parsing and translating
  1102. issues and utilities, please use the pod-people@perl.org mailing list.
  1103.  
  1104. For further information, please see L<Pod::Parser> and L<Pod::InputObjects>.
  1105.  
  1106. =item Pod::Checker, podchecker
  1107.  
  1108. This utility checks pod files for correct syntax, according to
  1109. L<perlpod>.  Obvious errors are flagged as such, while warnings are
  1110. printed for mistakes that can be handled gracefully.  The checklist is
  1111. not complete yet.  See L<Pod::Checker>.
  1112.  
  1113. =item Pod::ParseUtils, Pod::Find
  1114.  
  1115. These modules provide a set of gizmos that are useful mainly for pod
  1116. translators.  L<Pod::Find|Pod::Find> traverses directory structures and
  1117. returns found pod files, along with their canonical names (like
  1118. C<File::Spec::Unix>).  L<Pod::ParseUtils|Pod::ParseUtils> contains
  1119. B<Pod::List> (useful for storing pod list information), B<Pod::Hyperlink>
  1120. (for parsing the contents of C<LE<lt>E<gt>> sequences) and B<Pod::Cache>
  1121. (for caching information about pod files, e.g., link nodes).
  1122.  
  1123. =item Pod::Select, podselect
  1124.  
  1125. Pod::Select is a subclass of Pod::Parser which provides a function
  1126. named "podselect()" to filter out user-specified sections of raw pod
  1127. documentation from an input stream. podselect is a script that provides
  1128. access to Pod::Select from other scripts to be used as a filter.
  1129. See L<Pod::Select>.
  1130.  
  1131. =item Pod::Usage, pod2usage
  1132.  
  1133. Pod::Usage provides the function "pod2usage()" to print usage messages for
  1134. a Perl script based on its embedded pod documentation.  The pod2usage()
  1135. function is generally useful to all script authors since it lets them
  1136. write and maintain a single source (the pods) for documentation, thus
  1137. removing the need to create and maintain redundant usage message text
  1138. consisting of information already in the pods.
  1139.  
  1140. There is also a pod2usage script which can be used from other kinds of
  1141. scripts to print usage messages from pods (even for non-Perl scripts
  1142. with pods embedded in comments).
  1143.  
  1144. For details and examples, please see L<Pod::Usage>.
  1145.  
  1146. =item Pod::Text and Pod::Man
  1147.  
  1148. Pod::Text has been rewritten to use Pod::Parser.  While pod2text() is
  1149. still available for backwards compatibility, the module now has a new
  1150. preferred interface.  See L<Pod::Text> for the details.  The new Pod::Text
  1151. module is easily subclassed for tweaks to the output, and two such
  1152. subclasses (Pod::Text::Termcap for man-page-style bold and underlining
  1153. using termcap information, and Pod::Text::Color for markup with ANSI color
  1154. sequences) are now standard.
  1155.  
  1156. pod2man has been turned into a module, Pod::Man, which also uses
  1157. Pod::Parser.  In the process, several outstanding bugs related to quotes
  1158. in section headers, quoting of code escapes, and nested lists have been
  1159. fixed.  pod2man is now a wrapper script around this module.
  1160.  
  1161. =item SDBM_File
  1162.  
  1163. An EXISTS method has been added to this module (and sdbm_exists() has
  1164. been added to the underlying sdbm library), so one can now call exists
  1165. on an SDBM_File tied hash and get the correct result, rather than a
  1166. runtime error.
  1167.  
  1168. A bug that may have caused data loss when more than one disk block
  1169. happens to be read from the database in a single FETCH() has been
  1170. fixed.
  1171.  
  1172. =item Sys::Syslog
  1173.  
  1174. Sys::Syslog now uses XSUBs to access facilities from syslog.h so it
  1175. no longer requires syslog.ph to exist. 
  1176.  
  1177. =item Sys::Hostname
  1178.  
  1179. Sys::Hostname now uses XSUBs to call the C library's gethostname() or
  1180. uname() if they exist.
  1181.  
  1182. =item Term::ANSIColor
  1183.  
  1184. Term::ANSIColor is a very simple module to provide easy and readable
  1185. access to the ANSI color and highlighting escape sequences, supported by
  1186. most ANSI terminal emulators.  It is now included standard.
  1187.  
  1188. =item Time::Local
  1189.  
  1190. The timelocal() and timegm() functions used to silently return bogus
  1191. results when the date fell outside the machine's integer range.  They
  1192. now consistently croak() if the date falls in an unsupported range.
  1193.  
  1194. =item Win32
  1195.  
  1196. The error return value in list context has been changed for all functions
  1197. that return a list of values.  Previously these functions returned a list
  1198. with a single element C<undef> if an error occurred.  Now these functions
  1199. return the empty list in these situations.  This applies to the following
  1200. functions:
  1201.  
  1202.     Win32::FsType
  1203.     Win32::GetOSVersion
  1204.  
  1205. The remaining functions are unchanged and continue to return C<undef> on
  1206. error even in list context.
  1207.  
  1208. The Win32::SetLastError(ERROR) function has been added as a complement
  1209. to the Win32::GetLastError() function.
  1210.  
  1211. The new Win32::GetFullPathName(FILENAME) returns the full absolute
  1212. pathname for FILENAME in scalar context.  In list context it returns
  1213. a two-element list containing the fully qualified directory name and
  1214. the filename.  See L<Win32>.
  1215.  
  1216. =item XSLoader
  1217.  
  1218. The XSLoader extension is a simpler alternative to DynaLoader.
  1219. See L<XSLoader>.
  1220.  
  1221. =item DBM Filters
  1222.  
  1223. A new feature called "DBM Filters" has been added to all the
  1224. DBM modules--DB_File, GDBM_File, NDBM_File, ODBM_File, and SDBM_File.
  1225. DBM Filters add four new methods to each DBM module:
  1226.  
  1227.     filter_store_key
  1228.     filter_store_value
  1229.     filter_fetch_key
  1230.     filter_fetch_value
  1231.  
  1232. These can be used to filter key-value pairs before the pairs are
  1233. written to the database or just after they are read from the database.
  1234. See L<perldbmfilter> for further information.
  1235.  
  1236. =back
  1237.  
  1238. =head2 Pragmata
  1239.  
  1240. C<use attrs> is now obsolete, and is only provided for
  1241. backward-compatibility.  It's been replaced by the C<sub : attributes>
  1242. syntax.  See L<perlsub/"Subroutine Attributes"> and L<attributes>.
  1243.  
  1244. Lexical warnings pragma, C<use warnings;>, to control optional warnings.
  1245. See L<perllexwarn>.
  1246.  
  1247. C<use filetest> to control the behaviour of filetests (C<-r> C<-w>
  1248. ...).  Currently only one subpragma implemented, "use filetest
  1249. 'access';", that uses access(2) or equivalent to check permissions
  1250. instead of using stat(2) as usual.  This matters in filesystems
  1251. where there are ACLs (access control lists): the stat(2) might lie,
  1252. but access(2) knows better.
  1253.  
  1254. The C<open> pragma can be used to specify default disciplines for
  1255. handle constructors (e.g. open()) and for qx//.  The two
  1256. pseudo-disciplines C<:raw> and C<:crlf> are currently supported on
  1257. DOS-derivative platforms (i.e. where binmode is not a no-op).
  1258. See also L</"binmode() can be used to set :crlf and :raw modes">.
  1259.  
  1260. =head1 Utility Changes
  1261.  
  1262. =head2 dprofpp
  1263.  
  1264. C<dprofpp> is used to display profile data generated using C<Devel::DProf>.
  1265. See L<dprofpp>.
  1266.  
  1267. =head2 find2perl
  1268.  
  1269. The C<find2perl> utility now uses the enhanced features of the File::Find
  1270. module.  The -depth and -follow options are supported.  Pod documentation
  1271. is also included in the script.
  1272.  
  1273. =head2 h2xs
  1274.  
  1275. The C<h2xs> tool can now work in conjunction with C<C::Scan> (available
  1276. from CPAN) to automatically parse real-life header files.  The C<-M>,
  1277. C<-a>, C<-k>, and C<-o> options are new.
  1278.  
  1279. =head2 perlcc
  1280.  
  1281. C<perlcc> now supports the C and Bytecode backends.  By default,
  1282. it generates output from the simple C backend rather than the
  1283. optimized C backend.
  1284.  
  1285. Support for non-Unix platforms has been improved.
  1286.  
  1287. =head2 perldoc
  1288.  
  1289. C<perldoc> has been reworked to avoid possible security holes.
  1290. It will not by default let itself be run as the superuser, but you
  1291. may still use the B<-U> switch to try to make it drop privileges
  1292. first.
  1293.  
  1294. =head2 The Perl Debugger
  1295.  
  1296. Many bug fixes and enhancements were added to F<perl5db.pl>, the
  1297. Perl debugger.  The help documentation was rearranged.  New commands
  1298. include C<< < ? >>, C<< > ? >>, and C<< { ? >> to list out current
  1299. actions, C<man I<docpage>> to run your doc viewer on some perl
  1300. docset, and support for quoted options.  The help information was
  1301. rearranged, and should be viewable once again if you're using B<less>
  1302. as your pager.  A serious security hole was plugged--you should
  1303. immediately remove all older versions of the Perl debugger as
  1304. installed in previous releases, all the way back to perl3, from
  1305. your system to avoid being bitten by this.
  1306.  
  1307. =head1 Improved Documentation
  1308.  
  1309. Many of the platform-specific README files are now part of the perl
  1310. installation.  See L<perl> for the complete list.
  1311.  
  1312. =over 4
  1313.  
  1314. =item perlapi.pod
  1315.  
  1316. The official list of public Perl API functions.
  1317.  
  1318. =item perlboot.pod
  1319.  
  1320. A tutorial for beginners on object-oriented Perl.
  1321.  
  1322. =item perlcompile.pod
  1323.  
  1324. An introduction to using the Perl Compiler suite.
  1325.  
  1326. =item perldbmfilter.pod
  1327.  
  1328. A howto document on using the DBM filter facility.
  1329.  
  1330. =item perldebug.pod
  1331.  
  1332. All material unrelated to running the Perl debugger, plus all
  1333. low-level guts-like details that risked crushing the casual user
  1334. of the debugger, have been relocated from the old manpage to the
  1335. next entry below.
  1336.  
  1337. =item perldebguts.pod
  1338.  
  1339. This new manpage contains excessively low-level material not related
  1340. to the Perl debugger, but slightly related to debugging Perl itself.
  1341. It also contains some arcane internal details of how the debugging
  1342. process works that may only be of interest to developers of Perl
  1343. debuggers.
  1344.  
  1345. =item perlfork.pod
  1346.  
  1347. Notes on the fork() emulation currently available for the Windows platform.
  1348.  
  1349. =item perlfilter.pod
  1350.  
  1351. An introduction to writing Perl source filters.
  1352.  
  1353. =item perlhack.pod
  1354.  
  1355. Some guidelines for hacking the Perl source code.
  1356.  
  1357. =item perlintern.pod
  1358.  
  1359. A list of internal functions in the Perl source code.
  1360. (List is currently empty.)
  1361.  
  1362. =item perllexwarn.pod
  1363.  
  1364. Introduction and reference information about lexically scoped
  1365. warning categories.
  1366.  
  1367. =item perlnumber.pod
  1368.  
  1369. Detailed information about numbers as they are represented in Perl.
  1370.  
  1371. =item perlopentut.pod
  1372.  
  1373. A tutorial on using open() effectively.
  1374.  
  1375. =item perlreftut.pod
  1376.  
  1377. A tutorial that introduces the essentials of references.
  1378.  
  1379. =item perltootc.pod
  1380.  
  1381. A tutorial on managing class data for object modules.
  1382.  
  1383. =item perltodo.pod
  1384.  
  1385. Discussion of the most often wanted features that may someday be
  1386. supported in Perl.
  1387.  
  1388. =item perlunicode.pod
  1389.  
  1390. An introduction to Unicode support features in Perl.
  1391.  
  1392. =back
  1393.  
  1394. =head1 Performance enhancements
  1395.  
  1396. =head2 Simple sort() using { $a <=> $b } and the like are optimized
  1397.  
  1398. Many common sort() operations using a simple inlined block are now
  1399. optimized for faster performance.
  1400.  
  1401. =head2 Optimized assignments to lexical variables
  1402.  
  1403. Certain operations in the RHS of assignment statements have been
  1404. optimized to directly set the lexical variable on the LHS,
  1405. eliminating redundant copying overheads.
  1406.  
  1407. =head2 Faster subroutine calls
  1408.  
  1409. Minor changes in how subroutine calls are handled internally
  1410. provide marginal improvements in performance.
  1411.  
  1412. =item delete(), each(), values() and hash iteration are faster
  1413.  
  1414. The hash values returned by delete(), each(), values() and hashes in a
  1415. list context are the actual values in the hash, instead of copies.
  1416. This results in significantly better performance, because it eliminates
  1417. needless copying in most situations.
  1418.  
  1419. =head1 Installation and Configuration Improvements
  1420.  
  1421. =head2 -Dusethreads means something different
  1422.  
  1423. The -Dusethreads flag now enables the experimental interpreter-based thread
  1424. support by default.  To get the flavor of experimental threads that was in
  1425. 5.005 instead, you need to run Configure with "-Dusethreads -Duse5005threads".
  1426.  
  1427. As of v5.6.0, interpreter-threads support is still lacking a way to
  1428. create new threads from Perl (i.e., C<use Thread;> will not work with
  1429. interpreter threads).  C<use Thread;> continues to be available when you
  1430. specify the -Duse5005threads option to Configure, bugs and all.
  1431.  
  1432.     NOTE: Support for threads continues to be an experimental feature.
  1433.     Interfaces and implementation are subject to sudden and drastic changes.
  1434.  
  1435. =head2 New Configure flags
  1436.  
  1437. The following new flags may be enabled on the Configure command line
  1438. by running Configure with C<-Dflag>.
  1439.  
  1440.     usemultiplicity
  1441.     usethreads useithreads    (new interpreter threads: no Perl API yet)
  1442.     usethreads use5005threads    (threads as they were in 5.005)
  1443.  
  1444.     use64bitint            (equal to now deprecated 'use64bits')
  1445.     use64bitall
  1446.  
  1447.     uselongdouble
  1448.     usemorebits
  1449.     uselargefiles
  1450.     usesocks            (only SOCKS v5 supported)
  1451.  
  1452. =head2 Threadedness and 64-bitness now more daring
  1453.  
  1454. The Configure options enabling the use of threads and the use of
  1455. 64-bitness are now more daring in the sense that they no more have an
  1456. explicit list of operating systems of known threads/64-bit
  1457. capabilities.  In other words: if your operating system has the
  1458. necessary APIs and datatypes, you should be able just to go ahead and
  1459. use them, for threads by Configure -Dusethreads, and for 64 bits
  1460. either explicitly by Configure -Duse64bitint or implicitly if your
  1461. system has 64-bit wide datatypes.  See also L<"64-bit support">.
  1462.  
  1463. =head2 Long Doubles
  1464.  
  1465. Some platforms have "long doubles", floating point numbers of even
  1466. larger range than ordinary "doubles".  To enable using long doubles for
  1467. Perl's scalars, use -Duselongdouble.
  1468.  
  1469. =head2 -Dusemorebits
  1470.  
  1471. You can enable both -Duse64bitint and -Duselongdouble with -Dusemorebits.
  1472. See also L<"64-bit support">.
  1473.  
  1474. =head2 -Duselargefiles
  1475.  
  1476. Some platforms support system APIs that are capable of handling large files
  1477. (typically, files larger than two gigabytes).  Perl will try to use these
  1478. APIs if you ask for -Duselargefiles.
  1479.  
  1480. See L<"Large file support"> for more information. 
  1481.  
  1482. =head2 installusrbinperl
  1483.  
  1484. You can use "Configure -Uinstallusrbinperl" which causes installperl
  1485. to skip installing perl also as /usr/bin/perl.  This is useful if you
  1486. prefer not to modify /usr/bin for some reason or another but harmful
  1487. because many scripts assume to find Perl in /usr/bin/perl.
  1488.  
  1489. =head2 SOCKS support
  1490.  
  1491. You can use "Configure -Dusesocks" which causes Perl to probe
  1492. for the SOCKS proxy protocol library (v5, not v4).  For more information
  1493. on SOCKS, see:
  1494.  
  1495.     http://www.socks.nec.com/
  1496.  
  1497. =head2 C<-A> flag
  1498.  
  1499. You can "post-edit" the Configure variables using the Configure C<-A>
  1500. switch.  The editing happens immediately after the platform specific
  1501. hints files have been processed but before the actual configuration
  1502. process starts.  Run C<Configure -h> to find out the full C<-A> syntax.
  1503.  
  1504. =head2 Enhanced Installation Directories
  1505.  
  1506. The installation structure has been enriched to improve the support
  1507. for maintaining multiple versions of perl, to provide locations for
  1508. vendor-supplied modules, scripts, and manpages, and to ease maintenance
  1509. of locally-added modules, scripts, and manpages.  See the section on
  1510. Installation Directories in the INSTALL file for complete details.
  1511. For most users building and installing from source, the defaults should
  1512. be fine.
  1513.  
  1514. If you previously used C<Configure -Dsitelib> or C<-Dsitearch> to set
  1515. special values for library directories, you might wish to consider using
  1516. the new C<-Dsiteprefix> setting instead.  Also, if you wish to re-use a
  1517. config.sh file from an earlier version of perl, you should be sure to
  1518. check that Configure makes sensible choices for the new directories.
  1519. See INSTALL for complete details.
  1520.  
  1521. =head1 Platform specific changes
  1522.  
  1523. =head2 Supported platforms
  1524.  
  1525. =over 4
  1526.  
  1527. =item *
  1528.  
  1529. VM/ESA is now supported.
  1530.  
  1531. =item *
  1532.  
  1533. Siemens BS2000 is now supported under the POSIX Shell.
  1534.  
  1535. =item *
  1536.  
  1537. The Mach CThreads (NEXTSTEP, OPENSTEP) are now supported by the Thread
  1538. extension.
  1539.  
  1540. =item *
  1541.  
  1542. GNU/Hurd is now supported.
  1543.  
  1544. =item *
  1545.  
  1546. Rhapsody/Darwin is now supported.
  1547.  
  1548. =item *
  1549.  
  1550. EPOC is is now supported (on Psion 5).
  1551.  
  1552. =item *
  1553.  
  1554. The cygwin port (formerly cygwin32) has been greatly improved.
  1555.  
  1556. =back
  1557.  
  1558. =head2 DOS
  1559.  
  1560. =over 4
  1561.  
  1562. =item *
  1563.  
  1564. Perl now works with djgpp 2.02 (and 2.03 alpha).
  1565.  
  1566. =item *
  1567.  
  1568. Environment variable names are not converted to uppercase any more.
  1569.  
  1570. =item *
  1571.  
  1572. Incorrect exit codes from backticks have been fixed.
  1573.  
  1574. =item *
  1575.  
  1576. This port continues to use its own builtin globbing (not File::Glob).
  1577.  
  1578. =back
  1579.  
  1580. =head2 OS390 (OpenEdition MVS)
  1581.  
  1582. Support for this EBCDIC platform has not been renewed in this release.
  1583. There are difficulties in reconciling Perl's standardization on UTF-8
  1584. as its internal representation for characters with the EBCDIC character
  1585. set, because the two are incompatible.
  1586.  
  1587. It is unclear whether future versions will renew support for this
  1588. platform, but the possibility exists.
  1589.  
  1590. =head2 VMS
  1591.  
  1592. Numerous revisions and extensions to configuration, build, testing, and
  1593. installation process to accomodate core changes and VMS-specific options.
  1594.  
  1595. Expand %ENV-handling code to allow runtime mapping to logical names,
  1596. CLI symbols, and CRTL environ array.
  1597.  
  1598. Extension of subprocess invocation code to accept filespecs as command
  1599. "verbs".
  1600.  
  1601. Add to Perl command line processing the ability to use default file types and
  1602. to recognize Unix-style C<2E<gt>&1>.
  1603.  
  1604. Expansion of File::Spec::VMS routines, and integration into ExtUtils::MM_VMS.
  1605.  
  1606. Extension of ExtUtils::MM_VMS to handle complex extensions more flexibly.
  1607.  
  1608. Barewords at start of Unix-syntax paths may be treated as text rather than
  1609. only as logical names.
  1610.  
  1611. Optional secure translation of several logical names used internally by Perl.
  1612.  
  1613. Miscellaneous bugfixing and porting of new core code to VMS.
  1614.  
  1615. Thanks are gladly extended to the many people who have contributed VMS
  1616. patches, testing, and ideas.
  1617.  
  1618. =head2 Win32
  1619.  
  1620. Perl can now emulate fork() internally, using multiple interpreters running
  1621. in different concurrent threads.  This support must be enabled at build
  1622. time.  See L<perlfork> for detailed information.
  1623.  
  1624. When given a pathname that consists only of a drivename, such as C<A:>,
  1625. opendir() and stat() now use the current working directory for the drive
  1626. rather than the drive root.
  1627.  
  1628. The builtin XSUB functions in the Win32:: namespace are documented.  See
  1629. L<Win32>.
  1630.  
  1631. $^X now contains the full path name of the running executable.
  1632.  
  1633. A Win32::GetLongPathName() function is provided to complement
  1634. Win32::GetFullPathName() and Win32::GetShortPathName().  See L<Win32>.
  1635.  
  1636. POSIX::uname() is supported.
  1637.  
  1638. system(1,...) now returns true process IDs rather than process
  1639. handles.  kill() accepts any real process id, rather than strictly
  1640. return values from system(1,...).
  1641.  
  1642. For better compatibility with Unix, C<kill(0, $pid)> can now be used to
  1643. test whether a process exists.
  1644.  
  1645. The C<Shell> module is supported.
  1646.  
  1647. Better support for building Perl under command.com in Windows 95
  1648. has been added.
  1649.  
  1650. Scripts are read in binary mode by default to allow ByteLoader (and
  1651. the filter mechanism in general) to work properly.  For compatibility,
  1652. the DATA filehandle will be set to text mode if a carriage return is
  1653. detected at the end of the line containing the __END__ or __DATA__
  1654. token; if not, the DATA filehandle will be left open in binary mode.
  1655. Earlier versions always opened the DATA filehandle in text mode.
  1656.  
  1657. The glob() operator is implemented via the C<File::Glob> extension,
  1658. which supports glob syntax of the C shell.  This increases the flexibility
  1659. of the glob() operator, but there may be compatibility issues for
  1660. programs that relied on the older globbing syntax.  If you want to
  1661. preserve compatibility with the older syntax, you might want to run
  1662. perl with C<-MFile::DosGlob>.  For details and compatibility information,
  1663. see L<File::Glob>.
  1664.  
  1665. =head1 Significant bug fixes
  1666.  
  1667. =head2 <HANDLE> on empty files
  1668.  
  1669. With C<$/> set to C<undef>, "slurping" an empty file returns a string of
  1670. zero length (instead of C<undef>, as it used to) the first time the
  1671. HANDLE is read after C<$/> is set to C<undef>.  Further reads yield
  1672. C<undef>.
  1673.  
  1674. This means that the following will append "foo" to an empty file (it used
  1675. to do nothing):
  1676.  
  1677.     perl -0777 -pi -e 's/^/foo/' empty_file
  1678.  
  1679. The behaviour of:
  1680.  
  1681.     perl -pi -e 's/^/foo/' empty_file
  1682.  
  1683. is unchanged (it continues to leave the file empty).
  1684.  
  1685. =head2 C<eval '...'> improvements
  1686.  
  1687. Line numbers (as reflected by caller() and most diagnostics) within
  1688. C<eval '...'> were often incorrect where here documents were involved.
  1689. This has been corrected.
  1690.  
  1691. Lexical lookups for variables appearing in C<eval '...'> within
  1692. functions that were themselves called within an C<eval '...'> were
  1693. searching the wrong place for lexicals.  The lexical search now
  1694. correctly ends at the subroutine's block boundary.
  1695.  
  1696. The use of C<return> within C<eval {...}> caused $@ not to be reset
  1697. correctly when no exception occurred within the eval.  This has
  1698. been fixed.
  1699.  
  1700. Parsing of here documents used to be flawed when they appeared as
  1701. the replacement expression in C<eval 's/.../.../e'>.  This has
  1702. been fixed.
  1703.  
  1704. =head2 All compilation errors are true errors
  1705.  
  1706. Some "errors" encountered at compile time were by neccessity 
  1707. generated as warnings followed by eventual termination of the
  1708. program.  This enabled more such errors to be reported in a
  1709. single run, rather than causing a hard stop at the first error
  1710. that was encountered.
  1711.  
  1712. The mechanism for reporting such errors has been reimplemented
  1713. to queue compile-time errors and report them at the end of the
  1714. compilation as true errors rather than as warnings.  This fixes
  1715. cases where error messages leaked through in the form of warnings
  1716. when code was compiled at run time using C<eval STRING>, and
  1717. also allows such errors to be reliably trapped using C<eval "...">.
  1718.  
  1719. =head2 Implicitly closed filehandles are safer
  1720.  
  1721. Sometimes implicitly closed filehandles (as when they are localized,
  1722. and Perl automatically closes them on exiting the scope) could
  1723. inadvertently set $? or $!.  This has been corrected.
  1724.  
  1725.  
  1726. =head2 Behavior of list slices is more consistent
  1727.  
  1728. When taking a slice of a literal list (as opposed to a slice of
  1729. an array or hash), Perl used to return an empty list if the
  1730. result happened to be composed of all undef values.
  1731.  
  1732. The new behavior is to produce an empty list if (and only if)
  1733. the original list was empty.  Consider the following example:
  1734.  
  1735.     @a = (1,undef,undef,2)[2,1,2];
  1736.  
  1737. The old behavior would have resulted in @a having no elements.
  1738. The new behavior ensures it has three undefined elements.
  1739.  
  1740. Note in particular that the behavior of slices of the following
  1741. cases remains unchanged:
  1742.  
  1743.     @a = ()[1,2];
  1744.     @a = (getpwent)[7,0];
  1745.     @a = (anything_returning_empty_list())[2,1,2];
  1746.     @a = @b[2,1,2];
  1747.     @a = @c{'a','b','c'};
  1748.  
  1749. See L<perldata>.
  1750.  
  1751. =head2 C<(\$)> prototype and C<$foo{a}>
  1752.  
  1753. A scalar reference prototype now correctly allows a hash or
  1754. array element in that slot.
  1755.  
  1756. =head2 C<goto &sub> and AUTOLOAD
  1757.  
  1758. The C<goto &sub> construct works correctly when C<&sub> happens
  1759. to be autoloaded.
  1760.  
  1761. =head2 C<-bareword> allowed under C<use integer>
  1762.  
  1763. The autoquoting of barewords preceded by C<-> did not work
  1764. in prior versions when the C<integer> pragma was enabled.
  1765. This has been fixed.
  1766.  
  1767. =head2 Failures in DESTROY()
  1768.  
  1769. When code in a destructor threw an exception, it went unnoticed
  1770. in earlier versions of Perl, unless someone happened to be
  1771. looking in $@ just after the point the destructor happened to
  1772. run.  Such failures are now visible as warnings when warnings are
  1773. enabled.
  1774.  
  1775. =head2 Locale bugs fixed
  1776.  
  1777. printf() and sprintf() previously reset the numeric locale
  1778. back to the default "C" locale.  This has been fixed.
  1779.  
  1780. Numbers formatted according to the local numeric locale
  1781. (such as using a decimal comma instead of a decimal dot) caused
  1782. "isn't numeric" warnings, even while the operations accessing
  1783. those numbers produced correct results.  These warnings have been
  1784. discontinued.
  1785.  
  1786. =head2 Memory leaks
  1787.  
  1788. The C<eval 'return sub {...}'> construct could sometimes leak
  1789. memory.  This has been fixed.
  1790.  
  1791. Operations that aren't filehandle constructors used to leak memory
  1792. when used on invalid filehandles.  This has been fixed.
  1793.  
  1794. Constructs that modified C<@_> could fail to deallocate values
  1795. in C<@_> and thus leak memory.  This has been corrected.
  1796.  
  1797. =head2 Spurious subroutine stubs after failed subroutine calls
  1798.  
  1799. Perl could sometimes create empty subroutine stubs when a
  1800. subroutine was not found in the package.  Such cases stopped
  1801. later method lookups from progressing into base packages.
  1802. This has been corrected.
  1803.  
  1804. =head2 Taint failures under C<-U>
  1805.  
  1806. When running in unsafe mode, taint violations could sometimes
  1807. cause silent failures.  This has been fixed.
  1808.  
  1809. =head2 END blocks and the C<-c> switch
  1810.  
  1811. Prior versions used to run BEGIN B<and> END blocks when Perl was
  1812. run in compile-only mode.  Since this is typically not the expected
  1813. behavior, END blocks are not executed anymore when the C<-c> switch
  1814. is used.
  1815.  
  1816. See L<CHECK blocks> for how to run things when the compile phase ends.
  1817.  
  1818. =head2 Potential to leak DATA filehandles
  1819.  
  1820. Using the C<__DATA__> token creates an implicit filehandle to
  1821. the file that contains the token.  It is the program's
  1822. responsibility to close it when it is done reading from it.
  1823.  
  1824. This caveat is now better explained in the documentation.
  1825. See L<perldata>.
  1826.  
  1827. =head1 New or Changed Diagnostics
  1828.  
  1829. =over 4
  1830.  
  1831. =item "%s" variable %s masks earlier declaration in same %s
  1832.  
  1833. (W misc) A "my" or "our" variable has been redeclared in the current scope or statement,
  1834. effectively eliminating all access to the previous instance.  This is almost
  1835. always a typographical error.  Note that the earlier variable will still exist
  1836. until the end of the scope or until all closure referents to it are
  1837. destroyed.
  1838.  
  1839. =item "my sub" not yet implemented
  1840.  
  1841. (F) Lexically scoped subroutines are not yet implemented.  Don't try that
  1842. yet.
  1843.  
  1844. =item "our" variable %s redeclared
  1845.  
  1846. (W misc) You seem to have already declared the same global once before in the
  1847. current lexical scope.
  1848.  
  1849. =item '!' allowed only after types %s
  1850.  
  1851. (F) The '!' is allowed in pack() and unpack() only after certain types.
  1852. See L<perlfunc/pack>.
  1853.  
  1854. =item / cannot take a count
  1855.  
  1856. (F) You had an unpack template indicating a counted-length string,
  1857. but you have also specified an explicit size for the string.
  1858. See L<perlfunc/pack>.
  1859.  
  1860. =item / must be followed by a, A or Z
  1861.  
  1862. (F) You had an unpack template indicating a counted-length string,
  1863. which must be followed by one of the letters a, A or Z
  1864. to indicate what sort of string is to be unpacked.
  1865. See L<perlfunc/pack>.
  1866.  
  1867. =item / must be followed by a*, A* or Z*
  1868.  
  1869. (F) You had a pack template indicating a counted-length string,
  1870. Currently the only things that can have their length counted are a*, A* or Z*.
  1871. See L<perlfunc/pack>.
  1872.  
  1873. =item / must follow a numeric type
  1874.  
  1875. (F) You had an unpack template that contained a '#',
  1876. but this did not follow some numeric unpack specification.
  1877. See L<perlfunc/pack>.
  1878.  
  1879. =item /%s/: Unrecognized escape \\%c passed through
  1880.  
  1881. (W regexp) You used a backslash-character combination which is not recognized
  1882. by Perl.  This combination appears in an interpolated variable or a
  1883. C<'>-delimited regular expression.  The character was understood literally.
  1884.  
  1885. =item /%s/: Unrecognized escape \\%c in character class passed through
  1886.  
  1887. (W regexp) You used a backslash-character combination which is not recognized
  1888. by Perl inside character classes.  The character was understood literally.
  1889.  
  1890. =item /%s/ should probably be written as "%s"
  1891.  
  1892. (W syntax) You have used a pattern where Perl expected to find a string,
  1893. as in the first argument to C<join>.  Perl will treat the true
  1894. or false result of matching the pattern against $_ as the string,
  1895. which is probably not what you had in mind.
  1896.  
  1897. =item %s() called too early to check prototype
  1898.  
  1899. (W prototype) You've called a function that has a prototype before the parser saw a
  1900. definition or declaration for it, and Perl could not check that the call
  1901. conforms to the prototype.  You need to either add an early prototype
  1902. declaration for the subroutine in question, or move the subroutine
  1903. definition ahead of the call to get proper prototype checking.  Alternatively,
  1904. if you are certain that you're calling the function correctly, you may put
  1905. an ampersand before the name to avoid the warning.  See L<perlsub>.
  1906.  
  1907. =item %s argument is not a HASH or ARRAY element
  1908.  
  1909. (F) The argument to exists() must be a hash or array element, such as:
  1910.  
  1911.     $foo{$bar}
  1912.     $ref->{"susie"}[12]
  1913.  
  1914. =item %s argument is not a HASH or ARRAY element or slice
  1915.  
  1916. (F) The argument to delete() must be either a hash or array element, such as:
  1917.  
  1918.     $foo{$bar}
  1919.     $ref->{"susie"}[12]
  1920.  
  1921. or a hash or array slice, such as:
  1922.  
  1923.     @foo[$bar, $baz, $xyzzy]
  1924.     @{$ref->[12]}{"susie", "queue"}
  1925.  
  1926. =item %s argument is not a subroutine name
  1927.  
  1928. (F) The argument to exists() for C<exists &sub> must be a subroutine
  1929. name, and not a subroutine call.  C<exists &sub()> will generate this error.
  1930.  
  1931. =item %s package attribute may clash with future reserved word: %s
  1932.  
  1933. (W reserved) A lowercase attribute name was used that had a package-specific handler.
  1934. That name might have a meaning to Perl itself some day, even though it
  1935. doesn't yet.  Perhaps you should use a mixed-case attribute name, instead.
  1936. See L<attributes>.
  1937.  
  1938. =item (in cleanup) %s
  1939.  
  1940. (W misc) This prefix usually indicates that a DESTROY() method raised
  1941. the indicated exception.  Since destructors are usually called by
  1942. the system at arbitrary points during execution, and often a vast
  1943. number of times, the warning is issued only once for any number
  1944. of failures that would otherwise result in the same message being
  1945. repeated.
  1946.  
  1947. Failure of user callbacks dispatched using the C<G_KEEPERR> flag
  1948. could also result in this warning.  See L<perlcall/G_KEEPERR>.
  1949.  
  1950. =item <> should be quotes
  1951.  
  1952. (F) You wrote C<< require <file> >> when you should have written
  1953. C<require 'file'>.
  1954.  
  1955. =item Attempt to join self
  1956.  
  1957. (F) You tried to join a thread from within itself, which is an
  1958. impossible task.  You may be joining the wrong thread, or you may
  1959. need to move the join() to some other thread.
  1960.  
  1961. =item Bad evalled substitution pattern
  1962.  
  1963. (F) You've used the /e switch to evaluate the replacement for a
  1964. substitution, but perl found a syntax error in the code to evaluate,
  1965. most likely an unexpected right brace '}'.
  1966.  
  1967. =item Bad realloc() ignored
  1968.  
  1969. (S) An internal routine called realloc() on something that had never been
  1970. malloc()ed in the first place. Mandatory, but can be disabled by
  1971. setting environment variable C<PERL_BADFREE> to 1.
  1972.  
  1973. =item Bareword found in conditional
  1974.  
  1975. (W bareword) The compiler found a bareword where it expected a conditional,
  1976. which often indicates that an || or && was parsed as part of the
  1977. last argument of the previous construct, for example:
  1978.  
  1979.     open FOO || die;
  1980.  
  1981. It may also indicate a misspelled constant that has been interpreted
  1982. as a bareword:
  1983.  
  1984.     use constant TYPO => 1;
  1985.     if (TYOP) { print "foo" }
  1986.  
  1987. The C<strict> pragma is useful in avoiding such errors.
  1988.  
  1989. =item Binary number > 0b11111111111111111111111111111111 non-portable
  1990.  
  1991. (W portable) The binary number you specified is larger than 2**32-1
  1992. (4294967295) and therefore non-portable between systems.  See
  1993. L<perlport> for more on portability concerns.
  1994.  
  1995. =item Bit vector size > 32 non-portable
  1996.  
  1997. (W portable) Using bit vector sizes larger than 32 is non-portable.
  1998.  
  1999. =item Buffer overflow in prime_env_iter: %s
  2000.  
  2001. (W internal) A warning peculiar to VMS.  While Perl was preparing to iterate over
  2002. %ENV, it encountered a logical name or symbol definition which was too long,
  2003. so it was truncated to the string shown.
  2004.  
  2005. =item Can't check filesystem of script "%s"
  2006.  
  2007. (P) For some reason you can't check the filesystem of the script for nosuid.
  2008.  
  2009. =item Can't declare class for non-scalar %s in "%s"
  2010.  
  2011. (S) Currently, only scalar variables can declared with a specific class
  2012. qualifier in a "my" or "our" declaration.  The semantics may be extended
  2013. for other types of variables in future.
  2014.  
  2015. =item Can't declare %s in "%s"
  2016.  
  2017. (F) Only scalar, array, and hash variables may be declared as "my" or
  2018. "our" variables.  They must have ordinary identifiers as names.
  2019.  
  2020. =item Can't ignore signal CHLD, forcing to default
  2021.  
  2022. (W signal) Perl has detected that it is being run with the SIGCHLD signal
  2023. (sometimes known as SIGCLD) disabled.  Since disabling this signal
  2024. will interfere with proper determination of exit status of child
  2025. processes, Perl has reset the signal to its default value.
  2026. This situation typically indicates that the parent program under
  2027. which Perl may be running (e.g., cron) is being very careless.
  2028.  
  2029. =item Can't modify non-lvalue subroutine call
  2030.  
  2031. (F) Subroutines meant to be used in lvalue context should be declared as
  2032. such, see L<perlsub/"Lvalue subroutines">.
  2033.  
  2034. =item Can't read CRTL environ
  2035.  
  2036. (S) A warning peculiar to VMS.  Perl tried to read an element of %ENV
  2037. from the CRTL's internal environment array and discovered the array was
  2038. missing.  You need to figure out where your CRTL misplaced its environ
  2039. or define F<PERL_ENV_TABLES> (see L<perlvms>) so that environ is not searched.
  2040.  
  2041. =item Can't remove %s: %s, skipping file 
  2042.  
  2043. (S) You requested an inplace edit without creating a backup file.  Perl
  2044. was unable to remove the original file to replace it with the modified
  2045. file.  The file was left unmodified.
  2046.  
  2047. =item Can't return %s from lvalue subroutine
  2048.  
  2049. (F) Perl detected an attempt to return illegal lvalues (such
  2050. as temporary or readonly values) from a subroutine used as an lvalue.
  2051. This is not allowed.
  2052.  
  2053. =item Can't weaken a nonreference
  2054.  
  2055. (F) You attempted to weaken something that was not a reference.  Only
  2056. references can be weakened.
  2057.  
  2058. =item Character class [:%s:] unknown
  2059.  
  2060. (F) The class in the character class [: :] syntax is unknown.
  2061. See L<perlre>.
  2062.  
  2063. =item Character class syntax [%s] belongs inside character classes
  2064.  
  2065. (W unsafe) The character class constructs [: :], [= =], and [. .]  go
  2066. I<inside> character classes, the [] are part of the construct,
  2067. for example: /[012[:alpha:]345]/.  Note that [= =] and [. .]
  2068. are not currently implemented; they are simply placeholders for
  2069. future extensions.
  2070.  
  2071. =item Constant is not %s reference
  2072.  
  2073. (F) A constant value (perhaps declared using the C<use constant> pragma)
  2074. is being dereferenced, but it amounts to the wrong type of reference.  The
  2075. message indicates the type of reference that was expected. This usually
  2076. indicates a syntax error in dereferencing the constant value.
  2077. See L<perlsub/"Constant Functions"> and L<constant>.
  2078.  
  2079. =item constant(%s): %s
  2080.  
  2081. (F) The parser found inconsistencies either while attempting to define an
  2082. overloaded constant, or when trying to find the character name specified
  2083. in the C<\N{...}> escape.  Perhaps you forgot to load the corresponding
  2084. C<overload> or C<charnames> pragma?  See L<charnames> and L<overload>.
  2085.  
  2086. =item CORE::%s is not a keyword
  2087.  
  2088. (F) The CORE:: namespace is reserved for Perl keywords.
  2089.  
  2090. =item defined(@array) is deprecated
  2091.  
  2092. (D) defined() is not usually useful on arrays because it checks for an
  2093. undefined I<scalar> value.  If you want to see if the array is empty,
  2094. just use C<if (@array) { # not empty }> for example.  
  2095.  
  2096. =item defined(%hash) is deprecated
  2097.  
  2098. (D) defined() is not usually useful on hashes because it checks for an
  2099. undefined I<scalar> value.  If you want to see if the hash is empty,
  2100. just use C<if (%hash) { # not empty }> for example.  
  2101.  
  2102. =item Did not produce a valid header
  2103.  
  2104. See Server error.
  2105.  
  2106. =item (Did you mean "local" instead of "our"?)
  2107.  
  2108. (W misc) Remember that "our" does not localize the declared global variable.
  2109. You have declared it again in the same lexical scope, which seems superfluous.
  2110.  
  2111. =item Document contains no data
  2112.  
  2113. See Server error.
  2114.  
  2115. =item entering effective %s failed
  2116.  
  2117. (F) While under the C<use filetest> pragma, switching the real and
  2118. effective uids or gids failed.
  2119.  
  2120. =item false [] range "%s" in regexp
  2121.  
  2122. (W regexp) A character class range must start and end at a literal character, not
  2123. another character class like C<\d> or C<[:alpha:]>.  The "-" in your false
  2124. range is interpreted as a literal "-".  Consider quoting the "-",  "\-".
  2125. See L<perlre>.
  2126.  
  2127. =item Filehandle %s opened only for output
  2128.  
  2129. (W io) You tried to read from a filehandle opened only for writing.  If you
  2130. intended it to be a read/write filehandle, you needed to open it with
  2131. "+<" or "+>" or "+>>" instead of with "<" or nothing.  If
  2132. you intended only to read from the file, use "<".  See
  2133. L<perlfunc/open>.
  2134.  
  2135. =item flock() on closed filehandle %s
  2136.  
  2137. (W closed) The filehandle you're attempting to flock() got itself closed some
  2138. time before now.  Check your logic flow.  flock() operates on filehandles.
  2139. Are you attempting to call flock() on a dirhandle by the same name?
  2140.  
  2141. =item Global symbol "%s" requires explicit package name
  2142.  
  2143. (F) You've said "use strict vars", which indicates that all variables
  2144. must either be lexically scoped (using "my"), declared beforehand using
  2145. "our", or explicitly qualified to say which package the global variable
  2146. is in (using "::").
  2147.  
  2148. =item Hexadecimal number > 0xffffffff non-portable
  2149.  
  2150. (W portable) The hexadecimal number you specified is larger than 2**32-1
  2151. (4294967295) and therefore non-portable between systems.  See
  2152. L<perlport> for more on portability concerns.
  2153.  
  2154. =item Ill-formed CRTL environ value "%s"
  2155.  
  2156. (W internal) A warning peculiar to VMS.  Perl tried to read the CRTL's internal
  2157. environ array, and encountered an element without the C<=> delimiter
  2158. used to spearate keys from values.  The element is ignored.
  2159.  
  2160. =item Ill-formed message in prime_env_iter: |%s|
  2161.  
  2162. (W internal) A warning peculiar to VMS.  Perl tried to read a logical name
  2163. or CLI symbol definition when preparing to iterate over %ENV, and
  2164. didn't see the expected delimiter between key and value, so the
  2165. line was ignored.
  2166.  
  2167. =item Illegal binary digit %s
  2168.  
  2169. (F) You used a digit other than 0 or 1 in a binary number.
  2170.  
  2171. =item Illegal binary digit %s ignored
  2172.  
  2173. (W digit) You may have tried to use a digit other than 0 or 1 in a binary number.
  2174. Interpretation of the binary number stopped before the offending digit.
  2175.  
  2176. =item Illegal number of bits in vec
  2177.  
  2178. (F) The number of bits in vec() (the third argument) must be a power of
  2179. two from 1 to 32 (or 64, if your platform supports that).
  2180.  
  2181. =item Integer overflow in %s number
  2182.  
  2183. (W overflow) The hexadecimal, octal or binary number you have specified either
  2184. as a literal or as an argument to hex() or oct() is too big for your
  2185. architecture, and has been converted to a floating point number.  On a
  2186. 32-bit architecture the largest hexadecimal, octal or binary number
  2187. representable without overflow is 0xFFFFFFFF, 037777777777, or
  2188. 0b11111111111111111111111111111111 respectively.  Note that Perl
  2189. transparently promotes all numbers to a floating point representation
  2190. internally--subject to loss of precision errors in subsequent
  2191. operations.
  2192.  
  2193. =item Invalid %s attribute: %s
  2194.  
  2195. The indicated attribute for a subroutine or variable was not recognized
  2196. by Perl or by a user-supplied handler.  See L<attributes>.
  2197.  
  2198. =item Invalid %s attributes: %s
  2199.  
  2200. The indicated attributes for a subroutine or variable were not recognized
  2201. by Perl or by a user-supplied handler.  See L<attributes>.
  2202.  
  2203. =item invalid [] range "%s" in regexp
  2204.  
  2205. The offending range is now explicitly displayed.
  2206.  
  2207. =item Invalid separator character %s in attribute list
  2208.  
  2209. (F) Something other than a colon or whitespace was seen between the
  2210. elements of an attribute list.  If the previous attribute
  2211. had a parenthesised parameter list, perhaps that list was terminated
  2212. too soon.  See L<attributes>.
  2213.  
  2214. =item Invalid separator character %s in subroutine attribute list
  2215.  
  2216. (F) Something other than a colon or whitespace was seen between the
  2217. elements of a subroutine attribute list.  If the previous attribute
  2218. had a parenthesised parameter list, perhaps that list was terminated
  2219. too soon.
  2220.  
  2221. =item leaving effective %s failed
  2222.  
  2223. (F) While under the C<use filetest> pragma, switching the real and
  2224. effective uids or gids failed.
  2225.  
  2226. =item Lvalue subs returning %s not implemented yet
  2227.  
  2228. (F) Due to limitations in the current implementation, array and hash
  2229. values cannot be returned in subroutines used in lvalue context.
  2230. See L<perlsub/"Lvalue subroutines">.
  2231.  
  2232. =item Method %s not permitted
  2233.  
  2234. See Server error.
  2235.  
  2236. =item Missing %sbrace%s on \N{}
  2237.  
  2238. (F) Wrong syntax of character name literal C<\N{charname}> within
  2239. double-quotish context.
  2240.  
  2241. =item Missing command in piped open
  2242.  
  2243. (W pipe) You used the C<open(FH, "| command")> or C<open(FH, "command |")>
  2244. construction, but the command was missing or blank.
  2245.  
  2246. =item Missing name in "my sub"
  2247.  
  2248. (F) The reserved syntax for lexically scoped subroutines requires that they
  2249. have a name with which they can be found.
  2250.  
  2251. =item No %s specified for -%c
  2252.  
  2253. (F) The indicated command line switch needs a mandatory argument, but
  2254. you haven't specified one.
  2255.  
  2256. =item No package name allowed for variable %s in "our"
  2257.  
  2258. (F) Fully qualified variable names are not allowed in "our" declarations,
  2259. because that doesn't make much sense under existing semantics.  Such
  2260. syntax is reserved for future extensions.
  2261.  
  2262. =item No space allowed after -%c
  2263.  
  2264. (F) The argument to the indicated command line switch must follow immediately
  2265. after the switch, without intervening spaces.
  2266.  
  2267. =item no UTC offset information; assuming local time is UTC
  2268.  
  2269. (S) A warning peculiar to VMS.  Perl was unable to find the local
  2270. timezone offset, so it's assuming that local system time is equivalent
  2271. to UTC.  If it's not, define the logical name F<SYS$TIMEZONE_DIFFERENTIAL>
  2272. to translate to the number of seconds which need to be added to UTC to
  2273. get local time.
  2274.  
  2275. =item Octal number > 037777777777 non-portable
  2276.  
  2277. (W portable) The octal number you specified is larger than 2**32-1 (4294967295)
  2278. and therefore non-portable between systems.  See L<perlport> for more
  2279. on portability concerns.
  2280.  
  2281. See also L<perlport> for writing portable code.
  2282.  
  2283. =item panic: del_backref
  2284.  
  2285. (P) Failed an internal consistency check while trying to reset a weak
  2286. reference.
  2287.  
  2288. =item panic: kid popen errno read
  2289.  
  2290. (F) forked child returned an incomprehensible message about its errno.
  2291.  
  2292. =item panic: magic_killbackrefs
  2293.  
  2294. (P) Failed an internal consistency check while trying to reset all weak
  2295. references to an object.
  2296.  
  2297. =item Parentheses missing around "%s" list
  2298.  
  2299. (W parenthesis) You said something like
  2300.  
  2301.     my $foo, $bar = @_;
  2302.  
  2303. when you meant
  2304.  
  2305.     my ($foo, $bar) = @_;
  2306.  
  2307. Remember that "my", "our", and "local" bind tighter than comma.
  2308.  
  2309. =item Possible Y2K bug: %s
  2310.  
  2311. (W y2k) You are concatenating the number 19 with another number, which
  2312. could be a potential Year 2000 problem.
  2313.  
  2314. =item pragma "attrs" is deprecated, use "sub NAME : ATTRS" instead
  2315.  
  2316. (W deprecated) You have written somehing like this:
  2317.  
  2318.     sub doit
  2319.     {
  2320.         use attrs qw(locked);
  2321.     }
  2322.  
  2323. You should use the new declaration syntax instead.
  2324.  
  2325.     sub doit : locked
  2326.     {
  2327.         ...
  2328.  
  2329. The C<use attrs> pragma is now obsolete, and is only provided for
  2330. backward-compatibility. See L<perlsub/"Subroutine Attributes">.
  2331.  
  2332.  
  2333. =item Premature end of script headers
  2334.  
  2335. See Server error.
  2336.  
  2337. =item Repeat count in pack overflows
  2338.  
  2339. (F) You can't specify a repeat count so large that it overflows
  2340. your signed integers.  See L<perlfunc/pack>.
  2341.  
  2342. =item Repeat count in unpack overflows
  2343.  
  2344. (F) You can't specify a repeat count so large that it overflows
  2345. your signed integers.  See L<perlfunc/unpack>.
  2346.  
  2347. =item realloc() of freed memory ignored
  2348.  
  2349. (S) An internal routine called realloc() on something that had already
  2350. been freed.
  2351.  
  2352. =item Reference is already weak
  2353.  
  2354. (W misc) You have attempted to weaken a reference that is already weak.
  2355. Doing so has no effect.
  2356.  
  2357. =item setpgrp can't take arguments
  2358.  
  2359. (F) Your system has the setpgrp() from BSD 4.2, which takes no arguments,
  2360. unlike POSIX setpgid(), which takes a process ID and process group ID.
  2361.  
  2362. =item Strange *+?{} on zero-length expression
  2363.  
  2364. (W regexp) You applied a regular expression quantifier in a place where it
  2365. makes no sense, such as on a zero-width assertion.
  2366. Try putting the quantifier inside the assertion instead.  For example,
  2367. the way to match "abc" provided that it is followed by three
  2368. repetitions of "xyz" is C</abc(?=(?:xyz){3})/>, not C</abc(?=xyz){3}/>.
  2369.  
  2370. =item switching effective %s is not implemented
  2371.  
  2372. (F) While under the C<use filetest> pragma, we cannot switch the
  2373. real and effective uids or gids.
  2374.  
  2375. =item This Perl can't reset CRTL environ elements (%s)
  2376.  
  2377. =item This Perl can't set CRTL environ elements (%s=%s)
  2378.  
  2379. (W internal) Warnings peculiar to VMS.  You tried to change or delete an element
  2380. of the CRTL's internal environ array, but your copy of Perl wasn't
  2381. built with a CRTL that contained the setenv() function.  You'll need to
  2382. rebuild Perl with a CRTL that does, or redefine F<PERL_ENV_TABLES> (see
  2383. L<perlvms>) so that the environ array isn't the target of the change to
  2384. %ENV which produced the warning.
  2385.  
  2386. =item Too late to run %s block
  2387.  
  2388. (W void) A CHECK or INIT block is being defined during run time proper,
  2389. when the opportunity to run them has already passed.  Perhaps you are
  2390. loading a file with C<require> or C<do> when you should be using
  2391. C<use> instead.  Or perhaps you should put the C<require> or C<do>
  2392. inside a BEGIN block.
  2393.  
  2394. =item Unknown open() mode '%s'
  2395.  
  2396. (F) The second argument of 3-argument open() is not among the list
  2397. of valid modes: C<< < >>, C<< > >>, C<<< >> >>>, C<< +< >>,
  2398. C<< +> >>, C<<< +>> >>>, C<-|>, C<|->.
  2399.  
  2400. =item Unknown process %x sent message to prime_env_iter: %s
  2401.  
  2402. (P) An error peculiar to VMS.  Perl was reading values for %ENV before
  2403. iterating over it, and someone else stuck a message in the stream of
  2404. data Perl expected.  Someone's very confused, or perhaps trying to
  2405. subvert Perl's population of %ENV for nefarious purposes.
  2406.  
  2407. =item Unrecognized escape \\%c passed through
  2408.  
  2409. (W misc) You used a backslash-character combination which is not recognized
  2410. by Perl.  The character was understood literally.
  2411.  
  2412. =item Unterminated attribute parameter in attribute list
  2413.  
  2414. (F) The lexer saw an opening (left) parenthesis character while parsing an
  2415. attribute list, but the matching closing (right) parenthesis
  2416. character was not found.  You may need to add (or remove) a backslash
  2417. character to get your parentheses to balance.  See L<attributes>.
  2418.  
  2419. =item Unterminated attribute list
  2420.  
  2421. (F) The lexer found something other than a simple identifier at the start
  2422. of an attribute, and it wasn't a semicolon or the start of a
  2423. block.  Perhaps you terminated the parameter list of the previous attribute
  2424. too soon.  See L<attributes>.
  2425.  
  2426. =item Unterminated attribute parameter in subroutine attribute list
  2427.  
  2428. (F) The lexer saw an opening (left) parenthesis character while parsing a
  2429. subroutine attribute list, but the matching closing (right) parenthesis
  2430. character was not found.  You may need to add (or remove) a backslash
  2431. character to get your parentheses to balance.
  2432.  
  2433. =item Unterminated subroutine attribute list
  2434.  
  2435. (F) The lexer found something other than a simple identifier at the start
  2436. of a subroutine attribute, and it wasn't a semicolon or the start of a
  2437. block.  Perhaps you terminated the parameter list of the previous attribute
  2438. too soon.
  2439.  
  2440. =item Value of CLI symbol "%s" too long
  2441.  
  2442. (W misc) A warning peculiar to VMS.  Perl tried to read the value of an %ENV
  2443. element from a CLI symbol table, and found a resultant string longer
  2444. than 1024 characters.  The return value has been truncated to 1024
  2445. characters.
  2446.  
  2447. =item Version number must be a constant number
  2448.  
  2449. (P) The attempt to translate a C<use Module n.n LIST> statement into
  2450. its equivalent C<BEGIN> block found an internal inconsistency with
  2451. the version number.
  2452.  
  2453. =back
  2454.  
  2455. =head1 New tests
  2456.  
  2457. =over 4
  2458.  
  2459. =item    lib/attrs
  2460.  
  2461. Compatibility tests for C<sub : attrs> vs the older C<use attrs>.
  2462.  
  2463. =item    lib/env
  2464.  
  2465. Tests for new environment scalar capability (e.g., C<use Env qw($BAR);>).
  2466.  
  2467. =item    lib/env-array
  2468.  
  2469. Tests for new environment array capability (e.g., C<use Env qw(@PATH);>).
  2470.  
  2471. =item    lib/io_const
  2472.  
  2473. IO constants (SEEK_*, _IO*).
  2474.  
  2475. =item    lib/io_dir
  2476.  
  2477. Directory-related IO methods (new, read, close, rewind, tied delete).
  2478.  
  2479. =item    lib/io_multihomed
  2480.  
  2481. INET sockets with multi-homed hosts.
  2482.  
  2483. =item    lib/io_poll
  2484.  
  2485. IO poll().
  2486.  
  2487. =item    lib/io_unix
  2488.  
  2489. UNIX sockets.
  2490.  
  2491. =item    op/attrs
  2492.  
  2493. Regression tests for C<my ($x,@y,%z) : attrs> and <sub : attrs>.
  2494.  
  2495. =item    op/filetest
  2496.  
  2497. File test operators.
  2498.  
  2499. =item    op/lex_assign
  2500.  
  2501. Verify operations that access pad objects (lexicals and temporaries).
  2502.  
  2503. =item    op/exists_sub
  2504.  
  2505. Verify C<exists &sub> operations.
  2506.  
  2507. =back
  2508.  
  2509. =head1 Incompatible Changes
  2510.  
  2511. =head2 Perl Source Incompatibilities
  2512.  
  2513. Beware that any new warnings that have been added or old ones
  2514. that have been enhanced are B<not> considered incompatible changes.
  2515.  
  2516. Since all new warnings must be explicitly requested via the C<-w>
  2517. switch or the C<warnings> pragma, it is ultimately the programmer's
  2518. responsibility to ensure that warnings are enabled judiciously.
  2519.  
  2520. =over 4
  2521.  
  2522. =item CHECK is a new keyword
  2523.  
  2524. All subroutine definitions named CHECK are now special.  See
  2525. C</"Support for CHECK blocks"> for more information.
  2526.  
  2527. =item Treatment of list slices of undef has changed
  2528.  
  2529. There is a potential incompatibility in the behavior of list slices
  2530. that are comprised entirely of undefined values.
  2531. See L</"Behavior of list slices is more consistent">.
  2532.  
  2533. =head2 Format of $English::PERL_VERSION is different
  2534.  
  2535. The English module now sets $PERL_VERSION to $^V (a string value) rather
  2536. than C<$]> (a numeric value).  This is a potential incompatibility.
  2537. Send us a report via perlbug if you are affected by this.
  2538.  
  2539. See L</"Improved Perl version numbering system"> for the reasons for
  2540. this change.
  2541.  
  2542. =item Literals of the form C<1.2.3> parse differently
  2543.  
  2544. Previously, numeric literals with more than one dot in them were
  2545. interpreted as a floating point number concatenated with one or more
  2546. numbers.  Such "numbers" are now parsed as strings composed of the
  2547. specified ordinals.
  2548.  
  2549. For example, C<print 97.98.99> used to output C<97.9899> in earlier
  2550. versions, but now prints C<abc>.
  2551.  
  2552. See L</"Support for strings represented as a vector of ordinals">.
  2553.  
  2554. =item Possibly changed pseudo-random number generator
  2555.  
  2556. Perl programs that depend on reproducing a specific set of pseudo-random
  2557. numbers may now produce different output due to improvements made to the
  2558. rand() builtin.  You can use C<sh Configure -Drandfunc=rand> to obtain
  2559. the old behavior.
  2560.  
  2561. See L</"Better pseudo-random number generator">.
  2562.  
  2563. =item Hashing function for hash keys has changed
  2564.  
  2565. Even though Perl hashes are not order preserving, the apparently
  2566. random order encountered when iterating on the contents of a hash
  2567. is actually determined by the hashing algorithm used.  Improvements
  2568. in the algorithm may yield a random order that is B<different> from
  2569. that of previous versions, especially when iterating on hashes.
  2570.  
  2571. See L</"Better worst-case behavior of hashes"> for additional
  2572. information.
  2573.  
  2574. =item C<undef> fails on read only values
  2575.  
  2576. Using the C<undef> operator on a readonly value (such as $1) has
  2577. the same effect as assigning C<undef> to the readonly value--it
  2578. throws an exception.
  2579.  
  2580. =item Close-on-exec bit may be set on pipe and socket handles
  2581.  
  2582. Pipe and socket handles are also now subject to the close-on-exec
  2583. behavior determined by the special variable $^F.
  2584.  
  2585. See L</"More consistent close-on-exec behavior">.
  2586.  
  2587. =item Writing C<"$$1"> to mean C<"${$}1"> is unsupported
  2588.  
  2589. Perl 5.004 deprecated the interpretation of C<$$1> and
  2590. similar within interpolated strings to mean C<$$ . "1">,
  2591. but still allowed it.
  2592.  
  2593. In Perl 5.6.0 and later, C<"$$1"> always means C<"${$1}">.
  2594.  
  2595. =item delete(), values() and C<\(%h)> operate on aliases to values, not copies
  2596.  
  2597. delete(), each(), values() and hashes in a list context return the actual
  2598. values in the hash, instead of copies (as they used to in earlier
  2599. versions).  Typical idioms for using these constructs copy the
  2600. returned values, but this can make a significant difference when
  2601. creating references to the returned values.  Keys in the hash are still
  2602. returned as copies when iterating on a hash.
  2603.  
  2604. See also L</"delete(), each(), values() and hash iteration are faster">.
  2605.  
  2606. =item vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS
  2607.  
  2608. vec() generates a run-time error if the BITS argument is not
  2609. a valid power-of-two integer.
  2610.  
  2611. =item Text of some diagnostic output has changed
  2612.  
  2613. Most references to internal Perl operations in diagnostics
  2614. have been changed to be more descriptive.  This may be an
  2615. issue for programs that may incorrectly rely on the exact
  2616. text of diagnostics for proper functioning.
  2617.  
  2618. =item C<%@> has been removed
  2619.  
  2620. The undocumented special variable C<%@> that used to accumulate
  2621. "background" errors (such as those that happen in DESTROY())
  2622. has been removed, because it could potentially result in memory
  2623. leaks.
  2624.  
  2625. =item Parenthesized not() behaves like a list operator
  2626.  
  2627. The C<not> operator now falls under the "if it looks like a function,
  2628. it behaves like a function" rule.
  2629.  
  2630. As a result, the parenthesized form can be used with C<grep> and C<map>.
  2631. The following construct used to be a syntax error before, but it works
  2632. as expected now:
  2633.  
  2634.     grep not($_), @things;
  2635.  
  2636. On the other hand, using C<not> with a literal list slice may not
  2637. work.  The following previously allowed construct:
  2638.  
  2639.     print not (1,2,3)[0];
  2640.  
  2641. needs to be written with additional parentheses now:
  2642.  
  2643.     print not((1,2,3)[0]);
  2644.  
  2645. The behavior remains unaffected when C<not> is not followed by parentheses.
  2646.  
  2647. =item Semantics of bareword prototype C<(*)> have changed
  2648.  
  2649. The semantics of the bareword prototype C<*> have changed.  Perl 5.005
  2650. always coerced simple scalar arguments to a typeglob, which wasn't useful
  2651. in situations where the subroutine must distinguish between a simple
  2652. scalar and a typeglob.  The new behavior is to not coerce bareword
  2653. arguments to a typeglob.  The value will always be visible as either
  2654. a simple scalar or as a reference to a typeglob.
  2655.  
  2656. See L</"More functional bareword prototype (*)">.
  2657.  
  2658. =head2 Semantics of bit operators may have changed on 64-bit platforms
  2659.  
  2660. If your platform is either natively 64-bit or if Perl has been
  2661. configured to used 64-bit integers, i.e., $Config{ivsize} is 8, 
  2662. there may be a potential incompatibility in the behavior of bitwise
  2663. numeric operators (& | ^ ~ << >>).  These operators used to strictly
  2664. operate on the lower 32 bits of integers in previous versions, but now
  2665. operate over the entire native integral width.  In particular, note
  2666. that unary C<~> will produce different results on platforms that have
  2667. different $Config{ivsize}.  For portability, be sure to mask off
  2668. the excess bits in the result of unary C<~>, e.g., C<~$x & 0xffffffff>.
  2669.  
  2670. See L</"Bit operators support full native integer width">.
  2671.  
  2672. =head2 More builtins taint their results
  2673.  
  2674. As described in L</"Improved security features">, there may be more
  2675. sources of taint in a Perl program.
  2676.  
  2677. To avoid these new tainting behaviors, you can build Perl with the
  2678. Configure option C<-Accflags=-DINCOMPLETE_TAINTS>.  Beware that the
  2679. ensuing perl binary may be insecure.
  2680.  
  2681. =back
  2682.  
  2683. =head2 C Source Incompatibilities
  2684.  
  2685. =over 4
  2686.  
  2687. =item C<PERL_POLLUTE>
  2688.  
  2689. Release 5.005 grandfathered old global symbol names by providing preprocessor
  2690. macros for extension source compatibility.  As of release 5.6.0, these
  2691. preprocessor definitions are not available by default.  You need to explicitly
  2692. compile perl with C<-DPERL_POLLUTE> to get these definitions.  For
  2693. extensions still using the old symbols, this option can be
  2694. specified via MakeMaker:
  2695.  
  2696.     perl Makefile.PL POLLUTE=1
  2697.  
  2698. =item C<PERL_IMPLICIT_CONTEXT>
  2699.  
  2700. This new build option provides a set of macros for all API functions
  2701. such that an implicit interpreter/thread context argument is passed to
  2702. every API function.  As a result of this, something like C<sv_setsv(foo,bar)>
  2703. amounts to a macro invocation that actually translates to something like
  2704. C<Perl_sv_setsv(my_perl,foo,bar)>.  While this is generally expected
  2705. to not have any significant source compatibility issues, the difference
  2706. between a macro and a real function call will need to be considered.
  2707.  
  2708. This means that there B<is> a source compatibility issue as a result of
  2709. this if your extensions attempt to use pointers to any of the Perl API
  2710. functions.
  2711.  
  2712. Note that the above issue is not relevant to the default build of
  2713. Perl, whose interfaces continue to match those of prior versions
  2714. (but subject to the other options described here).
  2715.  
  2716. See L<perlguts/"The Perl API"> for detailed information on the
  2717. ramifications of building Perl with this option.
  2718.  
  2719.     NOTE: PERL_IMPLICIT_CONTEXT is automatically enabled whenever Perl is built
  2720.     with one of -Dusethreads, -Dusemultiplicity, or both.  It is not
  2721.     intended to be enabled by users at this time.
  2722.  
  2723. =item C<PERL_POLLUTE_MALLOC>
  2724.  
  2725. Enabling Perl's malloc in release 5.005 and earlier caused the namespace of
  2726. the system's malloc family of functions to be usurped by the Perl versions,
  2727. since by default they used the same names.  Besides causing problems on
  2728. platforms that do not allow these functions to be cleanly replaced, this
  2729. also meant that the system versions could not be called in programs that
  2730. used Perl's malloc.  Previous versions of Perl have allowed this behaviour
  2731. to be suppressed with the HIDEMYMALLOC and EMBEDMYMALLOC preprocessor
  2732. definitions.
  2733.  
  2734. As of release 5.6.0, Perl's malloc family of functions have default names
  2735. distinct from the system versions.  You need to explicitly compile perl with
  2736. C<-DPERL_POLLUTE_MALLOC> to get the older behaviour.  HIDEMYMALLOC
  2737. and EMBEDMYMALLOC have no effect, since the behaviour they enabled is now
  2738. the default.
  2739.  
  2740. Note that these functions do B<not> constitute Perl's memory allocation API.
  2741. See L<perlguts/"Memory Allocation"> for further information about that.
  2742.  
  2743. =back
  2744.  
  2745. =head2 Compatible C Source API Changes
  2746.  
  2747. =over
  2748.  
  2749. =item C<PATCHLEVEL> is now C<PERL_VERSION>
  2750.  
  2751. The cpp macros C<PERL_REVISION>, C<PERL_VERSION>, and C<PERL_SUBVERSION>
  2752. are now available by default from perl.h, and reflect the base revision,
  2753. patchlevel, and subversion respectively.  C<PERL_REVISION> had no
  2754. prior equivalent, while C<PERL_VERSION> and C<PERL_SUBVERSION> were
  2755. previously available as C<PATCHLEVEL> and C<SUBVERSION>.
  2756.  
  2757. The new names cause less pollution of the B<cpp> namespace and reflect what
  2758. the numbers have come to stand for in common practice.  For compatibility,
  2759. the old names are still supported when F<patchlevel.h> is explicitly
  2760. included (as required before), so there is no source incompatibility
  2761. from the change.
  2762.  
  2763. =back
  2764.  
  2765. =head2 Binary Incompatibilities
  2766.  
  2767. In general, the default build of this release is expected to be binary
  2768. compatible for extensions built with the 5.005 release or its maintenance
  2769. versions.  However, specific platforms may have broken binary compatibility
  2770. due to changes in the defaults used in hints files.  Therefore, please be
  2771. sure to always check the platform-specific README files for any notes to
  2772. the contrary.
  2773.  
  2774. The usethreads or usemultiplicity builds are B<not> binary compatible
  2775. with the corresponding builds in 5.005.
  2776.  
  2777. On platforms that require an explicit list of exports (AIX, OS/2 and Windows,
  2778. among others), purely internal symbols such as parser functions and the
  2779. run time opcodes are not exported by default.  Perl 5.005 used to export
  2780. all functions irrespective of whether they were considered part of the
  2781. public API or not.
  2782.  
  2783. For the full list of public API functions, see L<perlapi>.
  2784.  
  2785. =head1 Known Problems
  2786.  
  2787. =head2 Thread test failures
  2788.  
  2789. The subtests 19 and 20 of lib/thr5005.t test are known to fail due to
  2790. fundamental problems in the 5.005 threading implementation.  These are
  2791. not new failures--Perl 5.005_0x has the same bugs, but didn't have these
  2792. tests.
  2793.  
  2794. =head2 EBCDIC platforms not supported
  2795.  
  2796. In earlier releases of Perl, EBCDIC environments like OS390 (also
  2797. known as Open Edition MVS) and VM-ESA were supported.  Due to changes
  2798. required by the UTF-8 (Unicode) support, the EBCDIC platforms are not
  2799. supported in Perl 5.6.0.
  2800.  
  2801. =head2 In 64-bit HP-UX the lib/io_multihomed test may hang
  2802.  
  2803. The lib/io_multihomed test may hang in HP-UX if Perl has been
  2804. configured to be 64-bit.  Because other 64-bit platforms do not
  2805. hang in this test, HP-UX is suspect.  All other tests pass
  2806. in 64-bit HP-UX.  The test attempts to create and connect to
  2807. "multihomed" sockets (sockets which have multiple IP addresses).
  2808.  
  2809. =head2 NEXTSTEP 3.3 POSIX test failure
  2810.  
  2811. In NEXTSTEP 3.3p2 the implementation of the strftime(3) in the
  2812. operating system libraries is buggy: the %j format numbers the days of
  2813. a month starting from zero, which, while being logical to programmers,
  2814. will cause the subtests 19 to 27 of the lib/posix test may fail.
  2815.  
  2816. =head2 Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with gcc
  2817.  
  2818. If compiled with gcc 2.95 the lib/sdbm test will fail (dump core).
  2819. The cure is to use the vendor cc, it comes with the operating system
  2820. and produces good code.
  2821.  
  2822. =head2 UNICOS/mk CC failures during Configure run
  2823.  
  2824. In UNICOS/mk the following errors may appear during the Configure run:
  2825.  
  2826.     Guessing which symbols your C compiler and preprocessor define...
  2827.     CC-20 cc: ERROR File = try.c, Line = 3
  2828.     ...
  2829.       bad switch yylook 79bad switch yylook 79bad switch yylook 79bad switch yylook 79#ifdef A29K
  2830.     ...
  2831.     4 errors detected in the compilation of "try.c".
  2832.  
  2833. The culprit is the broken awk of UNICOS/mk.  The effect is fortunately
  2834. rather mild: Perl itself is not adversely affected by the error, only
  2835. the h2ph utility coming with Perl, and that is rather rarely needed
  2836. these days.
  2837.  
  2838. =head2 Arrow operator and arrays
  2839.  
  2840. When the left argument to the arrow operator C<< -> >> is an array, or
  2841. the C<scalar> operator operating on an array, the result of the
  2842. operation must be considered erroneous. For example:
  2843.  
  2844.     @x->[2]
  2845.     scalar(@x)->[2]
  2846.  
  2847. These expressions will get run-time errors in some future release of
  2848. Perl.
  2849.  
  2850. =head2 Windows 2000
  2851.  
  2852. Windows 2000 is known to fail test 22 in lib/open3.t (cause unknown at
  2853. this time).  That test passes under Windows NT.
  2854.  
  2855. =head2 Experimental features
  2856.  
  2857. As discussed above, many features are still experimental.  Interfaces and
  2858. implementation of these features are subject to change, and in extreme cases,
  2859. even subject to removal in some future release of Perl.  These features
  2860. include the following:
  2861.  
  2862. =over 4
  2863.  
  2864. =item Threads
  2865.  
  2866. =item Unicode
  2867.  
  2868. =item 64-bit support
  2869.  
  2870. =item Lvalue subroutines
  2871.  
  2872. =item Weak references
  2873.  
  2874. =item The pseudo-hash data type
  2875.  
  2876. =item The Compiler suite
  2877.  
  2878. =item Internal implementation of file globbing
  2879.  
  2880. =item The DB module
  2881.  
  2882. =item The regular expression constructs C<(?{ code })> and C<(??{ code })>
  2883.  
  2884. =back
  2885.  
  2886. =head1 Obsolete Diagnostics
  2887.  
  2888. =over 4
  2889.  
  2890. =item Character class syntax [: :] is reserved for future extensions
  2891.  
  2892. (W) Within regular expression character classes ([]) the syntax beginning
  2893. with "[:" and ending with ":]" is reserved for future extensions.
  2894. If you need to represent those character sequences inside a regular
  2895. expression character class, just quote the square brackets with the
  2896. backslash: "\[:" and ":\]".
  2897.  
  2898. =item Ill-formed logical name |%s| in prime_env_iter
  2899.  
  2900. (W) A warning peculiar to VMS.  A logical name was encountered when preparing
  2901. to iterate over %ENV which violates the syntactic rules governing logical
  2902. names.  Because it cannot be translated normally, it is skipped, and will not
  2903. appear in %ENV.  This may be a benign occurrence, as some software packages
  2904. might directly modify logical name tables and introduce nonstandard names,
  2905. or it may indicate that a logical name table has been corrupted.
  2906.  
  2907. =item Probable precedence problem on %s
  2908.  
  2909. (W) The compiler found a bareword where it expected a conditional,
  2910. which often indicates that an || or && was parsed as part of the
  2911. last argument of the previous construct, for example:
  2912.  
  2913.     open FOO || die;
  2914.  
  2915. =item regexp too big
  2916.  
  2917. (F) The current implementation of regular expressions uses shorts as
  2918. address offsets within a string.  Unfortunately this means that if
  2919. the regular expression compiles to longer than 32767, it'll blow up.
  2920. Usually when you want a regular expression this big, there is a better
  2921. way to do it with multiple statements.  See L<perlre>.
  2922.  
  2923. =item Use of "$$<digit>" to mean "${$}<digit>" is deprecated
  2924.  
  2925. (D) Perl versions before 5.004 misinterpreted any type marker followed
  2926. by "$" and a digit.  For example, "$$0" was incorrectly taken to mean
  2927. "${$}0" instead of "${$0}".  This bug is (mostly) fixed in Perl 5.004.
  2928.  
  2929. However, the developers of Perl 5.004 could not fix this bug completely,
  2930. because at least two widely-used modules depend on the old meaning of
  2931. "$$0" in a string.  So Perl 5.004 still interprets "$$<digit>" in the
  2932. old (broken) way inside strings; but it generates this message as a
  2933. warning.  And in Perl 5.005, this special treatment will cease.
  2934.  
  2935. =back
  2936.  
  2937. =head1 Reporting Bugs
  2938.  
  2939. If you find what you think is a bug, you might check the
  2940. articles recently posted to the comp.lang.perl.misc newsgroup.
  2941. There may also be information at http://www.perl.com/perl/, the Perl
  2942. Home Page.
  2943.  
  2944. If you believe you have an unreported bug, please run the B<perlbug>
  2945. program included with your release.  Be sure to trim your bug down
  2946. to a tiny but sufficient test case.  Your bug report, along with the
  2947. output of C<perl -V>, will be sent off to perlbug@perl.com to be
  2948. analysed by the Perl porting team.
  2949.  
  2950. =head1 SEE ALSO
  2951.  
  2952. The F<Changes> file for exhaustive details on what changed.
  2953.  
  2954. The F<INSTALL> file for how to build Perl.
  2955.  
  2956. The F<README> file for general stuff.
  2957.  
  2958. The F<Artistic> and F<Copying> files for copyright information.
  2959.  
  2960. =head1 HISTORY
  2961.  
  2962. Written by Gurusamy Sarathy <F<gsar@activestate.com>>, with many
  2963. contributions from The Perl Porters.
  2964.  
  2965. Send omissions or corrections to <F<perlbug@perl.com>>.
  2966.  
  2967. =cut
  2968.