This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta for OPpTARGET_MY bugs
[perl5.git] / pod / perldelta.pod
CommitLineData
44691e6f
AB
1=encoding utf8
2
3=head1 NAME
4
86372193
A
5[ this is a template for a new perldelta file. Any text flagged as XXX needs
6to be processed before release. ]
7
8perldelta - what is new for perl v5.21.6
c68523cb 9
238894db 10=head1 DESCRIPTION
c68523cb 11
86372193 12This document describes differences between the 5.21.5 release and the 5.21.6
238894db 13release.
c68523cb 14
86372193
A
15If you are upgrading from an earlier release such as 5.21.4, first read
16L<perl5215delta>, which describes differences between 5.21.4 and 5.21.5.
8435afd1 17
86372193 18=head1 Notice
5cfa0642 19
86372193 20XXX Any important notices here
4cad5dc8 21
86372193 22=head1 Core Enhancements
4cad5dc8 23
86372193
A
24XXX New core language features go here. Summarize user-visible core language
25enhancements. Particularly prominent performance optimisations could go
26here, but most should go in the L</Performance Enhancements> section.
a5591204 27
86372193 28[ List each enhancement as a =head2 entry ]
a5591204 29
518159a1
TC
30=head2 List form of pipe open implemented for Win32
31
32The list form of pipe:
33
34 open my $fh, "-|", "program", @arguments;
35
36is now implemented on Win32. It has the same limitations as C<system
37LIST> on Win32, since the Win32 API doesn't accept program arguments
38as a list.
39
fe609065
FC
40=head2 Assignment to list repetition
41
42C<(...) x ...> can now be used within a list that is assigned to, as long
43as the left-hand side is a valid lvalue. This allows C<(undef,undef,$foo)
44= that_function()> to be written as C<((undef)x2, $foo) = that_function()>.
45
295f7815
FC
46=head2 C<close> now sets C<$!>
47
48When an I/O error occurs, the fact that there has been an error is recorded
49in the handle. C<close> returns false for such a handle. Previously, the
50value of C<$!> would be untouched by C<close>, so the common convention of
51writing C<close $fh or die $!> did not work reliably. Now the handle
52records the value of C<$!>, too, and C<close> restores it.
53
86372193 54=head1 Security
a5591204 55
86372193
A
56XXX Any security-related notices go here. In particular, any security
57vulnerabilities closed should be noted here rather than in the
58L</Selected Bug Fixes> section.
a5591204 59
86372193 60[ List each security issue as a =head2 entry ]
a5591204 61
86372193 62=head1 Incompatible Changes
a5591204 63
86372193 64XXX For a release on a stable branch, this section aspires to be:
a5591204 65
86372193
A
66 There are no changes intentionally incompatible with 5.XXX.XXX
67 If any exist, they are bugs, and we request that you submit a
68 report. See L</Reporting Bugs> below.
b15c1b56 69
86372193 70[ List each incompatible change as a =head2 entry ]
b15c1b56 71
86372193 72=head1 Deprecations
bb8c7e27 73
86372193 74XXX Any deprecated features, syntax, modules etc. should be listed here.
bb8c7e27 75
86372193 76=head2 Module removals
bb8c7e27 77
86372193 78XXX Remove this section if inapplicable.
9a88d663 79
86372193
A
80The following modules will be removed from the core distribution in a
81future release, and will at that time need to be installed from CPAN.
82Distributions on CPAN which require these modules will need to list them as
83prerequisites.
9a88d663 84
86372193
A
85The core versions of these modules will now issue C<"deprecated">-category
86warnings to alert you to this fact. To silence these deprecation warnings,
87install the modules in question from CPAN.
5cfa0642 88
86372193
A
89Note that these are (with rare exceptions) fine modules that you are encouraged
90to continue to use. Their disinclusion from core primarily hinges on their
91necessity to bootstrapping a fully functional, CPAN-capable Perl installation,
92not usually on concerns over their design.
ba474e87 93
86372193 94=over
8435afd1 95
86372193 96=item XXX
d0ab07ee 97
86372193
A
98XXX Note that deprecated modules should be listed here even if they are listed
99as an updated module in the L</Modules and Pragmata> section.
cc4d09e1 100
86372193 101=back
cc4d09e1 102
86372193 103[ List each other deprecation as a =head2 entry ]
8435afd1 104
4475d0d2
KW
105=head2 Use of non-graphic characters in single-character variable names
106
107The syntax for single-character variable names is more lenient than
108for longer variable names, allowing the one-character name to be a
109punctuation character or even invisible (a non-graphic). Perl v5.20
110deprecated the ASCII-range controls as such a name. Now, all
111non-graphic characters that formerly were allowed are deprecated.
112The practical effect of this occurs only when not under C<S<"use
113utf8">>, and affects just the C1 controls (code points 0x80 through
1140xFF), NO-BREAK SPACE, and SOFT HYPHEN.
115
8c8d6154 116=head1 Performance Enhancements
5cfa0642 117
86372193
A
118XXX Changes which enhance performance without changing behaviour go here.
119There may well be none in a stable release.
5cfa0642 120
86372193 121[ List each enhancement as a =item entry ]
8435afd1 122
86372193 123=over 4
5cfa0642 124
5b306eef
DD
125=item *
126
25a8e2be
FC
127C<(...)x1>, C<("constant")x0> and C<($scalar)x0> are now optimised in list
128context. If the right-hand argument is a constant 1, the repetition
129operator disappears. If the right-hand argument is a constant 0, the whole
130expressions is optimised to the empty list, so long as the left-hand
131argument is a simple scalar or constant. C<(foo())x0> is not optimised.
5b306eef 132
ef7051ba
FC
133=item *
134
135C<substr> assignment is now optimised into 4-argument C<substr> at the end
136of a subroutine (or as the argument to C<return>). Previously, this
137optimisation only happened in void context.
138
b450ee68
FC
139=item *
140
141Assignment to lexical variables is often optimised away. For instance, in
142C<$lexical = chr $foo>, the C<chr> operator writes directly to the lexical
143variable instead of returning a value that gets copied. This optimisation
144has been extended to C<split>, C<x> and C<vec> on the right-hand side. It
145has also been made to work with state variable initialization.
146
1e461e16
FC
147=item *
148
149In "\L...", "\Q...", etc., the extra "stringify" op is now optimised away,
150making these just as fast as C<lcfirst>, C<quotemeta>, etc.
151
86372193 152=back
357205d5 153
86372193 154=head1 Modules and Pragmata
357205d5 155
86372193
A
156XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/>
157go here. If Module::CoreList is updated, generate an initial draft of the
158following sections using F<Porting/corelist-perldelta.pl>. A paragraph summary
159for important changes should then be added by hand. In an ideal world,
160dual-life modules would have a F<Changes> file that could be cribbed.
f704f251 161
86372193 162[ Within each section, list entries as a =item entry ]
f704f251 163
86372193 164=head2 New Modules and Pragmata
0cb3abac 165
86372193 166=over 4
0cb3abac 167
deec1830
FC
168=item *
169
86372193 170XXX
deec1830 171
8c8d6154 172=back
d0ab07ee 173
8c8d6154 174=head2 Updated Modules and Pragmata
d99849ae 175
39c4a6cf 176=over 4
d99849ae 177
ff433f2d
PM
178=item *
179
15d464c4
FC
180L<B::Deparse> has been upgraded from version 1.29 to 1.30.
181
182It now deparses C<+sub : attr { ... }> correctly at the start of a
183statement. Without the initial C<+>, C<sub> would be a statement label.
184
16752205
FC
185C<BEGIN> blocks are now emitted in the right place most of the time, but
186the change unfortunately introduced a regression, in that C<BEGIN> blocks
187occurring just before the end of the enclosing block may appear below it
188instead. So this change may need to be reverted if it cannot be fixed
189before Perl 5.22. [perl #77452]
190
80b0bb91
FC
191B::Deparse no longer puts erroneous C<local> here and there, such as for
192C<LIST = tr/a//d>. [perl #119815]
193
15d464c4
FC
194=item *
195
f4e81f96 196L<DynaLoader> has been upgraded from version 1.27 to 1.28.
cbfcbc14 197
bb6a367a
DD
198=item *
199
f4e81f96
FC
200L<IO::Socket> has been upgraded from version 1.37 to 1.38.
201
202Document the limitations of the isconnected() method. [perl #123096]
bb6a367a 203
86372193 204=back
f348c3d8 205
86372193 206=head2 Removed Modules and Pragmata
f348c3d8 207
86372193 208=over 4
f348c3d8
A
209
210=item *
211
86372193 212XXX
f348c3d8 213
86372193 214=back
7635ad4d 215
86372193 216=head1 Documentation
7635ad4d 217
86372193
A
218XXX Changes to files in F<pod/> go here. Consider grouping entries by
219file and be sure to link to the appropriate page, e.g. L<perlfunc>.
7635ad4d 220
86372193 221=head2 New Documentation
f348c3d8 222
86372193 223XXX Changes which create B<new> files in F<pod/> go here.
f348c3d8 224
86372193 225=head3 L<XXX>
f4eedc6b 226
86372193 227XXX Description of the purpose of the new file here
f4eedc6b 228
86372193 229=head2 Changes to Existing Documentation
f4eedc6b 230
86372193
A
231XXX Changes which significantly change existing files in F<pod/> go here.
232However, any changes to F<pod/perldiag.pod> should go in the L</Diagnostics>
233section.
f348c3d8 234
42327f06 235=head3 L<perldata/Identifier parsing>
f348c3d8 236
86372193 237=over 4
f348c3d8
A
238
239=item *
240
42327f06
KW
241The syntax of single-character variable names has been brought
242up-to-date and more fully explained.
f348c3d8 243
86372193 244=back
f348c3d8 245
86372193 246=head1 Diagnostics
f348c3d8 247
86372193
A
248The following additions or changes have been made to diagnostic output,
249including warnings and fatal error messages. For the complete list of
250diagnostic messages, see L<perldiag>.
f348c3d8 251
86372193
A
252XXX New or changed warnings emitted by the core's C<C> code go here. Also
253include any changes in L<perldiag> that reconcile it to the C<C> code.
f348c3d8 254
86372193 255=head2 New Diagnostics
f348c3d8 256
86372193
A
257XXX Newly added diagnostic messages go under here, separated into New Errors
258and New Warnings
f348c3d8 259
86372193 260=head3 New Errors
84d03adf 261
86372193 262=over 4
ff433f2d 263
4cd408ba
TC
264=item *
265
86372193 266XXX L<message|perldiag/"message">
f348c3d8 267
86372193 268=back
f348c3d8 269
86372193 270=head3 New Warnings
f4eedc6b 271
86372193 272=over 4
f4eedc6b
DD
273
274=item *
275
4475d0d2 276L<Use of literal non-graphic characters in variable names is deprecated|perldiag/"Use of literal non-graphic characters in variable names is deprecated">
f348c3d8 277
ab0b796c
KW
278=item *
279
8c6180a9
KW
280A new C<locale> warning category has been created, with the following warning
281messages currently in it:
282
283=over 4
284
285=item *
286
287L<Locale '%s' may not work well.%s|perldiag/Locale '%s' may not work well.%s>
288
289=item *
290
ab0b796c
KW
291L<Can't do %s("%s") on non-UTF-8 locale; resolved to "%s".|perldiag/Can't do %s("%s") on non-UTF-8 locale; resolved to "%s".>
292
86372193 293=back
0561e60b 294
dd200dff
FC
295=item *
296
297L<Warning: unable to close filehandle %s properly: %s|perldiag/"Warning: unable to close filehandle %s properly: %s">
298
8c6180a9
KW
299=back
300
86372193 301=head2 Changes to Existing Diagnostics
0561e60b 302
86372193 303XXX Changes (i.e. rewording) of diagnostic messages go here
0561e60b 304
86372193 305=over 4
4cd408ba 306
f348c3d8
A
307=item *
308
cb3bb329 309L<Quantifier unexpected on zero-length expression in regex mE<sol>%sE<sol>|perldiag/"Quantifier unexpected on zero-length expression in regex m/%s/">.
4a328228
FC
310
311This message has had the S<"<-- HERE"> marker removed, as it was always
312placed at the end of the regular expression, regardless of where the
313problem actually occurred. [perl #122680]
4cd408ba 314
86372193 315=back
40a81b59 316
86372193 317=head1 Utility Changes
f348c3d8 318
86372193
A
319XXX Changes to installed programs such as F<perlbug> and F<xsubpp> go here.
320Most of these are built within the directory F<utils>.
f348c3d8 321
86372193
A
322[ List utility changes as a =head2 entry for each utility and =item
323entries for each change
324Use L<XXX> with program names to get proper documentation linking. ]
f348c3d8 325
86372193 326=head2 L<XXX>
f348c3d8 327
86372193 328=over 4
f348c3d8
A
329
330=item *
331
86372193 332XXX
40a81b59 333
13900f93 334=back
aac7f82f 335
86372193 336=head1 Configuration and Compilation
2a395b86 337
86372193
A
338XXX Changes to F<Configure>, F<installperl>, F<installman>, and analogous tools
339go here. Any other changes to the Perl build process should be listed here.
340However, any platform-specific changes should be listed in the
341L</Platform Support> section, instead.
8435afd1 342
86372193 343[ List changes as a =item entry ].
8435afd1
SH
344
345=over 4
2a395b86 346
12d22d1f
JK
347=item *
348
c517e197 349F<Configure> with C<-Dmksymlinks> should now be faster. [perl #122002]
12d22d1f 350
2a395b86
PM
351=back
352
86372193 353=head1 Testing
2a395b86 354
86372193
A
355XXX Any significant changes to the testing of a freshly built perl should be
356listed here. Changes which create B<new> files in F<t/> go here as do any
357large changes to the testing harness (e.g. when parallel testing was added).
358Changes to existing files in F<t/> aren't worth summarizing, although the bugs
359that they represent may be covered elsewhere.
2a395b86 360
86372193 361[ List each test improvement as a =item entry ]
5cfa0642 362
8c8d6154 363=over 4
2a395b86
PM
364
365=item *
366
86372193 367XXX
bb8c7e27 368
86372193 369=back
bb8c7e27 370
86372193 371=head1 Platform Support
bb8c7e27 372
86372193 373XXX Any changes to platform support should be listed in the sections below.
bb8c7e27 374
86372193
A
375[ Within the sections, list each platform as a =item entry with specific
376changes as paragraphs below it. ]
2a395b86 377
86372193 378=head2 New Platforms
6d9b7c7c 379
86372193
A
380XXX List any platforms that this version of perl compiles on, that previous
381versions did not. These will either be enabled by new files in the F<hints/>
382directories, or new subdirectories and F<README> files at the top level of the
383source tree.
363d3025 384
8c8d6154 385=over 4
334464b3 386
86372193 387=item XXX-some-platform
334464b3 388
86372193 389XXX
ef5a9509 390
363d3025
FC
391=back
392
86372193
A
393=head2 Discontinued Platforms
394
395XXX List any platforms that this version of perl no longer compiles on.
d72cd2eb 396
0346c3a9 397=over 4
375f5f06 398
86372193 399=item XXX-some-platform
2884baee 400
86372193 401XXX
6f1a844b 402
8c8d6154 403=back
549ea8d4 404
8c8d6154 405=head2 Platform-Specific Notes
aa292ef2 406
86372193
A
407XXX List any changes for specific platforms. This could include configuration
408and compilation changes or changes in portability/compatibility. However,
409changes within modules for platforms should generally be listed in the
410L</Modules and Pragmata> section.
411
8c8d6154 412=over 4
739e9bee 413
86372193 414=item XXX-some-platform
739e9bee 415
86372193 416XXX
b23b2fdb 417
8c8d6154 418=back
b23b2fdb 419
83b69bfd
DD
420=head3 Win32
421
422=over 4
423
424=item *
425
426In the experimental C<:win32> layer, a crash in C<open> was fixed. Also
427opening C</dev/null>, which works the Win32 Perl's normal C<:unix> layer, was
428implemented for C<:win32>.
429L<[perl #122224]|https://rt.perl.org/Ticket/Display.html?id=122224>
430
13adb056
SH
431=item *
432
433A new makefile option, C<USE_LONG_DOUBLE>, has been added to the Windows
434dmake makefile for gcc builds only. Set this to "define" if you want perl to
435use long doubles to give more accuracy and range for floating point numbers.
436
83b69bfd
DD
437=back
438
8c8d6154 439=head1 Internal Changes
7d15b1a8 440
86372193
A
441XXX Changes which affect the interface available to C<XS> code go here. Other
442significant internal changes for future core maintainers should be noted as
443well.
bbca64cf 444
86372193 445[ List each change as a =item entry ]
6ff8f256 446
86372193 447=over 4
28482d6c 448
28a42920
A
449=item *
450
f8d5a522
DD
451C<screaminstr> has been removed. Although marked as public API, it is
452undocumented and has no usage in modern perl versions on CPAN Grep. Calling it
453has been fatal since 5.17.0.
28a42920 454
d109137e
FC
455=item *
456
76acbf4f
FC
457C<newDEFSVOP>, C<block_start>, C<block_end> and C<intro_my> have been added
458to the API.
d109137e 459
cff8e04e
FC
460=item *
461
462The internal C<convert> function in F<op.c> has been renamed
463C<op_convert_list> and added to the API.
464
391823f2
FC
465=item *
466
467C<sv_magic> no longer forbids "ext" magic on read-only values. After all,
468perl can't know whether the custom magic will modify the SV or not.
469[perl #123103]
470
8c8d6154 471=back
6ff8f256 472
8c8d6154 473=head1 Selected Bug Fixes
80cc3290 474
86372193
A
475XXX Important bug fixes in the core language are summarized here. Bug fixes in
476files in F<ext/> and F<lib/> are best summarized in L</Modules and Pragmata>.
13dd5671 477
86372193 478[ List each fix as a =item entry ]
bdab7676 479
86372193 480=over 4
db98db4e 481
8818afe8
TC
482=item *
483
2ad9844a
TC
484fchmod() and futimes() now set C<$!> when they fail due to being
485passed a closed file handle. [perl #122703]
bb8c7e27 486
9ee757be
KW
487=item *
488
489Perl now comes with a corrected Unicode 7.0 for the erratum issued on
490October 21, 2014 (see L<http://www.unicode.org/errata/#current_errata>),
491dealing with glyph shaping in Arabic.
492
c93d2ba1
TC
493=item *
494
495op_free() no longer crashes due to a stack overflow when freeing a
496deeply recursive op tree. [perl #108276]
497
53795ef8
FC
498=item *
499
9d22ccf6
TC
500scalarvoid() would crash due to a stack overflow when processing a
501deeply recursive op tree. [perl #108276]
502
503=item *
504
53795ef8
FC
505In Perl 5.20.0, C<$^N> accidentally had the internal UTF8 flag turned off
506if accessed from a code block within a regular expression, effectively
507UTF8-encoding the value. This has been fixed. [perl #123135]
508
b7cd8332
FC
509=item *
510
511A failed C<semctl> call no longer overwrites existing items on the stack,
512causing C<(semctl(-1,0,0,0))[0]> to give an "uninitialized" warning.
513
480961b6
FC
514=item *
515
516C<else{foo()}> with no space before C<foo> is now better at assigning the
517right line number to that statement. [perl #122695]
518
94c9bf90
FC
519=item *
520
521Sometimes the assignment in C<@array = split> gets optimised and C<split>
522itself writes directly to the array. This caused a bug, preventing this
523assignment from being used in lvalue context. So
524C<(@a=split//,"foo")=bar()> was an error. (This bug probably goes back to
525Perl 3, when the optimisation was added.) This optimisation, and the bug,
526started to happen in more cases in 5.21.5. It has now been fixed.
527[perl #123057]
528
8af808bf
FC
529=item *
530
531When argument lists that fail the checks installed by subroutine
532signatures, the resulting error messages now give the file and line number
533of the caller, not of the called subroutine. [perl #121374]
534
fdcaecb7
FC
535=item *
536
537Flip-flop operators (C<..> and C<...> in scalar context) used to maintain
538a separate state for each recursion level (the number of times the
539enclosing sub was called recursively), contrary to the documentation. Now
540each closure has one internal state for each flip-flop. [perl #122829]
541
2af7c6b6
FC
542=item *
543
544C<use>, C<no>, statement labels, special blocks (C<BEGIN>) and pod are now
545permitted as the first thing in a C<map> or C<grep> block, the block after
546C<print> or C<say> (or other functions) returning a handle, and within
547C<${...}>, C<@{...}>, etc. [perl #122782]
548
c0b32823
FC
549=item *
550
551The repetition operator C<x> now propagates lvalue context to its left-hand
552argument when used in contexts like C<foreach>. That allows
553C<for(($#that_array)x2) { ... }> to work as expected if the loop modifies
554$_.
555
b1a4e8b3
FC
556=item *
557
558C<(...) x ...> in scalar context used to corrupt the stack if one operand
559were an object with "x" overloading, causing erratic behaviour.
560[perl #121827]
561
9e26817d
FC
562=item *
563
564Assignment to a lexical scalar is often optimised away (as mentioned under
565L</Performance Enhancements>. Various bugs related to this optimisation
566have been fixed. Certain operators on the right-hand side would sometimes
567fail to assign the value at all or assign the wrong value, or would call
568STORE twice or not at all on tied variables. The operators affected were
569C<$foo++>, C<$foo-->, and C<-$foo> under C<use integer>, C<chomp>, C<chr>
570and C<setpgrp>.
571
86372193 572=back
bb8c7e27 573
86372193 574=head1 Known Problems
bb8c7e27 575
86372193
A
576XXX Descriptions of platform agnostic bugs we know we can't fix go here. Any
577tests that had to be C<TODO>ed for the release would be noted here. Unfixed
578platform specific bugs also go here.
bb8c7e27 579
86372193 580[ List each fix as a =item entry ]
bb8c7e27 581
86372193 582=over 4
bb8c7e27 583
74f9f9ed
A
584=item *
585
eacbb379
DD
586Starting in 5.21.6, accessing L<perlapi/CvPADLIST> in an XSUB is forbidden.
587CvPADLIST has be reused for a different internal purpose for XSUBs. Guard all
588CvPADLIST expressions with C<CvISXSUB()> if your code doesn't already block
589XSUB CV*s from going through optree CV* expecting code.
28a42920 590
86372193 591=back
28a42920 592
86372193 593=head1 Errata From Previous Releases
28a42920 594
86372193 595=over 4
28a42920
A
596
597=item *
598
857f4fb1
FC
599Due to a mistake in the string-copying logic, copying the value of a state
600variable could instead steal the value and undefine the variable. This
601bug, introduced in 5.20, would happen mostly for long strings (1250 chars
602or more), but could happen for any strings under builds with copy-on-write
603disabled. [perl #123029]
604
605This bug was actually fixed in 5.21.5, but it was not until after that
606release that this bug, and the fact that it had been fixed, were
607discovered.
28a42920 608
8c8d6154 609=back
3a085d00 610
86372193 611=head1 Obituary
01d42a22 612
86372193
A
613XXX If any significant core contributor has died, we've added a short obituary
614here.
01d42a22 615
86372193 616=head1 Acknowledgements
01d42a22 617
86372193 618XXX Generate this with:
01d42a22 619
86372193 620 perl Porting/acknowledgements.pl v5.21.5..HEAD
f5b73711 621
44691e6f
AB
622=head1 Reporting Bugs
623
e08634c5
SH
624If you find what you think is a bug, you might check the articles recently
625posted to the comp.lang.perl.misc newsgroup and the perl bug database at
238894db 626https://rt.perl.org/ . There may also be information at
7ef8b31d 627http://www.perl.org/ , the Perl Home Page.
44691e6f 628
e08634c5
SH
629If you believe you have an unreported bug, please run the L<perlbug> program
630included with your release. Be sure to trim your bug down to a tiny but
631sufficient test case. Your bug report, along with the output of C<perl -V>,
632will be sent off to perlbug@perl.org to be analysed by the Perl porting team.
44691e6f
AB
633
634If the bug you are reporting has security implications, which make it
e08634c5
SH
635inappropriate to send to a publicly archived mailing list, then please send it
636to perl5-security-report@perl.org. This points to a closed subscription
637unarchived mailing list, which includes all the core committers, who will be
638able to help assess the impact of issues, figure out a resolution, and help
f9001595 639co-ordinate the release of patches to mitigate or fix the problem across all
e08634c5
SH
640platforms on which Perl is supported. Please only use this address for
641security issues in the Perl core, not for modules independently distributed on
642CPAN.
44691e6f
AB
643
644=head1 SEE ALSO
645
e08634c5
SH
646The F<Changes> file for an explanation of how to view exhaustive details on
647what changed.
44691e6f
AB
648
649The F<INSTALL> file for how to build Perl.
650
651The F<README> file for general stuff.
652
653The F<Artistic> and F<Copying> files for copyright information.
654
655=cut