Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1612 lines
56 KiB

  1. =head1 NAME
  2. perldelta - what's new for perl5.004
  3. =head1 DESCRIPTION
  4. This document describes differences between the 5.003 release (as
  5. documented in I<Programming Perl>, second edition--the Camel Book) and
  6. this one.
  7. =head1 Supported Environments
  8. Perl5.004 builds out of the box on Unix, Plan 9, LynxOS, VMS, OS/2,
  9. QNX, AmigaOS, and Windows NT. Perl runs on Windows 95 as well, but it
  10. cannot be built there, for lack of a reasonable command interpreter.
  11. =head1 Core Changes
  12. Most importantly, many bugs were fixed, including several security
  13. problems. See the F<Changes> file in the distribution for details.
  14. =head2 List assignment to %ENV works
  15. C<%ENV = ()> and C<%ENV = @list> now work as expected (except on VMS
  16. where it generates a fatal error).
  17. =head2 Change to "Can't locate Foo.pm in @INC" error
  18. The error "Can't locate Foo.pm in @INC" now lists the contents of @INC
  19. for easier debugging.
  20. =head2 Compilation option: Binary compatibility with 5.003
  21. There is a new Configure question that asks if you want to maintain
  22. binary compatibility with Perl 5.003. If you choose binary
  23. compatibility, you do not have to recompile your extensions, but you
  24. might have symbol conflicts if you embed Perl in another application,
  25. just as in the 5.003 release. By default, binary compatibility
  26. is preserved at the expense of symbol table pollution.
  27. =head2 $PERL5OPT environment variable
  28. You may now put Perl options in the $PERL5OPT environment variable.
  29. Unless Perl is running with taint checks, it will interpret this
  30. variable as if its contents had appeared on a "#!perl" line at the
  31. beginning of your script, except that hyphens are optional. PERL5OPT
  32. may only be used to set the following switches: B<-[DIMUdmw]>.
  33. =head2 Limitations on B<-M>, B<-m>, and B<-T> options
  34. The C<-M> and C<-m> options are no longer allowed on the C<#!> line of
  35. a script. If a script needs a module, it should invoke it with the
  36. C<use> pragma.
  37. The B<-T> option is also forbidden on the C<#!> line of a script,
  38. unless it was present on the Perl command line. Due to the way C<#!>
  39. works, this usually means that B<-T> must be in the first argument.
  40. Thus:
  41. #!/usr/bin/perl -T -w
  42. will probably work for an executable script invoked as C<scriptname>,
  43. while:
  44. #!/usr/bin/perl -w -T
  45. will probably fail under the same conditions. (Non-Unix systems will
  46. probably not follow this rule.) But C<perl scriptname> is guaranteed
  47. to fail, since then there is no chance of B<-T> being found on the
  48. command line before it is found on the C<#!> line.
  49. =head2 More precise warnings
  50. If you removed the B<-w> option from your Perl 5.003 scripts because it
  51. made Perl too verbose, we recommend that you try putting it back when
  52. you upgrade to Perl 5.004. Each new perl version tends to remove some
  53. undesirable warnings, while adding new warnings that may catch bugs in
  54. your scripts.
  55. =head2 Deprecated: Inherited C<AUTOLOAD> for non-methods
  56. Before Perl 5.004, C<AUTOLOAD> functions were looked up as methods
  57. (using the C<@ISA> hierarchy), even when the function to be autoloaded
  58. was called as a plain function (e.g. C<Foo::bar()>), not a method
  59. (e.g. C<< Foo->bar() >> or C<< $obj->bar() >>).
  60. Perl 5.005 will use method lookup only for methods' C<AUTOLOAD>s.
  61. However, there is a significant base of existing code that may be using
  62. the old behavior. So, as an interim step, Perl 5.004 issues an optional
  63. warning when a non-method uses an inherited C<AUTOLOAD>.
  64. The simple rule is: Inheritance will not work when autoloading
  65. non-methods. The simple fix for old code is: In any module that used to
  66. depend on inheriting C<AUTOLOAD> for non-methods from a base class named
  67. C<BaseClass>, execute C<*AUTOLOAD = \&BaseClass::AUTOLOAD> during startup.
  68. =head2 Previously deprecated %OVERLOAD is no longer usable
  69. Using %OVERLOAD to define overloading was deprecated in 5.003.
  70. Overloading is now defined using the overload pragma. %OVERLOAD is
  71. still used internally but should not be used by Perl scripts. See
  72. L<overload> for more details.
  73. =head2 Subroutine arguments created only when they're modified
  74. In Perl 5.004, nonexistent array and hash elements used as subroutine
  75. parameters are brought into existence only if they are actually
  76. assigned to (via C<@_>).
  77. Earlier versions of Perl vary in their handling of such arguments.
  78. Perl versions 5.002 and 5.003 always brought them into existence.
  79. Perl versions 5.000 and 5.001 brought them into existence only if
  80. they were not the first argument (which was almost certainly a bug).
  81. Earlier versions of Perl never brought them into existence.
  82. For example, given this code:
  83. undef @a; undef %a;
  84. sub show { print $_[0] };
  85. sub change { $_[0]++ };
  86. show($a[2]);
  87. change($a{b});
  88. After this code executes in Perl 5.004, $a{b} exists but $a[2] does
  89. not. In Perl 5.002 and 5.003, both $a{b} and $a[2] would have existed
  90. (but $a[2]'s value would have been undefined).
  91. =head2 Group vector changeable with C<$)>
  92. The C<$)> special variable has always (well, in Perl 5, at least)
  93. reflected not only the current effective group, but also the group list
  94. as returned by the C<getgroups()> C function (if there is one).
  95. However, until this release, there has not been a way to call the
  96. C<setgroups()> C function from Perl.
  97. In Perl 5.004, assigning to C<$)> is exactly symmetrical with examining
  98. it: The first number in its string value is used as the effective gid;
  99. if there are any numbers after the first one, they are passed to the
  100. C<setgroups()> C function (if there is one).
  101. =head2 Fixed parsing of $$<digit>, &$<digit>, etc.
  102. Perl versions before 5.004 misinterpreted any type marker followed by
  103. "$" and a digit. For example, "$$0" was incorrectly taken to mean
  104. "${$}0" instead of "${$0}". This bug is (mostly) fixed in Perl 5.004.
  105. However, the developers of Perl 5.004 could not fix this bug completely,
  106. because at least two widely-used modules depend on the old meaning of
  107. "$$0" in a string. So Perl 5.004 still interprets "$$<digit>" in the
  108. old (broken) way inside strings; but it generates this message as a
  109. warning. And in Perl 5.005, this special treatment will cease.
  110. =head2 Fixed localization of $<digit>, $&, etc.
  111. Perl versions before 5.004 did not always properly localize the
  112. regex-related special variables. Perl 5.004 does localize them, as
  113. the documentation has always said it should. This may result in $1,
  114. $2, etc. no longer being set where existing programs use them.
  115. =head2 No resetting of $. on implicit close
  116. The documentation for Perl 5.0 has always stated that C<$.> is I<not>
  117. reset when an already-open file handle is reopened with no intervening
  118. call to C<close>. Due to a bug, perl versions 5.000 through 5.003
  119. I<did> reset C<$.> under that circumstance; Perl 5.004 does not.
  120. =head2 C<wantarray> may return undef
  121. The C<wantarray> operator returns true if a subroutine is expected to
  122. return a list, and false otherwise. In Perl 5.004, C<wantarray> can
  123. also return the undefined value if a subroutine's return value will
  124. not be used at all, which allows subroutines to avoid a time-consuming
  125. calculation of a return value if it isn't going to be used.
  126. =head2 C<eval EXPR> determines value of EXPR in scalar context
  127. Perl (version 5) used to determine the value of EXPR inconsistently,
  128. sometimes incorrectly using the surrounding context for the determination.
  129. Now, the value of EXPR (before being parsed by eval) is always determined in
  130. a scalar context. Once parsed, it is executed as before, by providing
  131. the context that the scope surrounding the eval provided. This change
  132. makes the behavior Perl4 compatible, besides fixing bugs resulting from
  133. the inconsistent behavior. This program:
  134. @a = qw(time now is time);
  135. print eval @a;
  136. print '|', scalar eval @a;
  137. used to print something like "timenowis881399109|4", but now (and in perl4)
  138. prints "4|4".
  139. =head2 Changes to tainting checks
  140. A bug in previous versions may have failed to detect some insecure
  141. conditions when taint checks are turned on. (Taint checks are used
  142. in setuid or setgid scripts, or when explicitly turned on with the
  143. C<-T> invocation option.) Although it's unlikely, this may cause a
  144. previously-working script to now fail -- which should be construed
  145. as a blessing, since that indicates a potentially-serious security
  146. hole was just plugged.
  147. The new restrictions when tainting include:
  148. =over 4
  149. =item No glob() or <*>
  150. These operators may spawn the C shell (csh), which cannot be made
  151. safe. This restriction will be lifted in a future version of Perl
  152. when globbing is implemented without the use of an external program.
  153. =item No spawning if tainted $CDPATH, $ENV, $BASH_ENV
  154. These environment variables may alter the behavior of spawned programs
  155. (especially shells) in ways that subvert security. So now they are
  156. treated as dangerous, in the manner of $IFS and $PATH.
  157. =item No spawning if tainted $TERM doesn't look like a terminal name
  158. Some termcap libraries do unsafe things with $TERM. However, it would be
  159. unnecessarily harsh to treat all $TERM values as unsafe, since only shell
  160. metacharacters can cause trouble in $TERM. So a tainted $TERM is
  161. considered to be safe if it contains only alphanumerics, underscores,
  162. dashes, and colons, and unsafe if it contains other characters (including
  163. whitespace).
  164. =back
  165. =head2 New Opcode module and revised Safe module
  166. A new Opcode module supports the creation, manipulation and
  167. application of opcode masks. The revised Safe module has a new API
  168. and is implemented using the new Opcode module. Please read the new
  169. Opcode and Safe documentation.
  170. =head2 Embedding improvements
  171. In older versions of Perl it was not possible to create more than one
  172. Perl interpreter instance inside a single process without leaking like a
  173. sieve and/or crashing. The bugs that caused this behavior have all been
  174. fixed. However, you still must take care when embedding Perl in a C
  175. program. See the updated perlembed manpage for tips on how to manage
  176. your interpreters.
  177. =head2 Internal change: FileHandle class based on IO::* classes
  178. File handles are now stored internally as type IO::Handle. The
  179. FileHandle module is still supported for backwards compatibility, but
  180. it is now merely a front end to the IO::* modules -- specifically,
  181. IO::Handle, IO::Seekable, and IO::File. We suggest, but do not
  182. require, that you use the IO::* modules in new code.
  183. In harmony with this change, C<*GLOB{FILEHANDLE}> is now just a
  184. backward-compatible synonym for C<*GLOB{IO}>.
  185. =head2 Internal change: PerlIO abstraction interface
  186. It is now possible to build Perl with AT&T's sfio IO package
  187. instead of stdio. See L<perlapio> for more details, and
  188. the F<INSTALL> file for how to use it.
  189. =head2 New and changed syntax
  190. =over 4
  191. =item $coderef->(PARAMS)
  192. A subroutine reference may now be suffixed with an arrow and a
  193. (possibly empty) parameter list. This syntax denotes a call of the
  194. referenced subroutine, with the given parameters (if any).
  195. This new syntax follows the pattern of S<C<< $hashref->{FOO} >>> and
  196. S<C<< $aryref->[$foo] >>>: You may now write S<C<&$subref($foo)>> as
  197. S<C<< $subref->($foo) >>>. All these arrow terms may be chained;
  198. thus, S<C<< &{$table->{FOO}}($bar) >>> may now be written
  199. S<C<< $table->{FOO}->($bar) >>>.
  200. =back
  201. =head2 New and changed builtin constants
  202. =over 4
  203. =item __PACKAGE__
  204. The current package name at compile time, or the undefined value if
  205. there is no current package (due to a C<package;> directive). Like
  206. C<__FILE__> and C<__LINE__>, C<__PACKAGE__> does I<not> interpolate
  207. into strings.
  208. =back
  209. =head2 New and changed builtin variables
  210. =over 4
  211. =item $^E
  212. Extended error message on some platforms. (Also known as
  213. $EXTENDED_OS_ERROR if you C<use English>).
  214. =item $^H
  215. The current set of syntax checks enabled by C<use strict>. See the
  216. documentation of C<strict> for more details. Not actually new, but
  217. newly documented.
  218. Because it is intended for internal use by Perl core components,
  219. there is no C<use English> long name for this variable.
  220. =item $^M
  221. By default, running out of memory it is not trappable. However, if
  222. compiled for this, Perl may use the contents of C<$^M> as an emergency
  223. pool after die()ing with this message. Suppose that your Perl were
  224. compiled with -DPERL_EMERGENCY_SBRK and used Perl's malloc. Then
  225. $^M = 'a' x (1<<16);
  226. would allocate a 64K buffer for use when in emergency.
  227. See the F<INSTALL> file for information on how to enable this option.
  228. As a disincentive to casual use of this advanced feature,
  229. there is no C<use English> long name for this variable.
  230. =back
  231. =head2 New and changed builtin functions
  232. =over 4
  233. =item delete on slices
  234. This now works. (e.g. C<delete @ENV{'PATH', 'MANPATH'}>)
  235. =item flock
  236. is now supported on more platforms, prefers fcntl to lockf when
  237. emulating, and always flushes before (un)locking.
  238. =item printf and sprintf
  239. Perl now implements these functions itself; it doesn't use the C
  240. library function sprintf() any more, except for floating-point
  241. numbers, and even then only known flags are allowed. As a result, it
  242. is now possible to know which conversions and flags will work, and
  243. what they will do.
  244. The new conversions in Perl's sprintf() are:
  245. %i a synonym for %d
  246. %p a pointer (the address of the Perl value, in hexadecimal)
  247. %n special: *stores* the number of characters output so far
  248. into the next variable in the parameter list
  249. The new flags that go between the C<%> and the conversion are:
  250. # prefix octal with "0", hex with "0x"
  251. h interpret integer as C type "short" or "unsigned short"
  252. V interpret integer as Perl's standard integer type
  253. Also, where a number would appear in the flags, an asterisk ("*") may
  254. be used instead, in which case Perl uses the next item in the
  255. parameter list as the given number (that is, as the field width or
  256. precision). If a field width obtained through "*" is negative, it has
  257. the same effect as the '-' flag: left-justification.
  258. See L<perlfunc/sprintf> for a complete list of conversion and flags.
  259. =item keys as an lvalue
  260. As an lvalue, C<keys> allows you to increase the number of hash buckets
  261. allocated for the given hash. This can gain you a measure of efficiency if
  262. you know the hash is going to get big. (This is similar to pre-extending
  263. an array by assigning a larger number to $#array.) If you say
  264. keys %hash = 200;
  265. then C<%hash> will have at least 200 buckets allocated for it. These
  266. buckets will be retained even if you do C<%hash = ()>; use C<undef
  267. %hash> if you want to free the storage while C<%hash> is still in scope.
  268. You can't shrink the number of buckets allocated for the hash using
  269. C<keys> in this way (but you needn't worry about doing this by accident,
  270. as trying has no effect).
  271. =item my() in Control Structures
  272. You can now use my() (with or without the parentheses) in the control
  273. expressions of control structures such as:
  274. while (defined(my $line = <>)) {
  275. $line = lc $line;
  276. } continue {
  277. print $line;
  278. }
  279. if ((my $answer = <STDIN>) =~ /^y(es)?$/i) {
  280. user_agrees();
  281. } elsif ($answer =~ /^n(o)?$/i) {
  282. user_disagrees();
  283. } else {
  284. chomp $answer;
  285. die "`$answer' is neither `yes' nor `no'";
  286. }
  287. Also, you can declare a foreach loop control variable as lexical by
  288. preceding it with the word "my". For example, in:
  289. foreach my $i (1, 2, 3) {
  290. some_function();
  291. }
  292. $i is a lexical variable, and the scope of $i extends to the end of
  293. the loop, but not beyond it.
  294. Note that you still cannot use my() on global punctuation variables
  295. such as $_ and the like.
  296. =item pack() and unpack()
  297. A new format 'w' represents a BER compressed integer (as defined in
  298. ASN.1). Its format is a sequence of one or more bytes, each of which
  299. provides seven bits of the total value, with the most significant
  300. first. Bit eight of each byte is set, except for the last byte, in
  301. which bit eight is clear.
  302. If 'p' or 'P' are given undef as values, they now generate a NULL
  303. pointer.
  304. Both pack() and unpack() now fail when their templates contain invalid
  305. types. (Invalid types used to be ignored.)
  306. =item sysseek()
  307. The new sysseek() operator is a variant of seek() that sets and gets the
  308. file's system read/write position, using the lseek(2) system call. It is
  309. the only reliable way to seek before using sysread() or syswrite(). Its
  310. return value is the new position, or the undefined value on failure.
  311. =item use VERSION
  312. If the first argument to C<use> is a number, it is treated as a version
  313. number instead of a module name. If the version of the Perl interpreter
  314. is less than VERSION, then an error message is printed and Perl exits
  315. immediately. Because C<use> occurs at compile time, this check happens
  316. immediately during the compilation process, unlike C<require VERSION>,
  317. which waits until runtime for the check. This is often useful if you
  318. need to check the current Perl version before C<use>ing library modules
  319. which have changed in incompatible ways from older versions of Perl.
  320. (We try not to do this more than we have to.)
  321. =item use Module VERSION LIST
  322. If the VERSION argument is present between Module and LIST, then the
  323. C<use> will call the VERSION method in class Module with the given
  324. version as an argument. The default VERSION method, inherited from
  325. the UNIVERSAL class, croaks if the given version is larger than the
  326. value of the variable $Module::VERSION. (Note that there is not a
  327. comma after VERSION!)
  328. This version-checking mechanism is similar to the one currently used
  329. in the Exporter module, but it is faster and can be used with modules
  330. that don't use the Exporter. It is the recommended method for new
  331. code.
  332. =item prototype(FUNCTION)
  333. Returns the prototype of a function as a string (or C<undef> if the
  334. function has no prototype). FUNCTION is a reference to or the name of the
  335. function whose prototype you want to retrieve.
  336. (Not actually new; just never documented before.)
  337. =item srand
  338. The default seed for C<srand>, which used to be C<time>, has been changed.
  339. Now it's a heady mix of difficult-to-predict system-dependent values,
  340. which should be sufficient for most everyday purposes.
  341. Previous to version 5.004, calling C<rand> without first calling C<srand>
  342. would yield the same sequence of random numbers on most or all machines.
  343. Now, when perl sees that you're calling C<rand> and haven't yet called
  344. C<srand>, it calls C<srand> with the default seed. You should still call
  345. C<srand> manually if your code might ever be run on a pre-5.004 system,
  346. of course, or if you want a seed other than the default.
  347. =item $_ as Default
  348. Functions documented in the Camel to default to $_ now in
  349. fact do, and all those that do are so documented in L<perlfunc>.
  350. =item C<m//gc> does not reset search position on failure
  351. The C<m//g> match iteration construct has always reset its target
  352. string's search position (which is visible through the C<pos> operator)
  353. when a match fails; as a result, the next C<m//g> match after a failure
  354. starts again at the beginning of the string. With Perl 5.004, this
  355. reset may be disabled by adding the "c" (for "continue") modifier,
  356. i.e. C<m//gc>. This feature, in conjunction with the C<\G> zero-width
  357. assertion, makes it possible to chain matches together. See L<perlop>
  358. and L<perlre>.
  359. =item C<m//x> ignores whitespace before ?*+{}
  360. The C<m//x> construct has always been intended to ignore all unescaped
  361. whitespace. However, before Perl 5.004, whitespace had the effect of
  362. escaping repeat modifiers like "*" or "?"; for example, C</a *b/x> was
  363. (mis)interpreted as C</a\*b/x>. This bug has been fixed in 5.004.
  364. =item nested C<sub{}> closures work now
  365. Prior to the 5.004 release, nested anonymous functions didn't work
  366. right. They do now.
  367. =item formats work right on changing lexicals
  368. Just like anonymous functions that contain lexical variables
  369. that change (like a lexical index variable for a C<foreach> loop),
  370. formats now work properly. For example, this silently failed
  371. before (printed only zeros), but is fine now:
  372. my $i;
  373. foreach $i ( 1 .. 10 ) {
  374. write;
  375. }
  376. format =
  377. my i is @#
  378. $i
  379. .
  380. However, it still fails (without a warning) if the foreach is within a
  381. subroutine:
  382. my $i;
  383. sub foo {
  384. foreach $i ( 1 .. 10 ) {
  385. write;
  386. }
  387. }
  388. foo;
  389. format =
  390. my i is @#
  391. $i
  392. .
  393. =back
  394. =head2 New builtin methods
  395. The C<UNIVERSAL> package automatically contains the following methods that
  396. are inherited by all other classes:
  397. =over 4
  398. =item isa(CLASS)
  399. C<isa> returns I<true> if its object is blessed into a subclass of C<CLASS>
  400. C<isa> is also exportable and can be called as a sub with two arguments. This
  401. allows the ability to check what a reference points to. Example:
  402. use UNIVERSAL qw(isa);
  403. if(isa($ref, 'ARRAY')) {
  404. ...
  405. }
  406. =item can(METHOD)
  407. C<can> checks to see if its object has a method called C<METHOD>,
  408. if it does then a reference to the sub is returned; if it does not then
  409. I<undef> is returned.
  410. =item VERSION( [NEED] )
  411. C<VERSION> returns the version number of the class (package). If the
  412. NEED argument is given then it will check that the current version (as
  413. defined by the $VERSION variable in the given package) not less than
  414. NEED; it will die if this is not the case. This method is normally
  415. called as a class method. This method is called automatically by the
  416. C<VERSION> form of C<use>.
  417. use A 1.2 qw(some imported subs);
  418. # implies:
  419. A->VERSION(1.2);
  420. =back
  421. B<NOTE:> C<can> directly uses Perl's internal code for method lookup, and
  422. C<isa> uses a very similar method and caching strategy. This may cause
  423. strange effects if the Perl code dynamically changes @ISA in any package.
  424. You may add other methods to the UNIVERSAL class via Perl or XS code.
  425. You do not need to C<use UNIVERSAL> in order to make these methods
  426. available to your program. This is necessary only if you wish to
  427. have C<isa> available as a plain subroutine in the current package.
  428. =head2 TIEHANDLE now supported
  429. See L<perltie> for other kinds of tie()s.
  430. =over 4
  431. =item TIEHANDLE classname, LIST
  432. This is the constructor for the class. That means it is expected to
  433. return an object of some sort. The reference can be used to
  434. hold some internal information.
  435. sub TIEHANDLE {
  436. print "<shout>\n";
  437. my $i;
  438. return bless \$i, shift;
  439. }
  440. =item PRINT this, LIST
  441. This method will be triggered every time the tied handle is printed to.
  442. Beyond its self reference it also expects the list that was passed to
  443. the print function.
  444. sub PRINT {
  445. $r = shift;
  446. $$r++;
  447. return print join( $, => map {uc} @_), $\;
  448. }
  449. =item PRINTF this, LIST
  450. This method will be triggered every time the tied handle is printed to
  451. with the C<printf()> function.
  452. Beyond its self reference it also expects the format and list that was
  453. passed to the printf function.
  454. sub PRINTF {
  455. shift;
  456. my $fmt = shift;
  457. print sprintf($fmt, @_)."\n";
  458. }
  459. =item READ this LIST
  460. This method will be called when the handle is read from via the C<read>
  461. or C<sysread> functions.
  462. sub READ {
  463. $r = shift;
  464. my($buf,$len,$offset) = @_;
  465. print "READ called, \$buf=$buf, \$len=$len, \$offset=$offset";
  466. }
  467. =item READLINE this
  468. This method will be called when the handle is read from. The method
  469. should return undef when there is no more data.
  470. sub READLINE {
  471. $r = shift;
  472. return "PRINT called $$r times\n"
  473. }
  474. =item GETC this
  475. This method will be called when the C<getc> function is called.
  476. sub GETC { print "Don't GETC, Get Perl"; return "a"; }
  477. =item DESTROY this
  478. As with the other types of ties, this method will be called when the
  479. tied handle is about to be destroyed. This is useful for debugging and
  480. possibly for cleaning up.
  481. sub DESTROY {
  482. print "</shout>\n";
  483. }
  484. =back
  485. =head2 Malloc enhancements
  486. If perl is compiled with the malloc included with the perl distribution
  487. (that is, if C<perl -V:d_mymalloc> is 'define') then you can print
  488. memory statistics at runtime by running Perl thusly:
  489. env PERL_DEBUG_MSTATS=2 perl your_script_here
  490. The value of 2 means to print statistics after compilation and on
  491. exit; with a value of 1, the statistics are printed only on exit.
  492. (If you want the statistics at an arbitrary time, you'll need to
  493. install the optional module Devel::Peek.)
  494. Three new compilation flags are recognized by malloc.c. (They have no
  495. effect if perl is compiled with system malloc().)
  496. =over 4
  497. =item -DPERL_EMERGENCY_SBRK
  498. If this macro is defined, running out of memory need not be a fatal
  499. error: a memory pool can allocated by assigning to the special
  500. variable C<$^M>. See L<"$^M">.
  501. =item -DPACK_MALLOC
  502. Perl memory allocation is by bucket with sizes close to powers of two.
  503. Because of these malloc overhead may be big, especially for data of
  504. size exactly a power of two. If C<PACK_MALLOC> is defined, perl uses
  505. a slightly different algorithm for small allocations (up to 64 bytes
  506. long), which makes it possible to have overhead down to 1 byte for
  507. allocations which are powers of two (and appear quite often).
  508. Expected memory savings (with 8-byte alignment in C<alignbytes>) is
  509. about 20% for typical Perl usage. Expected slowdown due to additional
  510. malloc overhead is in fractions of a percent (hard to measure, because
  511. of the effect of saved memory on speed).
  512. =item -DTWO_POT_OPTIMIZE
  513. Similarly to C<PACK_MALLOC>, this macro improves allocations of data
  514. with size close to a power of two; but this works for big allocations
  515. (starting with 16K by default). Such allocations are typical for big
  516. hashes and special-purpose scripts, especially image processing.
  517. On recent systems, the fact that perl requires 2M from system for 1M
  518. allocation will not affect speed of execution, since the tail of such
  519. a chunk is not going to be touched (and thus will not require real
  520. memory). However, it may result in a premature out-of-memory error.
  521. So if you will be manipulating very large blocks with sizes close to
  522. powers of two, it would be wise to define this macro.
  523. Expected saving of memory is 0-100% (100% in applications which
  524. require most memory in such 2**n chunks); expected slowdown is
  525. negligible.
  526. =back
  527. =head2 Miscellaneous efficiency enhancements
  528. Functions that have an empty prototype and that do nothing but return
  529. a fixed value are now inlined (e.g. C<sub PI () { 3.14159 }>).
  530. Each unique hash key is only allocated once, no matter how many hashes
  531. have an entry with that key. So even if you have 100 copies of the
  532. same hash, the hash keys never have to be reallocated.
  533. =head1 Support for More Operating Systems
  534. Support for the following operating systems is new in Perl 5.004.
  535. =head2 Win32
  536. Perl 5.004 now includes support for building a "native" perl under
  537. Windows NT, using the Microsoft Visual C++ compiler (versions 2.0
  538. and above) or the Borland C++ compiler (versions 5.02 and above).
  539. The resulting perl can be used under Windows 95 (if it
  540. is installed in the same directory locations as it got installed
  541. in Windows NT). This port includes support for perl extension
  542. building tools like L<MakeMaker> and L<h2xs>, so that many extensions
  543. available on the Comprehensive Perl Archive Network (CPAN) can now be
  544. readily built under Windows NT. See http://www.perl.com/ for more
  545. information on CPAN and F<README.win32> in the perl distribution for more
  546. details on how to get started with building this port.
  547. There is also support for building perl under the Cygwin32 environment.
  548. Cygwin32 is a set of GNU tools that make it possible to compile and run
  549. many Unix programs under Windows NT by providing a mostly Unix-like
  550. interface for compilation and execution. See F<README.cygwin32> in the
  551. perl distribution for more details on this port and how to obtain the
  552. Cygwin32 toolkit.
  553. =head2 Plan 9
  554. See F<README.plan9> in the perl distribution.
  555. =head2 QNX
  556. See F<README.qnx> in the perl distribution.
  557. =head2 AmigaOS
  558. See F<README.amigaos> in the perl distribution.
  559. =head1 Pragmata
  560. Six new pragmatic modules exist:
  561. =over 4
  562. =item use autouse MODULE => qw(sub1 sub2 sub3)
  563. Defers C<require MODULE> until someone calls one of the specified
  564. subroutines (which must be exported by MODULE). This pragma should be
  565. used with caution, and only when necessary.
  566. =item use blib
  567. =item use blib 'dir'
  568. Looks for MakeMaker-like I<'blib'> directory structure starting in
  569. I<dir> (or current directory) and working back up to five levels of
  570. parent directories.
  571. Intended for use on command line with B<-M> option as a way of testing
  572. arbitrary scripts against an uninstalled version of a package.
  573. =item use constant NAME => VALUE
  574. Provides a convenient interface for creating compile-time constants,
  575. See L<perlsub/"Constant Functions">.
  576. =item use locale
  577. Tells the compiler to enable (or disable) the use of POSIX locales for
  578. builtin operations.
  579. When C<use locale> is in effect, the current LC_CTYPE locale is used
  580. for regular expressions and case mapping; LC_COLLATE for string
  581. ordering; and LC_NUMERIC for numeric formatting in printf and sprintf
  582. (but B<not> in print). LC_NUMERIC is always used in write, since
  583. lexical scoping of formats is problematic at best.
  584. Each C<use locale> or C<no locale> affects statements to the end of
  585. the enclosing BLOCK or, if not inside a BLOCK, to the end of the
  586. current file. Locales can be switched and queried with
  587. POSIX::setlocale().
  588. See L<perllocale> for more information.
  589. =item use ops
  590. Disable unsafe opcodes, or any named opcodes, when compiling Perl code.
  591. =item use vmsish
  592. Enable VMS-specific language features. Currently, there are three
  593. VMS-specific features available: 'status', which makes C<$?> and
  594. C<system> return genuine VMS status values instead of emulating POSIX;
  595. 'exit', which makes C<exit> take a genuine VMS status value instead of
  596. assuming that C<exit 1> is an error; and 'time', which makes all times
  597. relative to the local time zone, in the VMS tradition.
  598. =back
  599. =head1 Modules
  600. =head2 Required Updates
  601. Though Perl 5.004 is compatible with almost all modules that work
  602. with Perl 5.003, there are a few exceptions:
  603. Module Required Version for Perl 5.004
  604. ------ -------------------------------
  605. Filter Filter-1.12
  606. LWP libwww-perl-5.08
  607. Tk Tk400.202 (-w makes noise)
  608. Also, the majordomo mailing list program, version 1.94.1, doesn't work
  609. with Perl 5.004 (nor with perl 4), because it executes an invalid
  610. regular expression. This bug is fixed in majordomo version 1.94.2.
  611. =head2 Installation directories
  612. The I<installperl> script now places the Perl source files for
  613. extensions in the architecture-specific library directory, which is
  614. where the shared libraries for extensions have always been. This
  615. change is intended to allow administrators to keep the Perl 5.004
  616. library directory unchanged from a previous version, without running
  617. the risk of binary incompatibility between extensions' Perl source and
  618. shared libraries.
  619. =head2 Module information summary
  620. Brand new modules, arranged by topic rather than strictly
  621. alphabetically:
  622. CGI.pm Web server interface ("Common Gateway Interface")
  623. CGI/Apache.pm Support for Apache's Perl module
  624. CGI/Carp.pm Log server errors with helpful context
  625. CGI/Fast.pm Support for FastCGI (persistent server process)
  626. CGI/Push.pm Support for server push
  627. CGI/Switch.pm Simple interface for multiple server types
  628. CPAN Interface to Comprehensive Perl Archive Network
  629. CPAN::FirstTime Utility for creating CPAN configuration file
  630. CPAN::Nox Runs CPAN while avoiding compiled extensions
  631. IO.pm Top-level interface to IO::* classes
  632. IO/File.pm IO::File extension Perl module
  633. IO/Handle.pm IO::Handle extension Perl module
  634. IO/Pipe.pm IO::Pipe extension Perl module
  635. IO/Seekable.pm IO::Seekable extension Perl module
  636. IO/Select.pm IO::Select extension Perl module
  637. IO/Socket.pm IO::Socket extension Perl module
  638. Opcode.pm Disable named opcodes when compiling Perl code
  639. ExtUtils/Embed.pm Utilities for embedding Perl in C programs
  640. ExtUtils/testlib.pm Fixes up @INC to use just-built extension
  641. FindBin.pm Find path of currently executing program
  642. Class/Struct.pm Declare struct-like datatypes as Perl classes
  643. File/stat.pm By-name interface to Perl's builtin stat
  644. Net/hostent.pm By-name interface to Perl's builtin gethost*
  645. Net/netent.pm By-name interface to Perl's builtin getnet*
  646. Net/protoent.pm By-name interface to Perl's builtin getproto*
  647. Net/servent.pm By-name interface to Perl's builtin getserv*
  648. Time/gmtime.pm By-name interface to Perl's builtin gmtime
  649. Time/localtime.pm By-name interface to Perl's builtin localtime
  650. Time/tm.pm Internal object for Time::{gm,local}time
  651. User/grent.pm By-name interface to Perl's builtin getgr*
  652. User/pwent.pm By-name interface to Perl's builtin getpw*
  653. Tie/RefHash.pm Base class for tied hashes with references as keys
  654. UNIVERSAL.pm Base class for *ALL* classes
  655. =head2 Fcntl
  656. New constants in the existing Fcntl modules are now supported,
  657. provided that your operating system happens to support them:
  658. F_GETOWN F_SETOWN
  659. O_ASYNC O_DEFER O_DSYNC O_FSYNC O_SYNC
  660. O_EXLOCK O_SHLOCK
  661. These constants are intended for use with the Perl operators sysopen()
  662. and fcntl() and the basic database modules like SDBM_File. For the
  663. exact meaning of these and other Fcntl constants please refer to your
  664. operating system's documentation for fcntl() and open().
  665. In addition, the Fcntl module now provides these constants for use
  666. with the Perl operator flock():
  667. LOCK_SH LOCK_EX LOCK_NB LOCK_UN
  668. These constants are defined in all environments (because where there is
  669. no flock() system call, Perl emulates it). However, for historical
  670. reasons, these constants are not exported unless they are explicitly
  671. requested with the ":flock" tag (e.g. C<use Fcntl ':flock'>).
  672. =head2 IO
  673. The IO module provides a simple mechanism to load all the IO modules at one
  674. go. Currently this includes:
  675. IO::Handle
  676. IO::Seekable
  677. IO::File
  678. IO::Pipe
  679. IO::Socket
  680. For more information on any of these modules, please see its
  681. respective documentation.
  682. =head2 Math::Complex
  683. The Math::Complex module has been totally rewritten, and now supports
  684. more operations. These are overloaded:
  685. + - * / ** <=> neg ~ abs sqrt exp log sin cos atan2 "" (stringify)
  686. And these functions are now exported:
  687. pi i Re Im arg
  688. log10 logn ln cbrt root
  689. tan
  690. csc sec cot
  691. asin acos atan
  692. acsc asec acot
  693. sinh cosh tanh
  694. csch sech coth
  695. asinh acosh atanh
  696. acsch asech acoth
  697. cplx cplxe
  698. =head2 Math::Trig
  699. This new module provides a simpler interface to parts of Math::Complex for
  700. those who need trigonometric functions only for real numbers.
  701. =head2 DB_File
  702. There have been quite a few changes made to DB_File. Here are a few of
  703. the highlights:
  704. =over 4
  705. =item *
  706. Fixed a handful of bugs.
  707. =item *
  708. By public demand, added support for the standard hash function exists().
  709. =item *
  710. Made it compatible with Berkeley DB 1.86.
  711. =item *
  712. Made negative subscripts work with RECNO interface.
  713. =item *
  714. Changed the default flags from O_RDWR to O_CREAT|O_RDWR and the default
  715. mode from 0640 to 0666.
  716. =item *
  717. Made DB_File automatically import the open() constants (O_RDWR,
  718. O_CREAT etc.) from Fcntl, if available.
  719. =item *
  720. Updated documentation.
  721. =back
  722. Refer to the HISTORY section in DB_File.pm for a complete list of
  723. changes. Everything after DB_File 1.01 has been added since 5.003.
  724. =head2 Net::Ping
  725. Major rewrite - support added for both udp echo and real icmp pings.
  726. =head2 Object-oriented overrides for builtin operators
  727. Many of the Perl builtins returning lists now have
  728. object-oriented overrides. These are:
  729. File::stat
  730. Net::hostent
  731. Net::netent
  732. Net::protoent
  733. Net::servent
  734. Time::gmtime
  735. Time::localtime
  736. User::grent
  737. User::pwent
  738. For example, you can now say
  739. use File::stat;
  740. use User::pwent;
  741. $his = (stat($filename)->st_uid == pwent($whoever)->pw_uid);
  742. =head1 Utility Changes
  743. =head2 pod2html
  744. =over 4
  745. =item Sends converted HTML to standard output
  746. The I<pod2html> utility included with Perl 5.004 is entirely new.
  747. By default, it sends the converted HTML to its standard output,
  748. instead of writing it to a file like Perl 5.003's I<pod2html> did.
  749. Use the B<--outfile=FILENAME> option to write to a file.
  750. =back
  751. =head2 xsubpp
  752. =over 4
  753. =item C<void> XSUBs now default to returning nothing
  754. Due to a documentation/implementation bug in previous versions of
  755. Perl, XSUBs with a return type of C<void> have actually been
  756. returning one value. Usually that value was the GV for the XSUB,
  757. but sometimes it was some already freed or reused value, which would
  758. sometimes lead to program failure.
  759. In Perl 5.004, if an XSUB is declared as returning C<void>, it
  760. actually returns no value, i.e. an empty list (though there is a
  761. backward-compatibility exception; see below). If your XSUB really
  762. does return an SV, you should give it a return type of C<SV *>.
  763. For backward compatibility, I<xsubpp> tries to guess whether a
  764. C<void> XSUB is really C<void> or if it wants to return an C<SV *>.
  765. It does so by examining the text of the XSUB: if I<xsubpp> finds
  766. what looks like an assignment to C<ST(0)>, it assumes that the
  767. XSUB's return type is really C<SV *>.
  768. =back
  769. =head1 C Language API Changes
  770. =over 4
  771. =item C<gv_fetchmethod> and C<perl_call_sv>
  772. The C<gv_fetchmethod> function finds a method for an object, just like
  773. in Perl 5.003. The GV it returns may be a method cache entry.
  774. However, in Perl 5.004, method cache entries are not visible to users;
  775. therefore, they can no longer be passed directly to C<perl_call_sv>.
  776. Instead, you should use the C<GvCV> macro on the GV to extract its CV,
  777. and pass the CV to C<perl_call_sv>.
  778. The most likely symptom of passing the result of C<gv_fetchmethod> to
  779. C<perl_call_sv> is Perl's producing an "Undefined subroutine called"
  780. error on the I<second> call to a given method (since there is no cache
  781. on the first call).
  782. =item C<perl_eval_pv>
  783. A new function handy for eval'ing strings of Perl code inside C code.
  784. This function returns the value from the eval statement, which can
  785. be used instead of fetching globals from the symbol table. See
  786. L<perlguts>, L<perlembed> and L<perlcall> for details and examples.
  787. =item Extended API for manipulating hashes
  788. Internal handling of hash keys has changed. The old hashtable API is
  789. still fully supported, and will likely remain so. The additions to the
  790. API allow passing keys as C<SV*>s, so that C<tied> hashes can be given
  791. real scalars as keys rather than plain strings (nontied hashes still
  792. can only use strings as keys). New extensions must use the new hash
  793. access functions and macros if they wish to use C<SV*> keys. These
  794. additions also make it feasible to manipulate C<HE*>s (hash entries),
  795. which can be more efficient. See L<perlguts> for details.
  796. =back
  797. =head1 Documentation Changes
  798. Many of the base and library pods were updated. These
  799. new pods are included in section 1:
  800. =over 4
  801. =item L<perldelta>
  802. This document.
  803. =item L<perlfaq>
  804. Frequently asked questions.
  805. =item L<perllocale>
  806. Locale support (internationalization and localization).
  807. =item L<perltoot>
  808. Tutorial on Perl OO programming.
  809. =item L<perlapio>
  810. Perl internal IO abstraction interface.
  811. =item L<perlmodlib>
  812. Perl module library and recommended practice for module creation.
  813. Extracted from L<perlmod> (which is much smaller as a result).
  814. =item L<perldebug>
  815. Although not new, this has been massively updated.
  816. =item L<perlsec>
  817. Although not new, this has been massively updated.
  818. =back
  819. =head1 New Diagnostics
  820. Several new conditions will trigger warnings that were
  821. silent before. Some only affect certain platforms.
  822. The following new warnings and errors outline these.
  823. These messages are classified as follows (listed in
  824. increasing order of desperation):
  825. (W) A warning (optional).
  826. (D) A deprecation (optional).
  827. (S) A severe warning (mandatory).
  828. (F) A fatal error (trappable).
  829. (P) An internal error you should never see (trappable).
  830. (X) A very fatal error (nontrappable).
  831. (A) An alien error message (not generated by Perl).
  832. =over 4
  833. =item "my" variable %s masks earlier declaration in same scope
  834. (W) A lexical variable has been redeclared in the same scope, effectively
  835. eliminating all access to the previous instance. This is almost always
  836. a typographical error. Note that the earlier variable will still exist
  837. until the end of the scope or until all closure referents to it are
  838. destroyed.
  839. =item %s argument is not a HASH element or slice
  840. (F) The argument to delete() must be either a hash element, such as
  841. $foo{$bar}
  842. $ref->[12]->{"susie"}
  843. or a hash slice, such as
  844. @foo{$bar, $baz, $xyzzy}
  845. @{$ref->[12]}{"susie", "queue"}
  846. =item Allocation too large: %lx
  847. (X) You can't allocate more than 64K on an MS-DOS machine.
  848. =item Allocation too large
  849. (F) You can't allocate more than 2^31+"small amount" bytes.
  850. =item Applying %s to %s will act on scalar(%s)
  851. (W) The pattern match (//), substitution (s///), and transliteration (tr///)
  852. operators work on scalar values. If you apply one of them to an array
  853. or a hash, it will convert the array or hash to a scalar value -- the
  854. length of an array, or the population info of a hash -- and then work on
  855. that scalar value. This is probably not what you meant to do. See
  856. L<perlfunc/grep> and L<perlfunc/map> for alternatives.
  857. =item Attempt to free nonexistent shared string
  858. (P) Perl maintains a reference counted internal table of strings to
  859. optimize the storage and access of hash keys and other strings. This
  860. indicates someone tried to decrement the reference count of a string
  861. that can no longer be found in the table.
  862. =item Attempt to use reference as lvalue in substr
  863. (W) You supplied a reference as the first argument to substr() used
  864. as an lvalue, which is pretty strange. Perhaps you forgot to
  865. dereference it first. See L<perlfunc/substr>.
  866. =item Bareword "%s" refers to nonexistent package
  867. (W) You used a qualified bareword of the form C<Foo::>, but
  868. the compiler saw no other uses of that namespace before that point.
  869. Perhaps you need to predeclare a package?
  870. =item Can't redefine active sort subroutine %s
  871. (F) Perl optimizes the internal handling of sort subroutines and keeps
  872. pointers into them. You tried to redefine one such sort subroutine when it
  873. was currently active, which is not allowed. If you really want to do
  874. this, you should write C<sort { &func } @x> instead of C<sort func @x>.
  875. =item Can't use bareword ("%s") as %s ref while "strict refs" in use
  876. (F) Only hard references are allowed by "strict refs". Symbolic references
  877. are disallowed. See L<perlref>.
  878. =item Cannot resolve method `%s' overloading `%s' in package `%s'
  879. (P) Internal error trying to resolve overloading specified by a method
  880. name (as opposed to a subroutine reference).
  881. =item Constant subroutine %s redefined
  882. (S) You redefined a subroutine which had previously been eligible for
  883. inlining. See L<perlsub/"Constant Functions"> for commentary and
  884. workarounds.
  885. =item Constant subroutine %s undefined
  886. (S) You undefined a subroutine which had previously been eligible for
  887. inlining. See L<perlsub/"Constant Functions"> for commentary and
  888. workarounds.
  889. =item Copy method did not return a reference
  890. (F) The method which overloads "=" is buggy. See L<overload/Copy Constructor>.
  891. =item Died
  892. (F) You passed die() an empty string (the equivalent of C<die "">) or
  893. you called it with no args and both C<$@> and C<$_> were empty.
  894. =item Exiting pseudo-block via %s
  895. (W) You are exiting a rather special block construct (like a sort block or
  896. subroutine) by unconventional means, such as a goto, or a loop control
  897. statement. See L<perlfunc/sort>.
  898. =item Identifier too long
  899. (F) Perl limits identifiers (names for variables, functions, etc.) to
  900. 252 characters for simple names, somewhat more for compound names (like
  901. C<$A::B>). You've exceeded Perl's limits. Future versions of Perl are
  902. likely to eliminate these arbitrary limitations.
  903. =item Illegal character %s (carriage return)
  904. (F) A carriage return character was found in the input. This is an
  905. error, and not a warning, because carriage return characters can break
  906. multi-line strings, including here documents (e.g., C<print <<EOF;>).
  907. =item Illegal switch in PERL5OPT: %s
  908. (X) The PERL5OPT environment variable may only be used to set the
  909. following switches: B<-[DIMUdmw]>.
  910. =item Integer overflow in hex number
  911. (S) The literal hex number you have specified is too big for your
  912. architecture. On a 32-bit architecture the largest hex literal is
  913. 0xFFFFFFFF.
  914. =item Integer overflow in octal number
  915. (S) The literal octal number you have specified is too big for your
  916. architecture. On a 32-bit architecture the largest octal literal is
  917. 037777777777.
  918. =item internal error: glob failed
  919. (P) Something went wrong with the external program(s) used for C<glob>
  920. and C<< <*.c> >>. This may mean that your csh (C shell) is
  921. broken. If so, you should change all of the csh-related variables in
  922. config.sh: If you have tcsh, make the variables refer to it as if it
  923. were csh (e.g. C<full_csh='/usr/bin/tcsh'>); otherwise, make them all
  924. empty (except that C<d_csh> should be C<'undef'>) so that Perl will
  925. think csh is missing. In either case, after editing config.sh, run
  926. C<./Configure -S> and rebuild Perl.
  927. =item Invalid conversion in %s: "%s"
  928. (W) Perl does not understand the given format conversion.
  929. See L<perlfunc/sprintf>.
  930. =item Invalid type in pack: '%s'
  931. (F) The given character is not a valid pack type. See L<perlfunc/pack>.
  932. =item Invalid type in unpack: '%s'
  933. (F) The given character is not a valid unpack type. See L<perlfunc/unpack>.
  934. =item Name "%s::%s" used only once: possible typo
  935. (W) Typographical errors often show up as unique variable names.
  936. If you had a good reason for having a unique name, then just mention
  937. it again somehow to suppress the message (the C<use vars> pragma is
  938. provided for just this purpose).
  939. =item Null picture in formline
  940. (F) The first argument to formline must be a valid format picture
  941. specification. It was found to be empty, which probably means you
  942. supplied it an uninitialized value. See L<perlform>.
  943. =item Offset outside string
  944. (F) You tried to do a read/write/send/recv operation with an offset
  945. pointing outside the buffer. This is difficult to imagine.
  946. The sole exception to this is that C<sysread()>ing past the buffer
  947. will extend the buffer and zero pad the new area.
  948. =item Out of memory!
  949. (X|F) The malloc() function returned 0, indicating there was insufficient
  950. remaining memory (or virtual memory) to satisfy the request.
  951. The request was judged to be small, so the possibility to trap it
  952. depends on the way Perl was compiled. By default it is not trappable.
  953. However, if compiled for this, Perl may use the contents of C<$^M> as
  954. an emergency pool after die()ing with this message. In this case the
  955. error is trappable I<once>.
  956. =item Out of memory during request for %s
  957. (F) The malloc() function returned 0, indicating there was insufficient
  958. remaining memory (or virtual memory) to satisfy the request. However,
  959. the request was judged large enough (compile-time default is 64K), so
  960. a possibility to shut down by trapping this error is granted.
  961. =item panic: frexp
  962. (P) The library function frexp() failed, making printf("%f") impossible.
  963. =item Possible attempt to put comments in qw() list
  964. (W) qw() lists contain items separated by whitespace; as with literal
  965. strings, comment characters are not ignored, but are instead treated
  966. as literal data. (You may have used different delimiters than the
  967. parentheses shown here; braces are also frequently used.)
  968. You probably wrote something like this:
  969. @list = qw(
  970. a # a comment
  971. b # another comment
  972. );
  973. when you should have written this:
  974. @list = qw(
  975. a
  976. b
  977. );
  978. If you really want comments, build your list the
  979. old-fashioned way, with quotes and commas:
  980. @list = (
  981. 'a', # a comment
  982. 'b', # another comment
  983. );
  984. =item Possible attempt to separate words with commas
  985. (W) qw() lists contain items separated by whitespace; therefore commas
  986. aren't needed to separate the items. (You may have used different
  987. delimiters than the parentheses shown here; braces are also frequently
  988. used.)
  989. You probably wrote something like this:
  990. qw! a, b, c !;
  991. which puts literal commas into some of the list items. Write it without
  992. commas if you don't want them to appear in your data:
  993. qw! a b c !;
  994. =item Scalar value @%s{%s} better written as $%s{%s}
  995. (W) You've used a hash slice (indicated by @) to select a single element of
  996. a hash. Generally it's better to ask for a scalar value (indicated by $).
  997. The difference is that C<$foo{&bar}> always behaves like a scalar, both when
  998. assigning to it and when evaluating its argument, while C<@foo{&bar}> behaves
  999. like a list when you assign to it, and provides a list context to its
  1000. subscript, which can do weird things if you're expecting only one subscript.
  1001. =item Stub found while resolving method `%s' overloading `%s' in %s
  1002. (P) Overloading resolution over @ISA tree may be broken by importing stubs.
  1003. Stubs should never be implicitly created, but explicit calls to C<can>
  1004. may break this.
  1005. =item Too late for "B<-T>" option
  1006. (X) The #! line (or local equivalent) in a Perl script contains the
  1007. B<-T> option, but Perl was not invoked with B<-T> in its argument
  1008. list. This is an error because, by the time Perl discovers a B<-T> in
  1009. a script, it's too late to properly taint everything from the
  1010. environment. So Perl gives up.
  1011. =item untie attempted while %d inner references still exist
  1012. (W) A copy of the object returned from C<tie> (or C<tied>) was still
  1013. valid when C<untie> was called.
  1014. =item Unrecognized character %s
  1015. (F) The Perl parser has no idea what to do with the specified character
  1016. in your Perl script (or eval). Perhaps you tried to run a compressed
  1017. script, a binary program, or a directory as a Perl program.
  1018. =item Unsupported function fork
  1019. (F) Your version of executable does not support forking.
  1020. Note that under some systems, like OS/2, there may be different flavors of
  1021. Perl executables, some of which may support fork, some not. Try changing
  1022. the name you call Perl by to C<perl_>, C<perl__>, and so on.
  1023. =item Use of "$$<digit>" to mean "${$}<digit>" is deprecated
  1024. (D) Perl versions before 5.004 misinterpreted any type marker followed
  1025. by "$" and a digit. For example, "$$0" was incorrectly taken to mean
  1026. "${$}0" instead of "${$0}". This bug is (mostly) fixed in Perl 5.004.
  1027. However, the developers of Perl 5.004 could not fix this bug completely,
  1028. because at least two widely-used modules depend on the old meaning of
  1029. "$$0" in a string. So Perl 5.004 still interprets "$$<digit>" in the
  1030. old (broken) way inside strings; but it generates this message as a
  1031. warning. And in Perl 5.005, this special treatment will cease.
  1032. =item Value of %s can be "0"; test with defined()
  1033. (W) In a conditional expression, you used <HANDLE>, <*> (glob), C<each()>,
  1034. or C<readdir()> as a boolean value. Each of these constructs can return a
  1035. value of "0"; that would make the conditional expression false, which is
  1036. probably not what you intended. When using these constructs in conditional
  1037. expressions, test their values with the C<defined> operator.
  1038. =item Variable "%s" may be unavailable
  1039. (W) An inner (nested) I<anonymous> subroutine is inside a I<named>
  1040. subroutine, and outside that is another subroutine; and the anonymous
  1041. (innermost) subroutine is referencing a lexical variable defined in
  1042. the outermost subroutine. For example:
  1043. sub outermost { my $a; sub middle { sub { $a } } }
  1044. If the anonymous subroutine is called or referenced (directly or
  1045. indirectly) from the outermost subroutine, it will share the variable
  1046. as you would expect. But if the anonymous subroutine is called or
  1047. referenced when the outermost subroutine is not active, it will see
  1048. the value of the shared variable as it was before and during the
  1049. *first* call to the outermost subroutine, which is probably not what
  1050. you want.
  1051. In these circumstances, it is usually best to make the middle
  1052. subroutine anonymous, using the C<sub {}> syntax. Perl has specific
  1053. support for shared variables in nested anonymous subroutines; a named
  1054. subroutine in between interferes with this feature.
  1055. =item Variable "%s" will not stay shared
  1056. (W) An inner (nested) I<named> subroutine is referencing a lexical
  1057. variable defined in an outer subroutine.
  1058. When the inner subroutine is called, it will probably see the value of
  1059. the outer subroutine's variable as it was before and during the
  1060. *first* call to the outer subroutine; in this case, after the first
  1061. call to the outer subroutine is complete, the inner and outer
  1062. subroutines will no longer share a common value for the variable. In
  1063. other words, the variable will no longer be shared.
  1064. Furthermore, if the outer subroutine is anonymous and references a
  1065. lexical variable outside itself, then the outer and inner subroutines
  1066. will I<never> share the given variable.
  1067. This problem can usually be solved by making the inner subroutine
  1068. anonymous, using the C<sub {}> syntax. When inner anonymous subs that
  1069. reference variables in outer subroutines are called or referenced,
  1070. they are automatically rebound to the current values of such
  1071. variables.
  1072. =item Warning: something's wrong
  1073. (W) You passed warn() an empty string (the equivalent of C<warn "">) or
  1074. you called it with no args and C<$_> was empty.
  1075. =item Ill-formed logical name |%s| in prime_env_iter
  1076. (W) A warning peculiar to VMS. A logical name was encountered when preparing
  1077. to iterate over %ENV which violates the syntactic rules governing logical
  1078. names. Since it cannot be translated normally, it is skipped, and will not
  1079. appear in %ENV. This may be a benign occurrence, as some software packages
  1080. might directly modify logical name tables and introduce nonstandard names,
  1081. or it may indicate that a logical name table has been corrupted.
  1082. =item Got an error from DosAllocMem
  1083. (P) An error peculiar to OS/2. Most probably you're using an obsolete
  1084. version of Perl, and this should not happen anyway.
  1085. =item Malformed PERLLIB_PREFIX
  1086. (F) An error peculiar to OS/2. PERLLIB_PREFIX should be of the form
  1087. prefix1;prefix2
  1088. or
  1089. prefix1 prefix2
  1090. with nonempty prefix1 and prefix2. If C<prefix1> is indeed a prefix
  1091. of a builtin library search path, prefix2 is substituted. The error
  1092. may appear if components are not found, or are too long. See
  1093. "PERLLIB_PREFIX" in F<README.os2>.
  1094. =item PERL_SH_DIR too long
  1095. (F) An error peculiar to OS/2. PERL_SH_DIR is the directory to find the
  1096. C<sh>-shell in. See "PERL_SH_DIR" in F<README.os2>.
  1097. =item Process terminated by SIG%s
  1098. (W) This is a standard message issued by OS/2 applications, while *nix
  1099. applications die in silence. It is considered a feature of the OS/2
  1100. port. One can easily disable this by appropriate sighandlers, see
  1101. L<perlipc/"Signals">. See also "Process terminated by SIGTERM/SIGINT"
  1102. in F<README.os2>.
  1103. =back
  1104. =head1 BUGS
  1105. If you find what you think is a bug, you might check the headers of
  1106. recently posted articles in the comp.lang.perl.misc newsgroup.
  1107. There may also be information at http://www.perl.com/perl/, the Perl
  1108. Home Page.
  1109. If you believe you have an unreported bug, please run the B<perlbug>
  1110. program included with your release. Make sure you trim your bug down
  1111. to a tiny but sufficient test case. Your bug report, along with the
  1112. output of C<perl -V>, will be sent off to <F<[email protected]>> to be
  1113. analysed by the Perl porting team.
  1114. =head1 SEE ALSO
  1115. The F<Changes> file for exhaustive details on what changed.
  1116. The F<INSTALL> file for how to build Perl. This file has been
  1117. significantly updated for 5.004, so even veteran users should
  1118. look through it.
  1119. The F<README> file for general stuff.
  1120. The F<Copying> file for copyright information.
  1121. =head1 HISTORY
  1122. Constructed by Tom Christiansen, grabbing material with permission
  1123. from innumerable contributors, with kibitzing by more than a few Perl
  1124. porters.
  1125. Last update: Wed May 14 11:14:09 EDT 1997