fixes perl_clone of perl_clone
[p5sagit/p5-mst-13.2.git] / pod / perl572delta.pod
CommitLineData
43d4bbc8 1=head1 NAME
2
3perl571delta - what's new for perl v5.7.2
4
5=head1 DESCRIPTION
6
7This document describes differences between the 5.7.1 release and the
85.7.2 release.
9
10(To view the differences between the 5.6.0 release and the 5.7.0
11release, see L<perl570delta>. To view the differences between the
125.7.0 release and the 5.7.1 release, see L<perl571delta>.)
13
14=head1 Security Vulnerability Closed
15
16(This change was already made in 5.7.0 but bears repeating here.)
17
18A security vulnerability affecting all Perl versions prior to 5.6.1
19was found in August 2000. The vulnerability does not affect default
20installations and as far as is known affects only the Linux platform.
21
22You should upgrade your Perl to 5.6.1 as soon as possible. Patches
267a12e6 23for earlier releases exist but using the patches require full
24recompilation from the source code anyway, so 5.6.1 is your best
25choice.
26
43d4bbc8 27See http://www.cpan.org/src/5.0/sperl-2000-08-05/sperl-2000-08-05.txt
28for more information.
29
30=head1 Incompatible Changes
31
699e893f 32=head2 64-bit platforms and malloc
33
267a12e6 34If your pointers are 64 bits wide, the Perl malloc is no more being
35used because it simply does not work with 8-byte pointers. Also,
36usually the system malloc on such platforms are much better optimized
37for such large memory models than the Perl malloc.
38
d7b629d9 39=head2 AIX Dynaloading
40
12f54d27 41The AIX dynaloading now uses in AIX releases 4.3 and newer the native
42dlopen interface of AIX instead of the old emulated interface. This
43change will probably break backward compatibility with compiled
44modules. The change was made to make Perl more compliant with other
45applications like modperl which are using the AIX native interface.
d7b629d9 46
47=head2 Socket Extension Dynamic in VMS
48
49The Socket extension is now dynamically loaded instead of being
50statically built in. This may or may not be a problem with ancient
51TCP/IP stacks of VMS: we do not know since we weren't able to test
52Perl in such configurations.
53
2796c109 54=head2 Different Definition of the Unicode Character Classes \p{In...}
55
56As suggested by the Unicode consortium, the Unicode character classes
57now prefer I<scripts> as opposed to I<blocks> (as defined by Unicode);
58in Perl, when the C<\p{In....}> and the C<\p{In....}> regular expression
59constructs are used. This has changed the definition of some of those
60character classes.
61
62The difference between scripts and blocks is that scripts are the
63glyphs used by a language or a group of languages, while the blocks
64are more artificial groupings of 256 characters based on the Unicode
65numbering.
66
67In general this change results in more inclusive Unicode character
68classes, but changes to the other direction also do take place:
69for example while the script C<Latin> includes all the Latin
70characters and their various diacritic-adorned versions, it
71does not include the various punctuation or digits (since they
72are not solely C<Latin>).
73
74Changes in the character class semantics may have happened if a script
75and a block happen to have the same name, for example C<Hebrew>.
76In such cases the script wins and C<\p{InHebrew}> now means the script
77definition of Hebrew. The block definition in still available,
78though, by appending C<Block> to the name: C<\p{InHebrewBlock}> means
79what C<\p{InHebrew}> meant in perl 5.6.0. For the full list
80of affected character classes, see L<perlunicode/Blocks>.
81
d7b629d9 82=head2 Deprecations
cbb3fa72 83
84The current user-visible implementation of pseudo-hashes (the weird
85use of the first array element) is deprecated starting from Perl 5.8.0
d7b629d9 86and will be removed in Perl 5.10.0, and the feature will be
87implemented differently. Not only is the current interface rather
88ugly, but the current implementation slows down normal array and hash
d0c93ae9 89use quite noticeably. The C<fields> pragma interface will remain
d7b629d9 90available.
91
92The syntaxes C<@a->[...]> and C<@h->{...}> have now been deprecated.
cbb3fa72 93
267a12e6 94The suidperl is also considered to be too much a risk to continue
95maintaining and the suidperl code is likely to be removed in a future
96release.
97
d0c93ae9 98The C<package;> syntax (C<package> without an argument has been
99deprecated. Its semantics were never that clear and its
100implementation even less so. If you have used that feature to
101disallow all but fully qualified variables, C<use strict;> instead.
102
43d4bbc8 103=head1 Core Enhancements
104
d7b629d9 105In general a lot of fixing has happened in the area of Perl's
106understanding of numbers, both integer and floating point. Since in
107many systems the standard number parsing functions like C<strtoul()>
108and C<atof()> seem to have bugs, Perl tries to work around their
109deficiencies. This results hopefully in more accurate numbers.
267a12e6 110
111=over 4
112
113=item *
114
115The rules for allowing underscores (underbars) in numeric constants
116have been relaxed and simplified: now you can have an underscore
117B<between digits>.
118
119=item *
120
9108dd47 121GMAGIC (right-hand side magic) could in many cases such as string
122concatenation be invoked too many times.
267a12e6 123
124=item *
125
d7b629d9 126Lexicals I: lexicals outside an eval "" weren't resolved
127correctly inside a subroutine definition inside the eval "" if they
128were not already referenced in the top level of the eval""ed code.
129
130=item *
131
132Lexicals II: lexicals leaked at file scope into subroutines that
133were declared before the lexicals.
134
135=item *
136
137Lvalue subroutines can now return C<undef> in list context.
267a12e6 138
139=item *
140
9108dd47 141The C<op_clear> and C<op_null> are now exported.
267a12e6 142
143=item *
144
9108dd47 145A new special regular expression variable has been introduced:
146C<$^N>, which contains the most-recently closed group (submatch).
267a12e6 147
148=item *
149
699e893f 150L<utime> now supports C<utime undef, undef, @files> to change the
d7b629d9 151file timestamps to the current time.
699e893f 152
153=item *
154
267a12e6 155The Perl parser has been stress tested using both random input and
156Markov chain input.
157
d7b629d9 158=item *
159
160C<eval "v200"> now works.
161
162=item *
163
164VMS now works under PerlIO.
165
267a12e6 166=back
167
43d4bbc8 168=head1 Modules and Pragmata
169
b4d12dfd 170=head2 New Modules and Distributions
43d4bbc8 171
267a12e6 172=over 4
173
174=item *
175
699e893f 176L<Attribute::Handlers> - Simpler definition of attribute handlers
177
178=item *
179
180L<ExtUtils::Constant> - generate XS code to import C header constants
181
182=item *
183
4bbcc6e8 184L<I18N::Langinfo> - query locale information
185
186=item *
187
699e893f 188L<I18N::LangTags> - functions for dealing with RFC3066-style language tags
189
190=item *
191
192L<libnet> - a collection of perl5 modules related to network programming
267a12e6 193
d7b629d9 194Perl installation leaves libnet unconfigured, use F<libnetcfg> to configure.
195
267a12e6 196=item *
197
699e893f 198L<List::Util> - selection of general-utility list subroutines
267a12e6 199
200=item *
201
699e893f 202L<Locale::Maketext> - framework for localization
267a12e6 203
204=item *
205
699e893f 206L<Memoize> - Make your functions faster by trading space for time
267a12e6 207
208=item *
209
699e893f 210L<NEXT> - pseudo-class for method redispatch
267a12e6 211
212=item *
213
699e893f 214L<Scalar::Util> - selection of general-utility scalar subroutines
267a12e6 215
216=item *
217
7117b917 218L<Test::More> - yet another framework for writing test scripts
219
220=item *
221
222L<Test::Simple> - Basic utilities for writing tests
223
224=item *
225
699e893f 226L<Time::HiRes> - high resolution ualarm, usleep, and gettimeofday
267a12e6 227
228=item *
229
699e893f 230L<Time::Piece> - Object Oriented time objects
267a12e6 231
d7b629d9 232(Previously known as L<Time::Object>.)
233
b4d12dfd 234=item *
235
236L<Time::Seconds> - a simple API to convert seconds to other date values
237
238=item *
239
1189d1e4 240L<UnicodeCD> - Unicode Character Database
b4d12dfd 241
267a12e6 242=back
243
43d4bbc8 244=head2 Updated And Improved Modules and Pragmata
245
267a12e6 246=over 4
247
248=item *
249
250L<B::Deparse> module has been significantly enhanced. It now
251can deparse almost all of the standard test suite (so that the
7ebe6671 252tests still succeed). There is a make target "test.deparse"
253for trying this out.
267a12e6 254
255=item *
256
257L<Class::Struct> now assigns the array/hash element if the accessor
258is called with an array/hash element as the B<sole> argument.
259
260=item *
261
262L<Cwd> extension is now (even) faster.
263
264=item *
265
266L<DB_File> extension has been updated to version 1.77.
267
268=item *
269
270L<Fcntl>, L<Socket>, and L<Sys::Syslog> have been rewritten to use the
271new-style constant dispatch section (see L<ExtUtils::Constant>).
272
273=item *
274
699e893f 275L<File::Find> is now (again) reentrant. It also has been made
276more portable.
277
278=item *
279
267a12e6 280L<File::Glob> now supports C<GLOB_LIMIT> constant to limit the
281size of the returned list of filenames.
282
699e893f 283=item *
267a12e6 284
d7b629d9 285L<IO::Socket::INET> now supports C<LocalPort> of zero (usually meaning
286that the operating system will make one up.)
287
288=item *
289
290The L<vars> pragma now supports declaring fully qualified variables.
291(Something that C<our()> does not and will not support.)
699e893f 292
293=back
43d4bbc8 294
295=head1 Utility Changes
296
267a12e6 297=over 4
298
299=item *
300
699e893f 301The F<emacs/e2ctags.pl> is now much faster.
302
303=item *
304
d7b629d9 305L<h2ph> now supports C trigraphs.
306
307=item *
308
267a12e6 309L<h2xs> uses the new L<ExtUtils::Constant> module which will affect
310newly created extensions that define constants. Since the new code is
311more correct (if you have two constants where the first one is a
312prefix of the second one, the first constant B<never> gets defined),
313less lossy (it uses integers for integer constant, as opposed to the
314old code that used floating point numbers even for integer constants),
315and slightly faster, you might want to consider regenerating your
316extension code (the new scheme makes regenerating easy).
317
318=item *
319
699e893f 320L<libnetcfg> has been added to configure the libnet.
267a12e6 321
322=item *
323
324The F<Pod::Html> (and thusly L<pod2html>) now allows specifying
325a cache directory.
326
327=back
328
43d4bbc8 329=head1 New Documentation
330
267a12e6 331=over 4
332
333=item *
334
335L<Locale::Maketext::TPJ13> is an article about software localization,
336originally published in The Perl Journal #13, republished here with
337kind permission.
338
339=item *
340
341More README.$PLATFORM files have been converted into pod, which also
342means that they also be installed as perl$PLATFORM documentation
343files. The new files are L<perlapollo>, L<perlbeos>, L<perldgux>,
699e893f 344L<perlhurd>, L<perlmint>, L<perlnetware>, L<perlplan9>, L<perlqnx>,
345and L<perltru64>.
267a12e6 346
347=item *
348
349The F<Todo> and F<Todo-5.6> files have been merged into L<perltodo>.
350
351=item *
352
7ebe6671 353Use of the F<gprof> tool to profile Perl has been documented in
354L<perlhack>. There is a make target "perl.gprof" for generating a
355gprofiled Perl executable.
267a12e6 356
357=back
358
43d4bbc8 359=head1 Installation and Configuration Improvements
360
361=head2 New Or Improved Platforms
362
267a12e6 363=over 4
364
365=item *
366
12f54d27 367AIX should now work better with gcc, threads, and 64-bitnes. Also the
368long doubles support in AIX should be better now. See L<perlaix>.
267a12e6 369
370=item *
371
372AtheOS (http://www.atheos.cx/) is a new platform.
373
374=item *
375
7ebe6671 376DG/UX platform now supports the 5.005-style threads. See L<perldgux>.
267a12e6 377
378=item *
379
7ebe6671 380Several MacOS (Classic) portability patches have been applied. We
381hope to get a fully working port by 5.8.0. (The remaining problems
382relate to the changed IO model of Perl.) See L<perlmacos>.
267a12e6 383
384=item *
385
699e893f 386MacOS X (or Darwin) should now be able to build Perl even on HFS+
387filesystems. (The case-insensitivity confused the Perl build process.)
267a12e6 388
389=item *
390
7ebe6671 391NetWare from Novell is now supported. See L<perlnetware>.
267a12e6 392
393=item *
394
395The Amdahl UTS UNIX mainframe platform is now supported.
396
397=back
398
43d4bbc8 399=head2 Generic Improvements
400
267a12e6 401=over 4
402
403=item *
404
267a12e6 405In AFS installations one can configure the root of the AFS to be
406somewhere else than the default F</afs> by using the Configure
407parameter C<-Dafsroot=/some/where/else>.
408
409=item *
410
411The version of Berkeley DB used when the Perl (and, presumably, the
412DB_File extension) was built is now available as
413C<@Config{qw(db_version_major db_version_minor db_version_patch)}>
414from Perl and as C<DB_VERSION_MAJOR_CFG DB_VERSION_MINOR_CFG
415DB_VERSION_PATCH_CFG> from C.
416
417=item *
418
699e893f 419The Thread extension is now not built at all under ithreads
420(C<Configure -Duseithreads>) because it wouldn't work anyway (the
421Thread extension requires being Configured with C<-Duse5005threads>).
267a12e6 422
423=item *
424
425The C<B::Deparse> compiler backend has been so significantly improved
426that almost the whole Perl test suite passes after being deparsed. A
427make target has been added to help in further testing: C<make test.deparse>.
428
429=back
430
43d4bbc8 431=head1 Selected Bug Fixes
432
699e893f 433=over 5
434
435=item *
436
437The autouse pragma didn't work for Multi::Part::Function::Names.
438
439=item *
440
441The behaviour of non-decimal but numeric string constants such as
442"0x23" was platform-dependent: in some platforms that was seen as 35,
443in some as 0, in some as a floating point number (don't ask). This
444was caused by Perl using the operating system libraries in a situation
445where the result of the string to number conversion is undefined: now
446Perl consistently handles such strings as zero in numeric contexts.
447
448=item *
449
450L<dprofpp> -R didn't work.
451
452=item *
453
454PERL5OPT with embedded spaces didn't work.
455
456=item *
457
458L<Sys::Syslog> ignored the C<LOG_AUTH> constant.
459
460=back
461
43d4bbc8 462=head2 Platform Specific Changes and Fixes
463
267a12e6 464=over 4
465
466=item *
467
468Some versions of glibc have a broken modfl(). This affects builds
469with C<-Duselongdouble>. This version of Perl detects this brokenness
470and has a workaround for it. The glibc release 2.2.2 is known to have
471fixed the modfl() bug.
472
473=back
474
43d4bbc8 475=head1 New or Changed Diagnostics
476
267a12e6 477=over 4
478
479=item *
480
481In the regular expression diagnostics the C<E<lt>E<lt> HERE> marker
482introduced in 5.7.0 has been changed to be C<E<lt>-- HERE> since too
483many people found the C<E<lt>E<lt>> to be too similar to here-document
484starters.
485
486=item *
487
488If you try to L<perlfunc/pack> a number less than 0 or larger than 255
489using the C<"C"> format you will get an optional warning. Similarly
490for the C<"c"> format and a number less than -128 or more than 127.
491
492=item *
493
494Certain regex modifiers such as C<(?o)> make sense only if applied to
495the entire regex. You will an optional warning if you try to do otherwise.
496
497=item *
498
499Using arrays or hashes as references (e.g. C<%foo->{bar}> has been
500deprecated for a while. Now you will get an optional warning.
501
502=back
503
9108dd47 504=head1 Source Code Enhancements
505
506=head2 MAGIC constants
507
508The MAGIC constants (e.g. C<'P'>) have been macrofied
509(e.g. C<PERL_MAGIC_TIED>) for better source code readability
510and maintainability.
511
512=head2 Better commented code
513
514F<perly.c>, F<sv.c>, and F<sv.h> have now been extensively commented.
43d4bbc8 515
516=head2 Regex pre-/post-compilation items matched up
517
518The regex compiler now maintains a structure that identifies nodes in
519the compiled bytecode with the corresponding syntactic features of the
520original regex expression. The information is attached to the new
521C<offsets> member of the C<struct regexp>. See L<perldebguts> for more
522complete information.
523
9108dd47 524=head2 gcc -Wall
525
526The C code has been made much more C<gcc -Wall> clean. Some warning
527messages still remain, though, so if you are compiling with gcc you
528will see some warnings about dubious practices. The warnings are
529being worked on.
530
43d4bbc8 531=head1 New Tests
532
267a12e6 533Several new tests have been added, especially for the F<lib> subsection.
534
699e893f 535The tests are now reported in a different order than in earlier Perls.
536(This happens because the test scripts from under t/lib have been moved
537to be closer to the library/extension they are testing.)
267a12e6 538
43d4bbc8 539=head1 Known Problems
540
541Note that unlike other sections in this document (which describe
542changes since 5.7.0) this section is cumulative containing known
543problems for all the 5.7 releases.
544
81633404 545=head2 AIX
546
547=over 4
548
549=item *
550
d7d85e39 551In AIX 4.2 Perl extensions that use C++ functions that use statics
552may have problems in that the statics are not getting initialized.
553In newer AIX releases this has been solved by linking Perl with
554the libC_r library, but unfortunately in AIX 4.2 the said library
555has an obscure bug where the various functions related to time
556(such as time() and gettimeofday()) return broken values, and
557therefore in AIX 4.2 Perl is not linked against the libC_r.
81633404 558
559=item *
560
561vac 5.0.0.0 May Produce Buggy Code For Perl
43d4bbc8 562
563The AIX C compiler vac version 5.0.0.0 may produce buggy code,
564resulting in few random tests failing, but when the failing tests
565are run by hand, they succeed. We suggest upgrading to at least
566vac version 5.0.1.0, that has been known to compile Perl correctly.
567"lslpp -L|grep vac.C" will tell you the vac version.
568
81633404 569=back
570
d7b629d9 571=head2 Amiga Perl Invoking Mystery
572
573One cannot call Perl using the C<volume:> syntax, that is, C<perl -v>
574works, but for example C<bin:perl -v> doesn't. The exact reason is
575known but the current suspect is the F<ixemul> library.
576
43d4bbc8 577=head2 lib/ftmp-security tests warn 'system possibly insecure'
578
579Don't panic. Read INSTALL 'make test' section instead.
580
19d94770 581=head2 Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
81633404 582
583The subtests 11 and 12 sometimes fail and sometimes work.
584
585=head2 HP-UX lib/io_multihomed Fails When LP64-Configur
43d4bbc8 586
587The lib/io_multihomed test may hang in HP-UX if Perl has been
588configured to be 64-bit. Because other 64-bit platforms do not hang in
589this test, HP-UX is suspect. All other tests pass in 64-bit HP-UX. The
590test attempts to create and connect to "multihomed" sockets (sockets
591which have multiple IP addresses).
592
81633404 593=head2 HP-UX lib/posix Subtest 9 Fails When LP64-Configured
43d4bbc8 594
595If perl is configured with -Duse64bitall, the successful result of the
596subtest 10 of lib/posix may arrive before the successful result of the
597subtest 9, which confuses the test harness so much that it thinks the
598subtest 9 failed.
599
43d4bbc8 600=head2 Linux With Sfio Fails op/misc Test 48
601
602No known fix.
603
ee9f9f3a 604=head2 OS/390
605
606OS/390 has rather many test failures but the situation is actually
607better than it was in 5.6.0, it's just that so many new modules and
608tests have been added.
609
610 Failed Test Stat Wstat Total Fail Failed List of Failed
611 -----------------------------------------------------------------------------
612 ../ext/B/Deparse.t 14 1 7.14% 14
613 ../ext/B/Showlex.t 1 1 100.00% 1
614 ../ext/Encode/Encode/Tcl.t 610 13 2.13% 592 594 596 598
615 600 602 604-610
616 ../ext/IO/lib/IO/t/io_unix.t 113 28928 5 3 60.00% 3-5
617 ../ext/POSIX/POSIX.t 29 1 3.45% 14
618 ../ext/Storable/t/lock.t 255 65280 5 3 60.00% 3-5
619 ../lib/locale.t 129 33024 117 19 16.24% 99-117
620 ../lib/warnings.t 434 1 0.23% 75
621 ../lib/ExtUtils.t 27 1 3.70% 25
622 ../lib/Math/BigInt/t/bigintpm.t 1190 1 0.08% 1145
623 ../lib/Unicode/UCD.t 81 48 59.26% 1-16 49-64 66-81
624 ../lib/User/pwent.t 9 1 11.11% 4
625 op/pat.t 660 6 0.91% 242-243 424-425
626 626-627
627 op/split.t 0 9 ?? ?? % ??
628 op/taint.t 174 3 1.72% 156 162 168
629 op/tr.t 70 3 4.29% 50 58-59
630 Failed 16/422 test scripts, 96.21% okay. 105/23251 subtests failed, 99.55% okay.
631
c4b279ff 632=head2 op/sprintf tests 129 and 130
43d4bbc8 633
634The op/sprintf tests 129 and 130 are known to fail on some platforms.
635Examples include any platform using sfio, and Compaq/Tandem's NonStop-UX.
636The failing platforms do not comply with the ANSI C Standard, line
63719ff on page 134 of ANSI X3.159 1989 to be exact. (They produce
638something else than "1" and "-1" when formatting 0.6 and -0.6 using
639the printf format "%.0f", most often they produce "0" and "-0".)
640
641=head2 Failure of Thread tests
642
45215428 643B<Note that support for 5.005-style threading remains experimental.>
644
645The following tests are known to fail due to fundamental problems in
646the 5.005 threading implementation. These are not new failures--Perl
6475.005_0x has the same bugs, but didn't have these tests.
648
c4b279ff 649 lib/autouse.t 4
650 t/lib/thr5005.t 19-20
651
81633404 652=head2 UNICOS
653
654=over 4
655
656=item *
657
658ext/POSIX/sigaction subtests 6 and 13 may fail.
659
660=item *
661
662lib/ExtUtils may spuriously claim that subtest 28 failed,
663which is interesting since the test only has 27 tests.
664
665=item *
666
667Numerous numerical test failures
c4b279ff 668
669 op/numconvert 209,210,217,218
81633404 670 op/override 7
c4b279ff 671 ext/Time/HiRes/HiRes 9
672 lib/Math/BigInt/t/bigintpm 1145
673 lib/Math/Trig 25
674
675These tests fail because of yet unresolved floating point inaccuracies.
676
81633404 677=back
678
81633404 679=head2 UTS
680
91144103 681There are a few known test failures, see L<perluts>.
0aa7ccc3 682
683=head2 VMS
684
ee9f9f3a 685Rather many tests are failing in VMS but that actually more tests
686succeed in VMS than they used to, it's just that there are many,
687many more tests than there used to be.
688
689Here are the known failures from some compiler/platform combinations.
690
0aa7ccc3 691DEC C V5.3-006 on OpenVMS VAX V6.2
692
693 [-.ext.list.util.t]tainted..............FAILED on test 3
694 [-.ext.posix]sigaction..................FAILED on test 7
50bd9457 695 [-.ext.time.hires]hires.................FAILED on test 14
0aa7ccc3 696 [-.lib.file.find]taint..................FAILED on test 17
697 [-.lib.math.bigint.t]bigintpm...........FAILED on test 1183
698 [-.lib.test.simple.t]exit...............FAILED on test 1
699 [.lib]vmsish............................FAILED on test 13
700 [.op]sprintf............................FAILED on test 12
701 Failed 8/399 tests, 91.23% okay.
702
703DEC C V6.0-001 on OpenVMS Alpha V7.2-1
704
705 [-.ext.list.util.t]tainted..............FAILED on test 3
706 [-.lib.file.find]taint..................FAILED on test 17
707 [-.lib.test.simple.t]exit...............FAILED on test 1
708 [.lib]vmsish............................FAILED on test 13
709 Failed 4/399 tests, 92.48% okay.
81633404 710
20a07785 711Compac C V6.4-005 on OpenVMS Alpha 7.2.1
712
713 [-.ext.b]showlex........................FAILED on test 1
714 [-.ext.list.util.t]tainted..............FAILED on test 3
715 [-.lib.file.find]taint..................FAILED on test 17
716 [-.lib.test.simple.t]exit...............FAILED on test 1
717 [.lib]vmsish............................FAILED on test 13
718 [.op]misc...............................FAILED on test 49
719 Failed 6/401 tests, 92.77% okay.
720
d0c93ae9 721=head2 Win32
722
723In multi-CPU boxes there are some problems with the I/O buffering:
724some output may appear twice.
725
43d4bbc8 726=head2 Localising a Tied Variable Leaks Memory
727
728 use Tie::Hash;
729 tie my %tie_hash => 'Tie::StdHash';
730
731 ...
732
733 local($tie_hash{Foo}) = 1; # leaks
734
735Code like the above is known to leak memory every time the local()
736is executed.
737
738=head2 Self-tying of Arrays and Hashes Is Forbidden
739
740Self-tying of arrays and hashes is broken in rather deep and
741hard-to-fix ways. As a stop-gap measure to avoid people from getting
742frustrated at the mysterious results (core dumps, most often) it is
743for now forbidden (you will get a fatal error even from an attempt).
744
699e893f 745=head2 Variable Attributes are not Currently Usable for Tieing
746
747This limitation will hopefully be fixed in future. (Subroutine
748attributes work fine for tieing, see L<Attribute::Handlers>).
749
43d4bbc8 750=head2 Building Extensions Can Fail Because Of Largefiles
751
752Some extensions like mod_perl are known to have issues with
753`largefiles', a change brought by Perl 5.6.0 in which file offsets
754default to 64 bits wide, where supported. Modules may fail to compile
755at all or compile and work incorrectly. Currently there is no good
756solution for the problem, but Configure now provides appropriate
757non-largefile ccflags, ldflags, libswanted, and libs in the %Config
758hash (e.g., $Config{ccflags_nolargefiles}) so the extensions that are
759having problems can try configuring themselves without the
760largefileness. This is admittedly not a clean solution, and the
761solution may not even work at all. One potential failure is whether
762one can (or, if one can, whether it's a good idea) link together at
763all binaries with different ideas about file offsets, all this is
764platform-dependent.
765
766=head2 The Compiler Suite Is Still Experimental
767
768The compiler suite is slowly getting better but is nowhere near
769working order yet.
770
81633404 771=head2 The Long Double Support is Still Experimental
772
773The ability to configure Perl's numbers to use "long doubles",
774floating point numbers of hopefully better accuracy, is still
775experimental. The implementations of long doubles are not yet
776widespread and the existing implementations are not quite mature
777or standardised, therefore trying to support them is a rare
778and moving target. The gain of more precision may also be offset
779by slowdown in computations (more bits to move around, and the
780operations are more likely to be executed by less optimised
781libraries).
782
43d4bbc8 783=head1 Reporting Bugs
784
785If you find what you think is a bug, you might check the articles
786recently posted to the comp.lang.perl.misc newsgroup and the perl
787bug database at http://bugs.perl.org. There may also be
788information at http://www.perl.com/perl/, the Perl Home Page.
789
790If you believe you have an unreported bug, please run the B<perlbug>
791program included with your release. Be sure to trim your bug down
792to a tiny but sufficient test case. Your bug report, along with the
793output of C<perl -V>, will be sent off to perlbug@perl.org to be
794analysed by the Perl porting team.
795
796=head1 SEE ALSO
797
798The F<Changes> file for exhaustive details on what changed.
799
800The F<INSTALL> file for how to build Perl.
801
802The F<README> file for general stuff.
803
804The F<Artistic> and F<Copying> files for copyright information.
805
806=head1 HISTORY
807
808Written by Jarkko Hietaniemi <F<jhi@iki.fi>>, with many contributions
809from The Perl Porters and Perl Users submitting feedback and patches.
810
811Send omissions or corrections to <F<perlbug@perl.org>>.
812
813=cut