Don't use big-Oh when talking about lower bounds.
[p5sagit/p5-mst-13.2.git] / pod / perldelta.pod
CommitLineData
cc0fca54 1=head1 NAME
2
53080bb1 3perldelta - what's new for perl v5.7.0
cc0fca54 4
5=head1 DESCRIPTION
6
53080bb1 7This document describes differences between the 5.6.0 release and
8the 5.7.0 release.
cc0fca54 9
43b92eec 10=head1 Security Vulnerability Closed
d4ad863d 11
12A potential security vulnerability in the optional suidperl component
ce72e97c 13of Perl has been identified. suidperl is neither built nor installed
14by default. As of August the 20th, 2000, the only known vulnerable
15platform is Linux, most likely all Linux distributions. CERT and
16various vendors have been alerted about the vulnerability.
d4ad863d 17
18The problem was caused by Perl trying to report a suspected security
ce72e97c 19exploit attempt using an external program, /bin/mail. On Linux
d4ad863d 20platforms the /bin/mail program had an undocumented feature which gave
ce72e97c 21access to a root shell, resulting in a serious compromise instead of
22reporting the exploit attempt. If you don't have /bin/mail, or if you
23have 'safe setuid scripts', or if suidperl is not installed, you
d4ad863d 24are safe.
25
26The exploit attempt reporting feature has been completely removed from
27the Perl 5.7.0 release, so that particular vulnerability isn't there
562628a3 28anymore. However, further security vulnerabilities are,
29unfortunately, always possible. The suidperl code is being reviewed
30and if deemed too risky to continue to be supported, it may be
31completely removed from future releases. In any case, suidperl should
32only be used by security experts who know exactly what they are doing
33and why they are using suidperl instead of some other solution such as
34sudo (see http://www.courtesan.com/sudo/).
d4ad863d 35
36=head1 Incompatible Changes
37
ce72e97c 38=over 4
39
40=item *
d4ad863d 41
ce72e97c 42Arrays now always interpolate into double-quoted strings:
43constructs like "foo@bar" now always assume C<@bar> is an array,
44whether or not the compiler has seen use of C<@bar>.
d4ad863d 45
ce72e97c 46=item *
d4ad863d 47
48The semantics of bless(REF, REF) were unclear and until someone proves
49it to make some sense, it is forbidden.
50
ce72e97c 51=item *
d4ad863d 52
53The very dusty examples in the eg/ directory have been removed.
54Suggestions for new shiny examples welcome but the main issue is that
ce72e97c 55the examples need to be documented, tested and (most importantly)
56maintained.
d4ad863d 57
ce72e97c 58=item *
d4ad863d 59
60The obsolete chat2 library that should never have been allowed
61to escape the laboratory has been decommissioned.
62
ce72e97c 63=item *
d4ad863d 64
65The unimplemented POSIX regex features [[.cc.]] and [[=c=]] are still
43b92eec 66recognised but now cause fatal errors. The previous behaviour of
d4ad863d 67ignoring them by default and warning if requested was unacceptable
68since it, in a way, falsely promised that the features could be used.
69
ce72e97c 70=item *
d4ad863d 71
72lstat(FILEHANDLE) now gives a warning because the operation makes no sense.
73In future releases this may become a fatal error.
74
ce72e97c 75=item *
d4ad863d 76
ce72e97c 77The long deprecated uppercase aliases for the string comparison
d4ad863d 78operators (EQ, NE, LT, LE, GE, GT) have now been removed.
79
ce72e97c 80=item *
d4ad863d 81
82The regular expression captured submatches ($1, $2, ...) are now
ce72e97c 83more consistently unset if the match fails, instead of leaving false
d4ad863d 84data lying around in them.
85
ce72e97c 86=item *
d4ad863d 87
88The tr///C and tr///U features have been removed and will not return;
89the interface was a mistake. Sorry about that. For similar
90functionality, see pack('U0', ...) and pack('C0', ...).
91
ce72e97c 92=back
93
cc0fca54 94=head1 Core Enhancements
95
53080bb1 96=over 4
97
98=item *
99
100C<perl -d:Module=arg,arg,arg> now works (previously one couldn't pass
101in multiple arguments.)
102
103=item *
104
53080bb1 105my __PACKAGE__ now works.
106
107=item *
108
ce72e97c 109C<no Module;> now works even if there is no "sub unimport" in the Module.
53080bb1 110
111=item *
112
d4ad863d 113The numerical comparison operators return C<undef> if either operand
114is a NaN. Previously the behaviour was unspecified.
53080bb1 115
116=item *
117
43b92eec 118C<pack('U0a*', ...)> can now be used to force a string to UTF8.
53080bb1 119
120=item *
121
122prototype(\&) is now available.
123
53080bb1 124=back
125
cc0fca54 126=head1 Modules and Pragmata
127
53080bb1 128=head2 New Modules
129
d4ad863d 130=over 4
131
132=item *
133
ce72e97c 134File::Temp allows one to create temporary files and directories in an
135easy, portable, and secure way.
d4ad863d 136
137=item *
138
ce72e97c 139Storable gives persistence to Perl data structures by allowing the
140storage and retrieval of Perl data to and from files in a fast and
141compact binary format.
d4ad863d 142
143=back
53080bb1 144
145=head2 Updated And Improved Modules and Pragmata
146
147=over 4
148
149=item *
150
ce72e97c 151The following independently supported modules have been updated to
152newer versions from CPAN: CGI, CPAN, DB_File, File::Spec, Getopt::Long,
153the podlators bundle, Pod::LaTeX, Pod::Parser, Term::ANSIColor, Test.
53080bb1 154
155=item *
156
ce72e97c 157Bug fixes and minor enhancements have been applied to B::Deparse,
9db5a202 158Data::Dumper, IO::Poll, IO::Socket::INET, Math::BigFloat,
159Math::Complex, Math::Trig, re, SelfLoader, Sys::SysLog, Test::Harness,
160Text::Wrap, UNIVERSAL.
53080bb1 161
162=item *
163
ce72e97c 164The attributes::reftype() now works on tied arguments.
53080bb1 165
166=item *
167
ce72e97c 168AutoLoader can now be disabled with C<no AutoLoader;>,
53080bb1 169
170=item *
171
172The English module can now be used without the infamous performance
173hit by saying
174
175 use English '-no_performance_hit';
176
177(Assuming, of course, that one doesn't need the troublesome variables
178C<$`>, C<$&>, or C<$'>.) Also, introduce C<@LAST_MATCH_START> and
179C<@LAST_MATCH_END> English aliases for C<@-> and C<@+>.
180
181=item *
182
ce72e97c 183File::Find now has pre- and post-processing callbacks. It also
184correctly changes directories when chasing symbolic links. Callbacks
185(naughtily) exiting with "next;" instead of "return;" now work.
53080bb1 186
187=item *
188
d4ad863d 189File::Glob::glob() renamed to File::Glob::bsd_glob() to avoid
53080bb1 190prototype mismatch with CORE::glob().
191
192=item *
193
ce72e97c 194IPC::Open3 now allows the use of numeric file descriptors.
53080bb1 195
196=item *
197
ce72e97c 198use lib now works identically to @INC. Removing directories
199with 'no lib' now works.
53080bb1 200
201=item *
202
ce72e97c 203C<%INC> now localised in a Safe compartment so that use/require work.
53080bb1 204
205=item *
206
ce72e97c 207The Shell module now has an OO interface.
53080bb1 208
ce72e97c 209=back
53080bb1 210
ce72e97c 211=head1 Utility Changes
53080bb1 212
ce72e97c 213=over 4
53080bb1 214
215=item *
216
ce72e97c 217The Emacs perl mode (emacs/cperl-mode.el) has been updated to version 4.31.
53080bb1 218
219=item *
220
ce72e97c 221Perlbug is now much more robust. It also sends the bug report to perl.org,
222not perl.com.
53080bb1 223
224=item *
225
ce72e97c 226The perlcc utility has been rewritten and its user interface (that is,
227command line) is much more like that of the UNIX C compiler, cc.
53080bb1 228
229=item *
230
ce72e97c 231The xsubpp utility for extension writers now understands POD
232documentation embedded in the *.xs files.
53080bb1 233
ce72e97c 234=back
53080bb1 235
ce72e97c 236=head1 New Documentation
53080bb1 237
ce72e97c 238=over 4
53080bb1 239
240=item *
241
ce72e97c 242perl56delta details the changes between the 5.005 release and the
2435.6.0 release.
53080bb1 244
245=item *
246
ce72e97c 247perldebtut is a Perl debugging tutorial.
53080bb1 248
249=item *
250
ce72e97c 251perlebcdic contains considerations for running Perl on EBCDIC platforms.
252Note that unfortunately EBCDIC platforms that used to supported back in
253Perl 5.005 are still unsupported by Perl 5.7.0; the plan, however, is to
254bring them back to the fold.
53080bb1 255
256=item *
257
ce72e97c 258perlnewmod tells about writing and submitting a new module.
53080bb1 259
260=item *
261
ce72e97c 262perlposix-bc explains using Perl on the POSIX-BC platform
562628a3 263(an EBCDIC mainframe platform).
53080bb1 264
265=item *
266
ce72e97c 267perlretut is a regular expression tutorial.
53080bb1 268
269=item *
270
ce72e97c 271perlrequick is a regular expressions quick-start guide.
272Yes, much quicker than perlretut.
53080bb1 273
274=item *
275
ce72e97c 276perlutil explains the command line utilities packaged with the Perl
277distribution.
53080bb1 278
279=back
280
ce72e97c 281=head1 Performance Enhancements
53080bb1 282
562628a3 283=over 4
284
285=item *
286
ce72e97c 287map() that changes the size of the list should now work faster.
53080bb1 288
be7ddd5d 289=sort *
290
291sort() has been changed to use mergesort internally as opposed to the
292earlier quicksort. For very small lists this may result in slightly
293slower sorting times, but in general the speedup should be at least 20%.
294Additional bonuses are that the worst case behaviour of sort() is now
e11c4a89 295better (in computer science terms it now runs in time O(N log N), as
296opposed to quicksorts Theta(N**2) worst-case run time behaviour), and
297that sort() is now stable (meaning that elements with identical keys
298will stay ordered as they were before the sort).
be7ddd5d 299
562628a3 300=back
301
ce72e97c 302=head1 Installation and Configuration Improvements
53080bb1 303
ce72e97c 304=head2 Generic Improvements
cc0fca54 305
53080bb1 306=over 4
307
308=item *
309
ce72e97c 310INSTALL now explains how you can configure perl to use 64-bit
311integers even on non-64-bit platforms.
53080bb1 312
313=item *
314
ce72e97c 315Policy.sh policy change: if you are reusing a Policy.sh file (see
316INSTALL) and you use Configure -Dprefix=/foo/bar and in the old
317Policy $prefix eq $siteprefix and $prefix eq $vendorprefix, all of
318them will now be changed to the new prefix, /foo/bar. (Previously
319only $prefix changed.) If you do not like this new behaviour,
320specify prefix, siteprefix, and vendorprefix explicitly.
53080bb1 321
322=item *
323
ce72e97c 324A new optional location for Perl libraries, otherlibdirs, is available.
325It can be used for example for vendor add-ons without disturbing Perl's
326own library directories.
53080bb1 327
328=item *
329
ce72e97c 330In many platforms the vendor-supplied 'cc' is too stripped-down to
331build Perl (basically, 'cc' doesn't do ANSI C). If this seems
332to be the case and 'cc' does not seem to be the GNU C compiler
333'gcc', an automatic attempt is made to find and use 'gcc' instead.
53080bb1 334
335=item *
336
ce72e97c 337gcc needs to closely track the operating system release to avoid
338build problems. If Configure finds that gcc was built for a different
339operating system release than is running, it now gives a clearly visible
340warning that there may be trouble ahead.
53080bb1 341
342=item *
343
ce72e97c 344If binary compatibility with the 5.005 release is not wanted, Configure
345no longer suggests including the 5.005 modules in @INC.
53080bb1 346
347=item *
348
ce72e97c 349Configure C<-S> can now run non-interactively.
53080bb1 350
351=item *
352
ce72e97c 353configure.gnu now works with options with whitespace in them.
53080bb1 354
355=item *
356
ce72e97c 357installperl now outputs everything to STDERR.
53080bb1 358
359=item *
360
ce72e97c 361$Config{byteorder} is now computed dynamically (this is more robust
362with "fat binaries" where an executable image contains binaries for
363more than one binary platform.)
53080bb1 364
ce72e97c 365=back
53080bb1 366
ce72e97c 367=head1 Selected Bug Fixes
53080bb1 368
ce72e97c 369=over 4
53080bb1 370
371=item *
372
ce72e97c 373Several debugger fixes: exit code now reflects the script exit code,
374condition C<"0"> now treated correctly, the C<d> command now checks
375line number, the C<$.> no longer gets corrupted, all debugger output now
376goes correctly to the socket if RemotePort is set.
53080bb1 377
378=item *
379
ce72e97c 380C<*foo{FORMAT}> now works.
53080bb1 381
382=item *
383
ce72e97c 384Lexical warnings now propagating correctly between scopes.
53080bb1 385
386=item *
387
ce72e97c 388Line renumbering with eval and C<#line> now works.
53080bb1 389
390=item *
391
ce72e97c 392Fixed numerous memory leaks, especially in eval "".
53080bb1 393
394=item *
395
ce72e97c 396Modulus of unsigned numbers now works (4063328477 % 65535 used to
397return 27406, instead of 27047).
53080bb1 398
399=item *
400
ce72e97c 401Some "not a number" warnings introduced in 5.6.0 eliminated to be
402more compatible with 5.005. Infinity is now recognised as a number.
53080bb1 403
404=item *
405
ce72e97c 406our() variables will not cause "will not stay shared" warnings.
53080bb1 407
408=item *
409
ce72e97c 410pack "Z" now correctly terminates the string with "\0".
53080bb1 411
412=item *
413
ce72e97c 414Fix password routines which in some shadow password platforms
415(e.g. HP-UX) caused getpwent() to return every other entry.
53080bb1 416
417=item *
418
ce72e97c 419printf() no longer resets the numeric locale to "C".
53080bb1 420
421=item *
422
ce72e97c 423C<q(a\\b)> now parses correctly as C<'a\\b'>.
53080bb1 424
425=item *
426
ce72e97c 427Printing quads (64-bit integers) with printf/sprintf now works
562628a3 428without the q L ll prefixes (assuming you are on a quad-capable platform).
53080bb1 429
430=item *
431
ce72e97c 432Regular expressions on references and overloaded scalars now work.
53080bb1 433
434=item *
435
ce72e97c 436scalar() now forces scalar context even when used in void context.
53080bb1 437
438=item *
ce72e97c 439
440sort() arguments are now compiled in the right wantarray context
441(they were accidentally using the context of the sort() itself).
53080bb1 442
443=item *
444
ce72e97c 445Changed the POSIX character class C<[[:space:]]> to include the (very
446rare) vertical tab character. Added a new POSIX-ish character class
447C<[[:blank:]]> which stands for horizontal whitespace (currently,
448the space and the tab).
53080bb1 449
450=item *
451
ce72e97c 452$AUTOLOAD, sort(), lock(), and spawning subprocesses
453in multiple threads simultaneously are now thread-safe.
53080bb1 454
455=item *
456
ce72e97c 457Allow read-only string on left hand side of non-modifying tr///.
53080bb1 458
459=item *
460
ce72e97c 461Several Unicode fixes (but still not perfect).
53080bb1 462
ce72e97c 463=over 8
53080bb1 464
465=item *
466
ce72e97c 467BOMs (byte order marks) in the beginning of Perl files
468(scripts, modules) should now be transparently skipped.
469UTF16 encoded Perl files should now be read correctly.
53080bb1 470
471=item *
472
ce72e97c 473The character tables have been updated to new Unicode 3.0 features.
53080bb1 474
ce72e97c 475=item *
53080bb1 476
ce72e97c 477chr() for values greater than 127 now create utf8 when under use
478utf8.
53080bb1 479
ce72e97c 480=item *
53080bb1 481
ce72e97c 482Comparing with utf8 data does not magically upgrade non-utf8 data into
483utf8.
53080bb1 484
485=item *
486
ce72e97c 487C<IsAlnum>, C<IsAlpha>, and C<IsWord> now match titlecase.
53080bb1 488
489=item *
490
ce72e97c 491Concatenation with the C<.> operator or via variable interpolation,
492C<eq>, C<substr>, C<reverse>, C<quotemeta>, the C<x> operator,
493substitution with C<s///>, single-quoted UTF8, should now work--in
494theory.
53080bb1 495
496=item *
497
ce72e97c 498The C<tr///> operator now works I<slightly> better but is still rather
499broken. Note that the C<tr///CU> functionality has been removed (but
500see pack('U0', ...)).
53080bb1 501
502=item *
503
ce72e97c 504Zero entries were missing from the Unicode classes like C<IsDigit>.
53080bb1 505
506=back
507
ce72e97c 508=item *
53080bb1 509
ce72e97c 510UNIVERSAL::isa no longer caches methods incorrectly. (This broke
511the Tk extension with 5.6.0.)
53080bb1 512
ce72e97c 513=back
53080bb1 514
ce72e97c 515=head2 Platform Specific Changes and Fixes
53080bb1 516
517=over 4
518
519=item *
520
ce72e97c 521BSDI 4.*
53080bb1 522
ce72e97c 523Perl now works on post-4.0 BSD/OSes.
53080bb1 524
ce72e97c 525=item *
53080bb1 526
ce72e97c 527All BSDs
53080bb1 528
ce72e97c 529Setting C<$0> now works (as much as possible; see perlvar for details).
53080bb1 530
ce72e97c 531=item *
53080bb1 532
ce72e97c 533Cygwin
53080bb1 534
ce72e97c 535Numerous updates; currently synchronised with Cygwin 1.1.4.
53080bb1 536
537=item *
538
ce72e97c 539EPOC
53080bb1 540
ce72e97c 541EPOC update after Perl 5.6.0. See README.epoc.
53080bb1 542
ce72e97c 543=item *
53080bb1 544
ce72e97c 545FreeBSD 3.*
53080bb1 546
ce72e97c 547Perl now works on post-3.0 FreeBSDs.
53080bb1 548
549=item *
550
ce72e97c 551HP-UX
53080bb1 552
ce72e97c 553README.hpux updated; C<Configure -Duse64bitall> now almost works.
53080bb1 554
ce72e97c 555=item *
53080bb1 556
ce72e97c 557IRIX
53080bb1 558
ce72e97c 559Numerous compilation flag and hint enhancements; accidental mixing
560of 32-bit and 64-bit libraries (a doomed attempt) made much harder.
53080bb1 561
562=item *
563
ce72e97c 564Linux
53080bb1 565
ce72e97c 566Long doubles should now work (see INSTALL).
53080bb1 567
568=item *
569
ce72e97c 570MacOS Classic
571
53080bb1 572Compilation of the standard Perl distribution in MacOS Classic should
ce72e97c 573now work if you have the Metrowerks development environment and
574the missing Mac-specific toolkit bits. Contact the macperl mailing
53080bb1 575list for details.
576
ce72e97c 577=item *
53080bb1 578
ce72e97c 579MPE/iX
53080bb1 580
ce72e97c 581MPE/iX update after Perl 5.6.0. See README.mpeix.
53080bb1 582
ce72e97c 583=item *
53080bb1 584
ce72e97c 585NetBSD/sparc
53080bb1 586
ce72e97c 587Perl now works on NetBSD/sparc.
53080bb1 588
589=item *
590
ce72e97c 591OS/2
53080bb1 592
ce72e97c 593Now works with usethreads (see INSTALL).
53080bb1 594
595=item *
596
ce72e97c 597Solaris
53080bb1 598
ce72e97c 59964-bitness using the Sun Workshop compiler now works.
53080bb1 600
601=item *
602
ce72e97c 603Tru64 (aka Digital UNIX, aka DEC OSF/1)
604
605The operating system version letter now recorded in $Config{osvers}.
53080bb1 606Allow compiling with gcc (previously explicitly forbidden). Compiling
607with gcc still not recommended because buggy code results, even with
608gcc 2.95.2.
609
610=item *
611
ce72e97c 612Unicos
53080bb1 613
614Fixed various alignment problems that lead into core dumps either
ce72e97c 615during build or later; no longer dies on math errors at runtime;
616now using full quad integers (64 bits), previously was using
b84d4f81 617only 46 bit integers for speed.
53080bb1 618
53080bb1 619=item *
620
ce72e97c 621VMS
53080bb1 622
ce72e97c 623chdir() now works better despite a CRT bug; now works with MULTIPLICITY
624(see INSTALL); now works with Perl's malloc.
53080bb1 625
626=item *
627
ce72e97c 628Windows
53080bb1 629
ce72e97c 630=over 8
53080bb1 631
632=item *
633
d4ad863d 634accept() no longer leaks memory.
53080bb1 635
636=item *
637
638Better chdir() return value for a non-existent directory.
639
640=item *
641
642New %ENV entries now propagate to subprocesses.
643
644=item *
645
646$ENV{LIB} now used to search for libs under Visual C.
647
648=item *
649
650A failed (pseudo)fork now returns undef and sets errno to EAGAIN.
651
652=item *
653
654Allow REG_EXPAND_SZ keys in the registry.
655
656=item *
657
658Can now send() from all threads, not just the first one.
659
660=item *
661
662Fake signal handling reenabled, bugs and all.
663
664=item *
665
666Less stack reserved per thread so that more threads can run
667concurrently. (still 16M perl thread)
668
669=item *
670
671C<File::Spec->tmpdir()> now prefers C:/temp over /tmp
672(works better when perl running as service).
673
674=item *
675
676Better UNC path handling under ithreads.
677
678=item *
679
680wait() and waitpid() now work much better.
681
682=item *
683
684winsock handle leak fixed.
685
686=back
687
cc0fca54 688=head1 New or Changed Diagnostics
689
53080bb1 690All regular expression compilation error messages are now hopefully
691easier to understand both because the error message now comes before
692the failed regex and because the point of failure is now clearly
693marked.
694
695The various "opened only for", "on closed", "never opened" warnings
696drop the C<main::> prefix for filehandles in the C<main> package,
562628a3 697for example C<STDIN> instead of <main::STDIN>.
53080bb1 698
d4ad863d 699The "Unrecognized escape" warning has been extended to include C<\8>,
700C<\9>, and C<\_>. There is no need to escape any of the C<\w> characters.
53080bb1 701
53080bb1 702=head1 Changed Internals
703
ce72e97c 704=over 4
705
706=item *
53080bb1 707
d4ad863d 708perlapi.pod (a companion to perlguts) now attempts to document the
709internal API.
53080bb1 710
ce72e97c 711=item *
53080bb1 712
ce72e97c 713You can now build a really minimal perl called microperl.
d4ad863d 714Building microperl does not require even running Configure;
715C<make -f Makefile.micro> should be enough. Beware: microperl makes
716many assumptions, some of which may be too bold; the resulting
717executable may crash or otherwise misbehave in wondrous ways. For
718careful hackers only.
53080bb1 719
ce72e97c 720=item *
53080bb1 721
43b92eec 722Added rsignal(), whichsig(), do_join() to the publicised API.
53080bb1 723
ce72e97c 724=item *
53080bb1 725
43b92eec 726Made possible to propagate customised exceptions via croak()ing.
53080bb1 727
ce72e97c 728=item *
53080bb1 729
730Added is_utf8_char(), is_utf8_string(), bytes_to_utf8(), and utf8_to_bytes().
731
ce72e97c 732=item *
53080bb1 733
734Now xsubs can have attributes just like subs.
735
ce72e97c 736=back
737
cc0fca54 738=head1 Known Problems
739
53080bb1 740=head2 Unicode Support Still Far From Perfect
741
742We're working on it. Stay tuned.
743
744=head2 EBCDIC Still A Lost Platform
745
746The plan is to bring them back.
747
748=head2 Building Extensions Can Fail Because Of Largefiles
749
750Certain extensions like mod_perl and BSD::Resource are known to have
ce72e97c 751issues with `largefiles', a change brought by Perl 5.6.0 in which file
4b2ec495 752offsets default to 64 bits wide, where supported. Modules may fail to
ce72e97c 753compile at all or compile and work incorrectly. Currently there is no
4b2ec495 754good solution for the problem, but Configure now provides appropriate
755non-largefile ccflags, ldflags, libswanted, and libs in the %Config
756hash (e.g., $Config{ccflags_nolargefiles}) so the extensions that are
757having problems can try configuring themselves without the
758largefileness. This is admittedly not a clean solution, and the
759solution may not even work at all. One potential failure is whether
760one can (or, if one can, whether it's a good idea) link together at
761all binaries with different ideas about file offsets, all this is
762platform-dependent.
53080bb1 763
24e657a8 764=head2 Storable test st-06compat Fails in UNICOS and UNICOS/mk
765
766This means that you cannot read old (pre-Storable-0.7) Storable images
767made in other platforms.
768
cc0fca54 769=head1 Reporting Bugs
770
d4ad863d 771If you find what you think is a bug, you might check the articles
772recently posted to the comp.lang.perl.misc newsgroup and the perl
773bug database at http://bugs.perl.org. There may also be
774information at http://www.perl.com/perl/, the Perl Home Page.
cc0fca54 775
776If you believe you have an unreported bug, please run the B<perlbug>
777program included with your release. Be sure to trim your bug down
778to a tiny but sufficient test case. Your bug report, along with the
d4ad863d 779output of C<perl -V>, will be sent off to perlbug@perl.org to be
cc0fca54 780analysed by the Perl porting team.
781
782=head1 SEE ALSO
783
784The F<Changes> file for exhaustive details on what changed.
785
786The F<INSTALL> file for how to build Perl.
787
788The F<README> file for general stuff.
789
790The F<Artistic> and F<Copying> files for copyright information.
791
792=head1 HISTORY
793
53080bb1 794Written by Jarkko Hietaniemi <F<jhi@iki.fi>>, with many contributions
795from The Perl Porters and Perl Users submitting feedback and patches.
cc0fca54 796
d4ad863d 797Send omissions or corrections to <F<perlbug@perl.org>>.
cc0fca54 798
799=cut