File: perl571delta.html

package info (click to toggle)
perl-doc-html 5.14.0-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 38,588 kB
  • sloc: xml: 36; makefile: 10
file content (1203 lines) | stat: -rw-r--r-- 67,235 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <title>perl571delta - perldoc.perl.org</title>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  <meta http-equiv="Content-Language" content="en-gb">
  <link rel="search" type="application/opensearchdescription+xml" title="Search perldoc.perl.org" href="/static/search.xml"/>
  <link href="static/css-20100830.css" rel="stylesheet" rev="stylesheet" type="text/css" media="screen">
  <link href="static/exploreperl.css" rel="stylesheet" rev="stylesheet" type="text/css">
</head>

<body onLoad="perldoc.startup();" onPageShow="if (event.persisted) perldoc.startup();">
    <div id="page">
      
      <div id="header">
	<div id="homepage_link">
	  <a href="index.html"></a>
	</div>
	<div id="strapline">
	  Perl Programming Documentation
	</div>
	<div id="download_link" class="download">
	  <a href="http://www.perl.org/get.html">Download Perl</a>
	</div>
	<div id="explore_link" class="download">
	  <a id="explore_anchor" href="#">Explore</a>
	</div>
      </div>
      
      <div id="body">
        <div id="left_column">
          <div class="side_group">
            
	    <div class="side_panel doc_panel">
              <p>Manual</p>
              <ul>
                <li><a href="index-overview.html">Overview</a>
                <li><a href="index-tutorials.html">Tutorials</a>
                <li><a href="index-faq.html">FAQs</a>
                <li><a href="index-history.html">History / Changes</a>
                <li><a href="index-licence.html">License</a>
              </ul>
            </div>
            <div class="side_panel doc_panel">
              <p>Reference</p>
              <ul>
                <li><a href="index-language.html">Language</a>
                <li><a href="index-functions.html">Functions</a>
                <li><a href="perlop.html">Operators</a>
                <li><a href="perlvar.html">Special Variables</a>
                <li><a href="index-pragmas.html">Pragmas</a>
                <li><a href="index-utilities.html">Utilities</a>
                <li><a href="index-internals.html">Internals</a>
                <li><a href="index-platforms.html">Platform Specific</a>
              </ul>
            </div>
            <div class="side_panel doc_panel">
              <p>Modules</p>
              <ul>
		<li>
		
                
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		
                  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		
                  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		
                  
		
                  
		    
		  
		
                  
		
                  
		
		
                    <a href="index-modules-A.html">A</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-B.html">B</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-C.html">C</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-D.html">D</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-E.html">E</a>
                    
                      
                        <li>
                      
                    
                
                    <a href="index-modules-F.html">F</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-G.html">G</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-H.html">H</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-I.html">I</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-L.html">L</a>
                    
                      
                        <li>
                      
                    
                
                    <a href="index-modules-M.html">M</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-N.html">N</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-O.html">O</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-P.html">P</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-S.html">S</a>
                    
                      
                        <li>
                      
                    
                
                    <a href="index-modules-T.html">T</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-U.html">U</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-X.html">X</a>
                    
                
              </ul>
            </div>
            
	      <div class="side_panel doc_panel">
		<p>Tools</p>
		<ul>
		  <li><a href="preferences.html">Preferences</a>
		</ul>
	      </div>
            
          </div>
        </div>
        <div id="centre_column">
          <div id="content_header">
            <div id="title_bar">
              <div id="page_name">
                <h1>perl571delta</h1>
              </div>
              <div id="perl_version">
                Perl 5 version 14.0 documentation
              </div>
              <div class="page_links" id="page_links_top">
                <a href="#" onClick="toolbar.goToTop();return false;">Go to top</a>
		
              </div>
	      <div class="page_links" id="page_links_bottom">
		
                  <a href="#" id="page_index_toggle">Show page index</a> &bull;
		
                <a href="#" id="recent_pages_toggle">Show recent pages</a>		
	      </div>
	      <div id="search_form">
		<form action="search.html" method="GET" id="search">
		  <input type="text" name="q" id="search_box" alt="Search">
		</form>
	      </div>
            </div>
            <div id="breadcrumbs">
                
    <a href="index.html">Home</a> &gt;
    
      
        <a href="index-history.html">History / Changes</a> &gt;
      
    
    perl571delta
  

            </div>
          </div>
          <div id="content_body">
	    <!--[if lt IE 7]>
 <div class="noscript">
   <p>
     <strong>It looks like you're using Internet Explorer 6. This is a very old
     browser which does not offer full support for modern websites.</strong>
   </p>
   <p>
     Unfortunately this means that this website will not work on
     your computer.
   </p>
   <p>
     Don't miss out though! To view the site (and get a better experience from
     many other websites), simply upgrade to
     <a href="http://www.microsoft.com/windows/Internet-explorer/default.aspx">Internet
Explorer 8</a>
     or download an alternative browser such as
     <a href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox</a>,
     <a href="http://www.apple.com/safari/download/">Safari</a>, or
     <a href="http://www.google.co.uk/chrome">Google Chrome</a>.
   </p>
   <p>
     All of these browsers are free. If you're using a PC at work, you may
     need to contact your IT administrator.
   </p>
 </div>
<![endif]-->
	    <noscript>
	      <div class="noscript">
	      <p>
                <strong>Please note: Many features of this site require JavaScript. You appear to have JavaScript disabled,
	        or are running a non-JavaScript capable web browser.</strong>
	      </p>
	      <p>
		To get the best experience, please enable JavaScript or download a modern web browser such as <a href="http://www.microsoft.com/windows/Internet-explorer/default.aspx">Internet Explorer 8</a>, <a href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox</a>, <a href="http://www.apple.com/safari/download/">Safari</a>, or <a href="http://www.google.co.uk/chrome">Google Chrome</a>.
              </p>
	      </div>
	    </noscript>

	    <div id="recent_pages" class="hud_container">
	      <div id="recent_pages_header" class="hud_header">
		<div id="recent_pages_close" class="hud_close"><a href="#" onClick="recentPages.hide();return false;"></a></div>
		<div id="recent_pages_title" class="hud_title"><span class="hud_span_top">Recently read</span></div>
		<div id="recent_pages_topright" class="hud_topright"></div>
	      </div>
	      <div id="recent_pages_content" class="hud_content">
	      </div>
	      <div id="recent_pages_footer" class="hud_footer">
		<div id="recent_pages_bottomleft" class="hud_bottomleft"></div>
		<div id="recent_pages_bottom" class="hud_bottom"><span class="hud_span_bottom"></span></div>
		<div id="recent_pages_resize" class="hud_resize"></div>
	      </div>
	    </div>
  
	    <div id="from_search"></div>
            <h1>perl571delta</h1>


  <!--    -->
<ul><li><a href="#NAME">NAME</a><li><a href="#DESCRIPTION">DESCRIPTION</a><li><a href="#Security-Vulnerability-Closed">Security Vulnerability Closed</a><li><a href="#Incompatible-Changes">Incompatible Changes</a><li><a href="#Core-Enhancements">Core Enhancements</a><ul><li><a href="#AUTOLOAD-Is-Now-Lvaluable">AUTOLOAD Is Now Lvaluable</a><li><a href="#PerlIO-is-Now-The-Default">PerlIO is Now The Default</a><li><a href="#Signals-Are-Now-Safe">Signals Are Now Safe</a></ul><li><a href="#Modules-and-Pragmata">Modules and Pragmata</a><ul><li><a href="#New-Modules">New Modules</a><li><a href="#Updated-And-Improved-Modules-and-Pragmata">Updated And Improved Modules and Pragmata</a></ul><li><a href="#Performance-Enhancements">Performance Enhancements</a><li><a href="#Utility-Changes">Utility Changes</a><li><a href="#New-Documentation">New Documentation</a><ul><li><a href="#perlclib">perlclib</a><li><a href="#perliol">perliol</a><li><a href="#README.aix">README.aix</a><li><a href="#README.bs2000">README.bs2000</a><li><a href="#README.macos">README.macos</a><li><a href="#README.mpeix">README.mpeix</a><li><a href="#README.solaris">README.solaris</a><li><a href="#README.vos">README.vos</a><li><a href="#Porting%2frepository.pod">Porting/repository.pod</a></ul><li><a href="#Installation-and-Configuration-Improvements">Installation and Configuration Improvements</a><ul><li><a href="#New-Or-Improved-Platforms">New Or Improved Platforms</a><li><a href="#Generic-Improvements">Generic Improvements</a></ul><li><a href="#Selected-Bug-Fixes">Selected Bug Fixes</a><ul><li><a href="#Platform-Specific-Changes-and-Fixes">Platform Specific Changes and Fixes</a></ul><li><a href="#New-or-Changed-Diagnostics">New or Changed Diagnostics</a><li><a href="#Changed-Internals">Changed Internals</a><li><a href="#New-Tests">New Tests</a><li><a href="#Known-Problems">Known Problems</a><ul><li><a href="#AIX-vac-5.0.0.0-May-Produce-Buggy-Code-For-Perl">AIX vac 5.0.0.0 May Produce Buggy Code For Perl</a><li><a href="#lib%2fftmp-security-tests-warn-'system-possibly-insecure'">lib/ftmp-security tests warn 'system possibly insecure'</a><li><a href="#lib%2fio_multihomed-Fails-In-LP64-Configured-HP-UX">lib/io_multihomed Fails In LP64-Configured HP-UX</a><li><a href="#Test-lib%2fposix-Subtest-9-Fails-In-LP64-Configured-HP-UX">Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX</a><li><a href="#lib%2fb-test-19">lib/b test 19</a><li><a href="#Linux-With-Sfio-Fails-op%2fmisc-Test-48">Linux With Sfio Fails op/misc Test 48</a><li><a href="#sigaction-test-13-in-VMS">sigaction test 13 in VMS</a><li><a href="#sprintf-tests-129-and-130">sprintf tests 129 and 130</a><li><a href="#Failure-of-Thread-tests">Failure of Thread tests</a><li><a href="#Localising-a-Tied-Variable-Leaks-Memory">Localising a Tied Variable Leaks Memory</a><li><a href="#Self-tying-of-Arrays-and-Hashes-Is-Forbidden">Self-tying of Arrays and Hashes Is Forbidden</a><li><a href="#Building-Extensions-Can-Fail-Because-Of-Largefiles">Building Extensions Can Fail Because Of Largefiles</a><li><a href="#The-Compiler-Suite-Is-Still-Experimental">The Compiler Suite Is Still Experimental</a></ul><li><a href="#Reporting-Bugs">Reporting Bugs</a><li><a href="#SEE-ALSO">SEE ALSO</a><li><a href="#HISTORY">HISTORY</a></ul><a name="NAME"></a><h1>NAME</h1>
<p>perl571delta - what's new for perl v5.7.1</p>
<a name="DESCRIPTION"></a><h1>DESCRIPTION</h1>
<p>This document describes differences between the 5.7.0 release and the
5.7.1 release.</p>
<p>(To view the differences between the 5.6.0 release and the 5.7.0
release, see <a href="perl570delta.html">perl570delta</a>.)</p>
<a name="Security-Vulnerability-Closed"></a><h1>Security Vulnerability Closed</h1>
<p>(This change was already made in 5.7.0 but bears repeating here.)</p>
<p>A potential security vulnerability in the optional suidperl component
of Perl was identified in August 2000.  suidperl is neither built nor
installed by default.  As of April 2001 the only known vulnerable
platform is Linux, most likely all Linux distributions.  CERT and
various vendors and distributors have been alerted about the vulnerability.
See <a href="http://www.cpan.org/src/5.0/sperl-2000-08-05/sperl-2000-08-05.txt">http://www.cpan.org/src/5.0/sperl-2000-08-05/sperl-2000-08-05.txt</a>
for more information.</p>
<p>The problem was caused by Perl trying to report a suspected security
exploit attempt using an external program, /bin/mail.  On Linux
platforms the /bin/mail program had an undocumented feature which
when combined with suidperl gave access to a root shell, resulting in
a serious compromise instead of reporting the exploit attempt.  If you
don't have /bin/mail, or if you have 'safe setuid scripts', or if
suidperl is not installed, you are safe.</p>
<p>The exploit attempt reporting feature has been completely removed from
all the Perl 5.7 releases (and will be gone also from the maintenance
release 5.6.1), so that particular vulnerability isn't there anymore.
However, further security vulnerabilities are, unfortunately, always
possible.  The suidperl code is being reviewed and if deemed too risky
to continue to be supported, it may be completely removed from future
releases.  In any case, suidperl should only be used by security
experts who know exactly what they are doing and why they are using
suidperl instead of some other solution such as sudo
( see <a href="http://www.courtesan.com/sudo/">http://www.courtesan.com/sudo/</a> ).</p>
<a name="Incompatible-Changes"></a><h1>Incompatible Changes</h1>
<ul>
<li>
<p>Although "you shouldn't do that", it was possible to write code that
depends on Perl's hashed key order (Data::Dumper does this).  The new
algorithm "One-at-a-Time" produces a different hashed key order.
More details are in <a href="#Performance-Enhancements">Performance Enhancements</a>.</p>
</li>
<li>
<p>The list of filenames from glob() (or &lt;...&gt;) is now by default sorted
alphabetically to be csh-compliant.  (bsd_glob() does still sort platform
natively, ASCII or EBCDIC, unless GLOB_ALPHASORT is specified.)</p>
</li>
</ul>
<a name="Core-Enhancements"></a><h1>Core Enhancements</h1>
<a name="AUTOLOAD-Is-Now-Lvaluable"></a><h2>AUTOLOAD Is Now Lvaluable</h2>
<p>AUTOLOAD is now lvaluable, meaning that you can add the :lvalue attribute
to AUTOLOAD subroutines and you can assign to the AUTOLOAD return value.</p>
<a name="PerlIO-is-Now-The-Default"></a><h2>PerlIO is Now The Default</h2>
<ul>
<li>
<p>IO is now by default done via PerlIO rather than system's "stdio".
PerlIO allows "layers" to be "pushed" onto a file handle to alter the
handle's behaviour.  Layers can be specified at open time via 3-arg
form of open:</p>
<pre class="verbatim"><ol><li>   <a class="l_k" href="functions/open.html">open</a><span class="s">(</span><span class="i">$fh</span><span class="cm">,</span><span class="q">&#39;&gt;:crlf :utf8&#39;</span><span class="cm">,</span> <span class="i">$path</span><span class="s">)</span> || ...</li></ol></pre><p>or on already opened handles via extended <code class="inline"><a class="l_k" href="functions/binmode.html">binmode</a></code>:</p>
<pre class="verbatim"><ol><li>   <a class="l_k" href="functions/binmode.html">binmode</a><span class="s">(</span><span class="i">$fh</span><span class="cm">,</span><span class="q">&#39;:encoding(iso-8859-7)&#39;</span><span class="s">)</span><span class="sc">;</span></li></ol></pre><p>The built-in layers are: unix (low level read/write), stdio (as in
previous Perls), perlio (re-implementation of stdio buffering in a
portable manner), crlf (does CRLF &lt;=&gt; "\n" translation as on Win32,
but available on any platform).  A mmap layer may be available if
platform supports it (mostly Unixes).</p>
<p>Layers to be applied by default may be specified via the 'open' pragma.</p>
<p>See <a href="#Installation-and-Configuration-Improvements">Installation and Configuration Improvements</a> for the effects
of PerlIO on your architecture name.</p>
</li>
<li>
<p>File handles can be marked as accepting Perl's internal encoding of Unicode
(UTF-8 or UTF-EBCDIC depending on platform) by a pseudo layer ":utf8" :</p>
<pre class="verbatim"><ol><li>   <a class="l_k" href="functions/open.html">open</a><span class="s">(</span><span class="i">$fh</span><span class="cm">,</span><span class="q">&quot;&gt;:utf8&quot;</span><span class="cm">,</span><span class="q">&quot;Uni.txt&quot;</span><span class="s">)</span><span class="sc">;</span></li></ol></pre><p>Note for EBCDIC users: the pseudo layer ":utf8" is erroneously named
for you since it's not UTF-8 what you will be getting but instead
UTF-EBCDIC.  See <a href="perlunicode.html">perlunicode</a>, <a href="utf8.html">utf8</a>, and
<a href="http://www.unicode.org/unicode/reports/tr16/">http://www.unicode.org/unicode/reports/tr16/</a> for more information.
In future releases this naming may change.</p>
</li>
<li>
<p>File handles can translate character encodings from/to Perl's internal
Unicode form on read/write via the ":encoding()" layer.</p>
</li>
<li>
<p>File handles can be opened to "in memory" files held in Perl scalars via:</p>
<pre class="verbatim"><ol><li>   <a class="l_k" href="functions/open.html">open</a><span class="s">(</span><span class="i">$fh</span><span class="cm">,</span><span class="q">&#39;&gt;&#39;</span><span class="cm">,</span> \<span class="i">$variable</span><span class="s">)</span> || ...</li></ol></pre></li>
<li>
<p>Anonymous temporary files are available without need to
'use FileHandle' or other module via</p>
<pre class="verbatim"><ol><li>   <a class="l_k" href="functions/open.html">open</a><span class="s">(</span><span class="i">$fh</span><span class="cm">,</span><span class="q">&quot;+&gt;&quot;</span><span class="cm">,</span> <a class="l_k" href="functions/undef.html">undef</a><span class="s">)</span> || ...</li></ol></pre><p>That is a literal undef, not an undefined value.</p>
</li>
<li>
<p>The list form of <code class="inline"><a class="l_k" href="functions/open.html">open</a></code> is now implemented for pipes (at least on Unix):</p>
<pre class="verbatim"><ol><li>   <a class="l_k" href="functions/open.html">open</a><span class="s">(</span><span class="i">$fh</span><span class="cm">,</span><span class="q">&quot;-|&quot;</span><span class="cm">,</span> <span class="q">&#39;cat&#39;</span><span class="cm">,</span> <span class="q">&#39;/etc/motd&#39;</span><span class="s">)</span></li></ol></pre><p>creates a pipe, and runs the equivalent of exec('cat', '/etc/motd') in
the child process.</p>
</li>
<li>
<p>The following builtin functions are now overridable: chop(), chomp(),
each(), keys(), pop(), push(), shift(), splice(), unshift().</p>
</li>
<li>
<p>Formats now support zero-padded decimal fields.</p>
</li>
<li>
<p>Perl now tries internally to use integer values in numeric conversions
and basic arithmetics (+ - * /) if the arguments are integers, and
tries also to keep the results stored internally as integers.
This change leads into often slightly faster and always less lossy
arithmetics. (Previously Perl always preferred floating point numbers
in its math.)</p>
</li>
<li>
<p>The printf() and sprintf() now support parameter reordering using the
<code class="inline">%\d+\$</code> and <code class="inline">*\d+\$</code> syntaxes.  For example</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;%2\$s %1\$s\n&quot;</span><span class="cm">,</span> <span class="q">&quot;foo&quot;</span><span class="cm">,</span> <span class="q">&quot;bar&quot;</span><span class="sc">;</span></li></ol></pre><p>will print "bar foo\n"; This feature helps in writing
internationalised software.</p>
</li>
<li>
<p>Unicode in general should be now much more usable.  Unicode can be
used in hash keys, Unicode in regular expressions should work now,
Unicode in tr/// should work now (though tr/// seems to be a
particularly tricky to get right, so you have been warned)</p>
</li>
<li>
<p>The Unicode Character Database coming with Perl has been upgraded
to Unicode 3.1.  For more information, see <a href="http://www.unicode.org/">http://www.unicode.org/</a> ,
and <a href="http://www.unicode.org/unicode/reports/tr27/">http://www.unicode.org/unicode/reports/tr27/</a></p>
<p>For developers interested in enhancing Perl's Unicode capabilities:
almost all the UCD files are included with the Perl distribution in
the lib/unicode subdirectory.  The most notable omission, for space
considerations, is the Unihan database.</p>
</li>
<li>
<p>The Unicode character classes \p{Blank} and \p{SpacePerl} have been
added.  "Blank" is like C isblank(), that is, it contains only
"horizontal whitespace" (the space character is, the newline isn't),
and the "SpacePerl" is the Unicode equivalent of <code class="inline">\s</code> (\p{Space}
isn't, since that includes the vertical tabulator character, whereas
<code class="inline">\s</code> doesn't.)</p>
</li>
</ul>
<a name="Signals-Are-Now-Safe"></a><h2>Signals Are Now Safe</h2>
<p>Perl used to be fragile in that signals arriving at inopportune moments
could corrupt Perl's internal state.</p>
<a name="Modules-and-Pragmata"></a><h1>Modules and Pragmata</h1>
<a name="New-Modules"></a><h2>New Modules</h2>
<ul>
<li>
<p>B::Concise, by Stephen McCamant, is a new compiler backend for
walking the Perl syntax tree, printing concise info about ops.
The output is highly customisable.</p>
<p>See <a href="B/Concise.html">B::Concise</a> for more information.</p>
</li>
<li>
<p>Class::ISA, by Sean Burke, for reporting the search path for a
class's ISA tree, has been added.</p>
<p>See <a href="http://search.cpan.org/perldoc/Class::ISA">Class::ISA</a> for more information.</p>
</li>
<li>
<p>Cwd has now a split personality: if possible, an extension is used,
(this will hopefully be both faster and more secure and robust) but
if not possible, the familiar Perl library implementation is used.</p>
</li>
<li>
<p>Digest, a frontend module for calculating digests (checksums),
from Gisle Aas, has been added.</p>
<p>See <a href="Digest.html">Digest</a> for more information.</p>
</li>
<li>
<p>Digest::MD5 for calculating MD5 digests (checksums), by Gisle Aas,
has been added.</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">Digest::MD5</span> <span class="q">&#39;md5_hex&#39;</span><span class="sc">;</span></li><li></li><li>    <span class="i">$digest</span> = <span class="i">md5_hex</span><span class="s">(</span><span class="q">&quot;Thirsty Camel&quot;</span><span class="s">)</span><span class="sc">;</span></li><li></li><li>    <a class="l_k" href="functions/print.html">print</a> <span class="i">$digest</span><span class="cm">,</span> <span class="q">&quot;\n&quot;</span><span class="sc">;</span> <span class="c"># 01d19d9d2045e005c3f1b80e8b164de1</span></li></ol></pre><p>NOTE: the MD5 backward compatibility module is deliberately not
included since its use is discouraged.</p>
<p>See <a href="Digest/MD5.html">Digest::MD5</a> for more information.</p>
</li>
<li>
<p>Encode, by Nick Ing-Simmons, provides a mechanism to translate
between different character encodings.  Support for Unicode,
ISO-8859-*, ASCII, CP*, KOI8-R, and three variants of EBCDIC are
compiled in to the module.  Several other encodings (like Japanese,
Chinese, and MacIntosh encodings) are included and will be loaded at
runtime.</p>
<p>Any encoding supported by Encode module is also available to the
":encoding()" layer if PerlIO is used.</p>
<p>See <a href="Encode.html">Encode</a> for more information.</p>
</li>
<li>
<p>Filter::Simple is an easy-to-use frontend to Filter::Util::Call,
from Damian Conway.</p>
<pre class="verbatim"><ol><li>    <span class="c"># in MyFilter.pm:</span></li><li></li><li><a name="package-MyFilter"></a>    package <span class="i">MyFilter</span><span class="sc">;</span></li><li></li><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">Filter::Simple</span> <a class="l_k" href="functions/sub.html">sub</a> <span class="s">{</span></li><li>        while <span class="s">(</span><a class="l_k" href="functions/my.html">my</a> <span class="s">(</span><span class="i">$from</span><span class="cm">,</span> <span class="i">$to</span><span class="s">)</span> = <a class="l_k" href="functions/splice.html">splice</a> <span class="i">@_</span><span class="cm">,</span> <span class="n">0</span><span class="cm">,</span> <span class="n">2</span><span class="s">)</span> <span class="s">{</span></li><li>                <span class="q">s/$from/$to/g</span><span class="sc">;</span></li><li>        <span class="s">}</span></li><li>    <span class="s">}</span><span class="sc">;</span></li><li></li><li>    <span class="n">1</span><span class="sc">;</span></li><li></li><li>    <span class="c"># in user&#39;s code:</span></li><li></li><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">MyFilter</span> <span class="q">qr/red/</span> <span class="cm">=&gt;</span> <span class="q">&#39;green&#39;</span><span class="sc">;</span></li><li></li><li>    <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;red\n&quot;</span><span class="sc">;</span>   <span class="c"># this code is filtered, will print &quot;green\n&quot;</span></li><li>    <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;bored\n&quot;</span><span class="sc">;</span> <span class="c"># this code is filtered, will print &quot;bogreen\n&quot;</span></li><li></li><li>    <a class="l_k" href="functions/no.html">no</a> <span class="w">MyFilter</span><span class="sc">;</span></li><li></li><li>    <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;red\n&quot;</span><span class="sc">;</span>   <span class="c"># this code is not filtered, will print &quot;red\n&quot;</span></li></ol></pre><p>See <a href="Filter/Simple.html">Filter::Simple</a> for more information.</p>
</li>
<li>
<p>Filter::Util::Call, by Paul Marquess, provides you with the
framework to write <i>Source Filters</i> in Perl.  For most uses
the frontend Filter::Simple is to be preferred.
See <a href="Filter/Util/Call.html">Filter::Util::Call</a> for more information.</p>
</li>
<li>
<p>Locale::Constants, Locale::Country, Locale::Currency, and Locale::Language,
from Neil Bowers, have been added.  They provide the codes for various
locale standards, such as "fr" for France, "usd" for US Dollar, and
"jp" for Japanese.</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">Locale::Country</span><span class="sc">;</span></li><li></li><li>    <span class="i">$country</span> = <span class="i">code2country</span><span class="s">(</span><span class="q">&#39;jp&#39;</span><span class="s">)</span><span class="sc">;</span>               <span class="c"># $country gets &#39;Japan&#39;</span></li><li>    <span class="i">$code</span>    = <span class="i">country2code</span><span class="s">(</span><span class="q">&#39;Norway&#39;</span><span class="s">)</span><span class="sc">;</span>           <span class="c"># $code gets &#39;no&#39;</span></li></ol></pre><p>See <a href="Locale/Constants.html">Locale::Constants</a>, <a href="Locale/Country.html">Locale::Country</a>, <a href="Locale/Currency.html">Locale::Currency</a>,
and <a href="Locale/Language.html">Locale::Language</a> for more information.</p>
</li>
<li>
<p>MIME::Base64, by Gisle Aas, allows you to encode data in base64.</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">MIME::Base64</span><span class="sc">;</span></li><li></li><li>    <span class="i">$encoded</span> = <span class="i">encode_base64</span><span class="s">(</span><span class="q">&#39;Aladdin:open sesame&#39;</span><span class="s">)</span><span class="sc">;</span></li><li>    <span class="i">$decoded</span> = <span class="i">decode_base64</span><span class="s">(</span><span class="i">$encoded</span><span class="s">)</span><span class="sc">;</span></li><li></li><li>    <a class="l_k" href="functions/print.html">print</a> <span class="i">$encoded</span><span class="cm">,</span> <span class="q">&quot;\n&quot;</span><span class="sc">;</span> <span class="c"># &quot;QWxhZGRpbjpvcGVuIHNlc2FtZQ==&quot;</span></li></ol></pre><p>See <a href="MIME/Base64.html">MIME::Base64</a> for more information.</p>
</li>
<li>
<p>MIME::QuotedPrint, by Gisle Aas, allows you to encode data in
quoted-printable encoding.</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">MIME::QuotedPrint</span><span class="sc">;</span></li><li></li><li>    <span class="i">$encoded</span> = <span class="i">encode_qp</span><span class="s">(</span><span class="q">&quot;Smiley in Unicode: \x{263a}&quot;</span><span class="s">)</span><span class="sc">;</span></li><li>    <span class="i">$decoded</span> = <span class="i">decode_qp</span><span class="s">(</span><span class="i">$encoded</span><span class="s">)</span><span class="sc">;</span></li><li></li><li>    <a class="l_k" href="functions/print.html">print</a> <span class="i">$encoded</span><span class="cm">,</span> <span class="q">&quot;\n&quot;</span><span class="sc">;</span> <span class="c"># &quot;Smiley in Unicode: =263A&quot;</span></li></ol></pre><p>MIME::QuotedPrint has been enhanced to provide the basic methods
necessary to use it with PerlIO::Via as in :</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">MIME::QuotedPrint</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/open.html">open</a><span class="s">(</span><span class="i">$fh</span><span class="cm">,</span><span class="q">&quot;&gt;Via(MIME::QuotedPrint)&quot;</span><span class="cm">,</span><span class="i">$path</span><span class="s">)</span></li></ol></pre><p>See <a href="MIME/QuotedPrint.html">MIME::QuotedPrint</a> for more information.</p>
</li>
<li>
<p>PerlIO::Scalar, by Nick Ing-Simmons, provides the implementation of
IO to "in memory" Perl scalars as discussed above.  It also serves as
an example of a loadable layer.  Other future possibilities include
PerlIO::Array and PerlIO::Code.  See <a href="http://search.cpan.org/perldoc/PerlIO::Scalar">PerlIO::Scalar</a> for more
information.</p>
</li>
<li>
<p>PerlIO::Via, by Nick Ing-Simmons, acts as a PerlIO layer and wraps
PerlIO layer functionality provided by a class (typically implemented
in perl code).</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">MIME::QuotedPrint</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/open.html">open</a><span class="s">(</span><span class="i">$fh</span><span class="cm">,</span><span class="q">&quot;&gt;Via(MIME::QuotedPrint)&quot;</span><span class="cm">,</span><span class="i">$path</span><span class="s">)</span></li></ol></pre><p>This will automatically convert everything output to <code class="inline"><span class="i">$fh</span></code>

to Quoted-Printable.  See <a href="http://search.cpan.org/perldoc/PerlIO::Via">PerlIO::Via</a> for more information.</p>
</li>
<li>
<p>Pod::Text::Overstrike, by Joe Smith, has been added.
It converts POD data to formatted overstrike text.
See <a href="Pod/Text/Overstrike.html">Pod::Text::Overstrike</a> for more information.</p>
</li>
<li>
<p>Switch from Damian Conway has been added.  Just by saying</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">Switch</span><span class="sc">;</span></li></ol></pre><p>you have <code class="inline">switch</code>
 and <code class="inline">case</code>
 available in Perl.</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">Switch</span><span class="sc">;</span></li><li></li><li>    switch <span class="s">(</span><span class="i">$val</span><span class="s">)</span> <span class="s">{</span></li><li></li><li>		case <span class="n">1</span>		<span class="s">{</span> <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;number 1&quot;</span> <span class="s">}</span></li><li>		case <span class="q">&quot;a&quot;</span>	<span class="s">{</span> <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;string a&quot;</span> <span class="s">}</span></li><li>		case <span class="s">[</span><span class="n">1</span>..<span class="n">10</span><span class="cm">,</span><span class="n">42</span><span class="s">]</span>	<span class="s">{</span> <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;number in list&quot;</span> <span class="s">}</span></li><li>		case <span class="s">(</span><span class="i">@array</span><span class="s">)</span>	<span class="s">{</span> <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;number in list&quot;</span> <span class="s">}</span></li><li>		case <span class="q">/\w+/</span>	<span class="s">{</span> <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;pattern&quot;</span> <span class="s">}</span></li><li>		case <span class="q">qr/\w+/</span>	<span class="s">{</span> <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;pattern&quot;</span> <span class="s">}</span></li><li>		case <span class="s">(</span><span class="i">%hash</span><span class="s">)</span>	<span class="s">{</span> <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;entry in hash&quot;</span> <span class="s">}</span></li><li>		case <span class="s">(</span>\<span class="i">%hash</span><span class="s">)</span>	<span class="s">{</span> <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;entry in hash&quot;</span> <span class="s">}</span></li><li>		case <span class="s">(</span>\<span class="i">&amp;sub</span><span class="s">)</span>	<span class="s">{</span> <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;arg to subroutine&quot;</span> <span class="s">}</span></li><li>		else		<span class="s">{</span> <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;previous case not true&quot;</span> <span class="s">}</span></li><li>    <span class="s">}</span></li></ol></pre><p>See <a href="http://search.cpan.org/perldoc/Switch">Switch</a> for more information.</p>
</li>
<li>
<p>Text::Balanced from Damian Conway has been added, for
extracting delimited text sequences from strings.</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">Text::Balanced</span> <span class="q">&#39;extract_delimited&#39;</span><span class="sc">;</span></li><li></li><li>    <span class="s">(</span><span class="i">$a</span><span class="cm">,</span> <span class="i">$b</span><span class="s">)</span> = <span class="i">extract_delimited</span><span class="s">(</span><span class="q">&quot;&#39;never say never&#39;, he never said&quot;</span><span class="cm">,</span> <span class="q">&quot;&#39;&quot;</span><span class="cm">,</span> <span class="q">&#39;&#39;</span><span class="s">)</span><span class="sc">;</span></li></ol></pre><p>$a will be "'never say never'", $b will be ', he never said'.</p>
<p>In addition to extract_delimited() there are also extract_bracketed(),
extract_quotelike(), extract_codeblock(), extract_variable(),
extract_tagged(), extract_multiple(), gen_delimited_pat(), and
gen_extract_tagged().  With these you can implement rather advanced
parsing algorithms.  See <a href="Text/Balanced.html">Text::Balanced</a> for more information.</p>
</li>
<li>
<p>Tie::RefHash::Nestable, by Edward Avis, allows storing hash references
(unlike the standard Tie::RefHash)  The module is contained within
Tie::RefHash.</p>
</li>
<li>
<p>XS::Typemap, by Tim Jenness, is a test extension that exercises XS
typemaps.  Nothing gets installed but for extension writers the code
is worth studying.</p>
</li>
</ul>
<a name="Updated-And-Improved-Modules-and-Pragmata"></a><h2>Updated And Improved Modules and Pragmata</h2>
<ul>
<li>
<p>B::Deparse should be now more robust.  It still far from providing a full
round trip for any random piece of Perl code, though, and is under active
development: expect more robustness in 5.7.2.</p>
</li>
<li>
<p>Class::Struct can now define the classes in compile time.</p>
</li>
<li>
<p>Math::BigFloat has undergone much fixing, and in addition the fmod()
function now supports modulus operations.</p>
<p>( The fixed Math::BigFloat module is also available in CPAN for those
who can't upgrade their Perl: <a href="http://www.cpan.org/authors/id/J/JP/JPEACOCK/">http://www.cpan.org/authors/id/J/JP/JPEACOCK/</a> )</p>
</li>
<li>
<p>Devel::Peek now has an interface for the Perl memory statistics
(this works only if you are using perl's malloc, and if you have
compiled with debugging).</p>
</li>
<li>
<p>IO::Socket has now atmark() method, which returns true if the socket
is positioned at the out-of-band mark.  The method is also exportable
as a sockatmark() function.</p>
</li>
<li>
<p>IO::Socket::INET has support for ReusePort option (if your platform
supports it).  The Reuse option now has an alias, ReuseAddr.  For clarity
you may want to prefer ReuseAddr.</p>
</li>
<li>
<p>Net::Ping has been enhanced.  There is now "external" protocol which
uses Net::Ping::External module which runs external ping(1) and parses
the output.  An alpha version of Net::Ping::External is available in
CPAN and in 5.7.2 the Net::Ping::External may be integrated to Perl.</p>
</li>
<li>
<p>The <code class="inline"><a class="l_k" href="functions/open.html">open</a></code> pragma allows layers other than ":raw" and ":crlf" when
using PerlIO.</p>
</li>
<li>
<p>POSIX::sigaction() is now much more flexible and robust.
You can now install coderef handlers, 'DEFAULT', and 'IGNORE'
handlers, installing new handlers was not atomic.</p>
</li>
<li>
<p>The Test module has been significantly enhanced.  Its use is
greatly recommended for module writers.</p>
</li>
<li>
<p>The utf8:: name space (as in the pragma) provides various
Perl-callable functions to provide low level access to Perl's
internal Unicode representation.  At the moment only length()
has been implemented.</p>
</li>
</ul>
<p>The following modules have been upgraded from the versions at CPAN:
CPAN, CGI, DB_File, File::Temp, Getopt::Long, Pod::Man, Pod::Text,
Storable, Text-Tabs+Wrap.</p>
<a name="Performance-Enhancements"></a><h1>Performance Enhancements</h1>
<ul>
<li>
<p>Hashes now use Bob Jenkins "One-at-a-Time" hashing key algorithm
( <a href="http://burtleburtle.net/bob/hash/doobs.html">http://burtleburtle.net/bob/hash/doobs.html</a> ).  This algorithm is
reasonably fast while producing a much better spread of values than
the old hashing algorithm (originally by Chris Torek, later tweaked by
Ilya Zakharevich).  Hash values output from the algorithm on a hash of
all 3-char printable ASCII keys comes much closer to passing the
DIEHARD random number generation tests.  According to perlbench, this
change has not affected the overall speed of Perl.</p>
</li>
<li>
<p>unshift() should now be noticeably faster.</p>
</li>
</ul>
<a name="Utility-Changes"></a><h1>Utility Changes</h1>
<ul>
<li>
<p>h2xs now produces template README.</p>
</li>
<li>
<p>s2p has been completely rewritten in Perl.  (It is in fact a full
implementation of sed in Perl.)</p>
</li>
<li>
<p>xsubpp now supports OUT keyword.</p>
</li>
</ul>
<a name="New-Documentation"></a><h1>New Documentation</h1>
<a name="perlclib"></a><h2>perlclib</h2>
<p>Internal replacements for standard C library functions.
(Interesting only for extension writers and Perl core hackers.)</p>
<a name="perliol"></a><h2>perliol</h2>
<p>Internals of PerlIO with layers.</p>
<a name="README.aix"></a><h2>README.aix</h2>
<p>Documentation on compiling Perl on AIX has been added.  AIX has
several different C compilers and getting the right patch level
is essential.  On install README.aix will be installed as <a href="perlaix.html">perlaix</a>.</p>
<a name="README.bs2000"></a><h2>README.bs2000</h2>
<p>Documentation on compiling Perl on the POSIX-BC platform (an EBCDIC
mainframe environment) has been added.</p>
<p>This was formerly known as README.posix-bc but the name was considered
to be too confusing (it has nothing to do with the POSIX module or the
POSIX standard).  On install README.bs2000 will be installed as <a href="perlbs2000.html">perlbs2000</a>.</p>
<a name="README.macos"></a><h2>README.macos</h2>
<p>In perl 5.7.1 (and in the 5.6.1) the MacPerl sources have been
synchronised with the standard Perl sources.  To compile MacPerl
some additional steps are required, and this file documents those
steps.  On install README.macos will be installed as <a href="perlmacos.html">perlmacos</a>.</p>
<a name="README.mpeix"></a><h2>README.mpeix</h2>
<p>The README.mpeix has been podified, which means that this information
about compiling and using Perl on the MPE/iX miniframe platform will
be installed as <a href="perlmpeix.html">perlmpeix</a>.</p>
<a name="README.solaris"></a><h2>README.solaris</h2>
<p>README.solaris has been created and Solaris wisdom from elsewhere
in the Perl documentation has been collected there.  On install
README.solaris will be installed as <a href="perlsolaris.html">perlsolaris</a>.</p>
<a name="README.vos"></a><h2>README.vos</h2>
<p>The README.vos has been podified, which means that this information
about compiling and using Perl on the Stratus VOS miniframe platform
will be installed as <a href="perlvos.html">perlvos</a>.</p>
<a name="Porting%2frepository.pod"></a><h2>Porting/repository.pod</h2>
<p>Documentation on how to use the Perl source repository has been added.</p>
<a name="Installation-and-Configuration-Improvements"></a><h1>Installation and Configuration Improvements</h1>
<ul>
<li>
<p>Because PerlIO is now the default on most platforms, "-perlio" doesn't
get appended to the $Config{archname} (also known as $^O) anymore.
Instead, if you explicitly choose not to use perlio (Configure command
line option -Uuseperlio), you will get "-stdio" appended.</p>
</li>
<li>
<p>Another change related to the architecture name is that "-64all"
(-Duse64bitall, or "maximally 64-bit") is appended only if your
pointers are 64 bits wide.  (To be exact, the use64bitall is ignored.)</p>
</li>
<li>
<p>APPLLIB_EXP, a less-know configuration-time definition, has been
documented.  It can be used to prepend site-specific directories
to Perl's default search path (@INC), see INSTALL for information.</p>
</li>
<li>
<p>Building Berkeley DB3 for compatibility modes for DB, NDBM, and ODBM
has been documented in INSTALL.</p>
</li>
<li>
<p>If you are on IRIX or Tru64 platforms, new profiling/debugging options
have been added, see <a href="perlhack.html">perlhack</a> for more information about pixie and
Third Degree.</p>
</li>
</ul>
<a name="New-Or-Improved-Platforms"></a><h2>New Or Improved Platforms</h2>
<p>For the list of platforms known to support Perl,
see <a href="perlport.html#Supported-Platforms">Supported Platforms in perlport</a>.</p>
<ul>
<li>
<p>AIX dynamic loading should be now better supported.</p>
</li>
<li>
<p>After a long pause, AmigaOS has been verified to be happy with Perl.</p>
</li>
<li>
<p>EBCDIC platforms (z/OS, also known as OS/390, POSIX-BC, and VM/ESA)
have been regained.  Many test suite tests still fail and the
co-existence of Unicode and EBCDIC isn't quite settled, but the
situation is much better than with Perl 5.6.  See <a href="perlos390.html">perlos390</a>,
<a href="perlbs2000.html">perlbs2000</a> (for POSIX-BC), and <a href="perlvmesa.html">perlvmesa</a> for more information.</p>
</li>
<li>
<p>Building perl with -Duseithreads or -Duse5005threads now works under
HP-UX 10.20 (previously it only worked under 10.30 or later). You will
need a thread library package installed. See README.hpux.</p>
</li>
<li>
<p>Mac OS Classic (MacPerl has of course been available since
perl 5.004 but now the source code bases of standard Perl
and MacPerl have been synchronised)</p>
</li>
<li>
<p>NCR MP-RAS is now supported.</p>
</li>
<li>
<p>NonStop-UX is now supported.</p>
</li>
<li>
<p>Amdahl UTS is now supported.</p>
</li>
<li>
<p>z/OS (formerly known as OS/390, formerly known as MVS OE) has now
support for dynamic loading.  This is not selected by default,
however, you must specify -Dusedl in the arguments of Configure.</p>
</li>
</ul>
<a name="Generic-Improvements"></a><h2>Generic Improvements</h2>
<ul>
<li>
<p>Configure no longer includes the DBM libraries (dbm, gdbm, db, ndbm)
when building the Perl binary.  The only exception to this is SunOS 4.x,
which needs them.</p>
</li>
<li>
<p>Some new Configure symbols, useful for extension writers:</p>
<ul>
<li><a name="d_cmsghdr"></a><b>d_cmsghdr</b>
<p>For struct cmsghdr.</p>
</li>
<li><a name="d_fcntl_can_lock"></a><b>d_fcntl_can_lock</b>
<p>Whether fcntl() can be used for file locking.</p>
</li>
<li><a name="d_fsync"></a><b>d_fsync</b>
</li>
<li><a name="d_getitimer"></a><b>d_getitimer</b>
</li>
<li><a name="d_getpagsz"></a><b>d_getpagsz</b>
<p>For getpagesize(), though you should prefer POSIX::sysconf(_SC_PAGE_SIZE))</p>
</li>
<li><a name="d_msghdr_s"></a><b>d_msghdr_s</b>
<p>For struct msghdr.</p>
</li>
<li><a name="need_va_copy"></a><b>need_va_copy</b>
<p>Whether one needs to use Perl_va_copy() to copy varargs.</p>
</li>
<li><a name="d_readv"></a><b>d_readv</b>
</li>
<li><a name="d_recvmsg"></a><b>d_recvmsg</b>
</li>
<li><a name="d_sendmsg"></a><b>d_sendmsg</b>
</li>
<li><a name="sig_size"></a><b>sig_size</b>
<p>The number of elements in an array needed to hold all the available signals.</p>
</li>
<li><a name="d_sockatmark"></a><b>d_sockatmark</b>
</li>
<li><a name="d_strtoq"></a><b>d_strtoq</b>
</li>
<li><a name="d_u32align"></a><b>d_u32align</b>
<p>Whether one needs to access character data aligned by U32 sized pointers.</p>
</li>
<li><a name="d_ualarm"></a><b>d_ualarm</b>
</li>
<li><a name="d_usleep"></a><b>d_usleep</b>
</li>
</ul>
</li>
<li>
<p>Removed Configure symbols: the PDP-11 memory model settings: huge,
large, medium, models.</p>
</li>
<li>
<p>SOCKS support is now much more robust.</p>
</li>
<li>
<p>If your file system supports symbolic links you can build Perl outside
of the source directory by</p>
<pre class="verbatim"><ol><li>	mkdir perl/build/directory</li><li>	cd perl/build/directory</li><li>	sh /path/to/perl/source/Configure -Dmksymlinks ...</li></ol></pre><p>This will create in perl/build/directory a tree of symbolic links
pointing to files in /path/to/perl/source.  The original files are left
unaffected.  After Configure has finished you can just say</p>
<pre class="verbatim"><ol><li>	<span class="w">make</span> <span class="w">all</span> <span class="w">test</span></li></ol></pre><p>and Perl will be built and tested, all in perl/build/directory.</p>
</li>
</ul>
<a name="Selected-Bug-Fixes"></a><h1>Selected Bug Fixes</h1>
<p>Numerous memory leaks and uninitialized memory accesses have been hunted down.
Most importantly anonymous subs used to leak quite a bit.</p>
<ul>
<li>
<p>chop(@list) in list context returned the characters chopped in
reverse order.  This has been reversed to be in the right order.</p>
</li>
<li>
<p>The order of DESTROYs has been made more predictable.</p>
</li>
<li>
<p>mkdir() now ignores trailing slashes in the directory name,
as mandated by POSIX.</p>
</li>
<li>
<p>Attributes (like :shared) didn't work with our().</p>
</li>
<li>
<p>The PERL5OPT environment variable (for passing command line arguments
to Perl) didn't work for more than a single group of options.</p>
</li>
<li>
<p>The tainting behaviour of sprintf() has been rationalized.  It does
not taint the result of floating point formats anymore, making the
behaviour consistent with that of string interpolation.</p>
</li>
<li>
<p>All but the first argument of the IO syswrite() method are now optional.</p>
</li>
<li>
<p>Tie::ARRAY SPLICE method was broken.</p>
</li>
<li>
<p>vec() now tries to work with characters &lt;= 255 when possible, but it leaves
higher character values in place.  In that case, if vec() was used to modify
the string, it is no longer considered to be utf8-encoded.</p>
</li>
</ul>
<a name="Platform-Specific-Changes-and-Fixes"></a><h2>Platform Specific Changes and Fixes</h2>
<ul>
<li>
<p>Linux previously had problems related to sockaddrlen when using
accept(), revcfrom() (in Perl: recv()), getpeername(), and getsockname().</p>
</li>
<li>
<p>Previously DYNIX/ptx had problems in its Configure probe for non-blocking I/O.</p>
</li>
<li>
<p>Windows</p>
<ul>
<li>
<p>Borland C++ v5.5 is now a supported compiler that can build Perl.
However, the generated binaries continue to be incompatible with those
generated by the other supported compilers (GCC and Visual C++).</p>
</li>
<li>
<p>Win32::GetCwd() correctly returns C:\ instead of C: when at the drive root.
Other bugs in chdir() and Cwd::cwd() have also been fixed.</p>
</li>
<li>
<p>Duping socket handles with open(F, "&gt;&amp;MYSOCK") now works under Windows 9x.</p>
</li>
<li>
<p>HTML files will be installed in c:\perl\html instead of c:\perl\lib\pod\html</p>
</li>
<li>
<p>The makefiles now provide a single switch to bulk-enable all the features
enabled in ActiveState ActivePerl (a popular binary distribution).</p>
</li>
</ul>
</li>
</ul>
<a name="New-or-Changed-Diagnostics"></a><h1>New or Changed Diagnostics</h1>
<p>Two new debugging options have been added: if you have compiled your
Perl with debugging, you can use the -DT and -DR options to trace
tokenising and to add reference counts to displaying variables,
respectively.</p>
<ul>
<li>
<p>If an attempt to use a (non-blessed) reference as an array index
is made, a warning is given.</p>
</li>
<li>
<p><code class="inline"><a class="l_k" href="functions/push.html">push</a> <span class="i">@a</span><span class="sc">;</span></code>
 and <code class="inline"><a class="l_k" href="functions/unshift.html">unshift</a> <span class="i">@a</span><span class="sc">;</span></code>
 (with no values to push or unshift)
now give a warning.  This may be a problem for generated and eval'ed
code.</p>
</li>
</ul>
<a name="Changed-Internals"></a><h1>Changed Internals</h1>
<ul>
<li>
<p>Some new APIs: ptr_table_clear(), ptr_table_free(), sv_setref_uv().
For the full list of the available APIs see <a href="perlapi.html">perlapi</a>.</p>
</li>
<li>
<p>dTHR and djSP have been obsoleted; the former removed (because it's
a no-op) and the latter replaced with dSP.</p>
</li>
<li>
<p>Perl now uses system malloc instead of Perl malloc on all 64-bit
platforms, and even in some not-always-64-bit platforms like AIX,
IRIX, and Solaris.  This change breaks backward compatibility but
Perl's malloc has problems with large address spaces and also the
speed of vendors' malloc is generally better in large address space
machines (Perl's malloc is mostly tuned for space).</p>
</li>
</ul>
<a name="New-Tests"></a><h1>New Tests</h1>
<p>Many new tests have been added.  The most notable is probably the
lib/1_compile: it is very notable because running it takes quite a
long time. It test compiles all the Perl modules in the distribution.
Please be patient.</p>
<a name="Known-Problems"></a><h1>Known Problems</h1>
<p>Note that unlike other sections in this document (which describe
changes since 5.7.0) this section is cumulative containing known
problems for all the 5.7 releases.</p>
<a name="AIX-vac-5.0.0.0-May-Produce-Buggy-Code-For-Perl"></a><h2>AIX vac 5.0.0.0 May Produce Buggy Code For Perl</h2>
<p>The AIX C compiler vac version 5.0.0.0 may produce buggy code,
resulting in few random tests failing, but when the failing tests
are run by hand, they succeed.  We suggest upgrading to at least
vac version 5.0.1.0, that has been known to compile Perl correctly.
"lslpp -L|grep vac.C" will tell you the vac version.</p>
<a name="lib%2fftmp-security-tests-warn-'system-possibly-insecure'"></a><h2>lib/ftmp-security tests warn 'system possibly insecure'</h2>
<p>Don't panic.  Read INSTALL 'make test' section instead.</p>
<a name="lib%2fio_multihomed-Fails-In-LP64-Configured-HP-UX"></a><h2>lib/io_multihomed Fails In LP64-Configured HP-UX</h2>
<p>The lib/io_multihomed test may hang in HP-UX if Perl has been
configured to be 64-bit. Because other 64-bit platforms do not hang in
this test, HP-UX is suspect. All other tests pass in 64-bit HP-UX. The
test attempts to create and connect to "multihomed" sockets (sockets
which have multiple IP addresses).</p>
<a name="Test-lib%2fposix-Subtest-9-Fails-In-LP64-Configured-HP-UX"></a><h2>Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX</h2>
<p>If perl is configured with -Duse64bitall, the successful result of the
subtest 10 of lib/posix may arrive before the successful result of the
subtest 9, which confuses the test harness so much that it thinks the
subtest 9 failed.</p>
<a name="lib%2fb-test-19"></a><h2>lib/b test 19</h2>
<p>The test fails on various platforms (PA64 and IA64 are known), but the
exact cause is still being investigated.</p>
<a name="Linux-With-Sfio-Fails-op%2fmisc-Test-48"></a><h2>Linux With Sfio Fails op/misc Test 48</h2>
<p>No known fix.</p>
<a name="sigaction-test-13-in-VMS"></a><h2>sigaction test 13 in VMS</h2>
<p>The test is known to fail; whether it's because of VMS of because
of faulty test is not known.</p>
<a name="sprintf-tests-129-and-130"></a><h2>sprintf tests 129 and 130</h2>
<p>The op/sprintf tests 129 and 130 are known to fail on some platforms.
Examples include any platform using sfio, and Compaq/Tandem's NonStop-UX.
The failing platforms do not comply with the ANSI C Standard, line
19ff on page 134 of ANSI X3.159 1989 to be exact.  (They produce
something else than "1" and "-1" when formatting 0.6 and -0.6 using
the printf format "%.0f", most often they produce "0" and "-0".)</p>
<a name="Failure-of-Thread-tests"></a><h2>Failure of Thread tests</h2>
<p>The subtests 19 and 20 of lib/thr5005.t test are known to fail due to
fundamental problems in the 5.005 threading implementation. These are
not new failures--Perl 5.005_0x has the same bugs, but didn't have
these tests. (Note that support for 5.005-style threading remains
experimental.)</p>
<a name="Localising-a-Tied-Variable-Leaks-Memory"></a><h2>Localising a Tied Variable Leaks Memory</h2>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">Tie::Hash</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/tie.html">tie</a> <a class="l_k" href="functions/my.html">my</a> <span class="i">%tie_hash</span> <span class="cm">=&gt;</span> <span class="q">&#39;Tie::StdHash&#39;</span><span class="sc">;</span></li><li></li><li>    ...</li><li></li><li>    <a class="l_k" href="functions/local.html">local</a><span class="s">(</span><span class="i">$tie_hash</span>{<span class="w">Foo</span>}<span class="s">)</span> = <span class="n">1</span><span class="sc">;</span> <span class="c"># leaks</span></li></ol></pre><p>Code like the above is known to leak memory every time the local()
is executed.</p>
<a name="Self-tying-of-Arrays-and-Hashes-Is-Forbidden"></a><h2>Self-tying of Arrays and Hashes Is Forbidden</h2>
<p>Self-tying of arrays and hashes is broken in rather deep and
hard-to-fix ways.  As a stop-gap measure to avoid people from getting
frustrated at the mysterious results (core dumps, most often) it is
for now forbidden (you will get a fatal error even from an attempt).</p>
<a name="Building-Extensions-Can-Fail-Because-Of-Largefiles"></a><h2>Building Extensions Can Fail Because Of Largefiles</h2>
<p>Some extensions like mod_perl are known to have issues with
`largefiles', a change brought by Perl 5.6.0 in which file offsets
default to 64 bits wide, where supported.  Modules may fail to compile
at all or compile and work incorrectly.  Currently there is no good
solution for the problem, but Configure now provides appropriate
non-largefile ccflags, ldflags, libswanted, and libs in the %Config
hash (e.g., $Config{ccflags_nolargefiles}) so the extensions that are
having problems can try configuring themselves without the
largefileness.  This is admittedly not a clean solution, and the
solution may not even work at all.  One potential failure is whether
one can (or, if one can, whether it's a good idea) link together at
all binaries with different ideas about file offsets, all this is
platform-dependent.</p>
<a name="The-Compiler-Suite-Is-Still-Experimental"></a><h2>The Compiler Suite Is Still Experimental</h2>
<p>The compiler suite is slowly getting better but is nowhere near
working order yet.</p>
<a name="Reporting-Bugs"></a><h1>Reporting Bugs</h1>
<p>If you find what you think is a bug, you might check the articles
recently posted to the comp.lang.perl.misc newsgroup and the perl
bug database at <a href="http://bugs.perl.org/">http://bugs.perl.org/</a>  There may also be
information at <a href="http://www.perl.com/perl/">http://www.perl.com/perl/</a> , the Perl Home Page.</p>
<p>If you believe you have an unreported bug, please run the <b>perlbug</b>
program included with your release.  Be sure to trim your bug down
to a tiny but sufficient test case.  Your bug report, along with the
output of <code class="inline"><span class="w">perl</span> -<span class="w">V</span></code>
, will be sent off to perlbug@perl.org to be
analysed by the Perl porting team.</p>
<a name="SEE-ALSO"></a><h1>SEE ALSO</h1>
<p>The <i>Changes</i> file for exhaustive details on what changed.</p>
<p>The <i>INSTALL</i> file for how to build Perl.</p>
<p>The <i>README</i> file for general stuff.</p>
<p>The <i>Artistic</i> and <i>Copying</i> files for copyright information.</p>
<a name="HISTORY"></a><h1>HISTORY</h1>
<p>Written by Jarkko Hietaniemi &lt;<i>jhi@iki.fi</i>&gt;, with many contributions
from The Perl Porters and Perl Users submitting feedback and patches.</p>
<p>Send omissions or corrections to &lt;<i>perlbug@perl.org</i>&gt;.</p>




  <div id="page_index" class="hud_container">
    <div id="page_index_header" class="hud_header">
      <div id="page_index_close" class="hud_close"><a href="#" onClick="pageIndex.hide();return false;"></a></div>
      <div id="page_index_title" class="hud_title"><span class="hud_span_top">Page index</span></div>
      <div id="page_index_topright" class="hud_topright"></div>
    </div>
    <div id="page_index_content" class="hud_content">
      <ul><li><a href="#NAME">NAME</a><li><a href="#DESCRIPTION">DESCRIPTION</a><li><a href="#Security-Vulnerability-Closed">Security Vulnerability Closed</a><li><a href="#Incompatible-Changes">Incompatible Changes</a><li><a href="#Core-Enhancements">Core Enhancements</a><ul><li><a href="#AUTOLOAD-Is-Now-Lvaluable">AUTOLOAD Is Now Lvaluable</a><li><a href="#PerlIO-is-Now-The-Default">PerlIO is Now The Default</a><li><a href="#Signals-Are-Now-Safe">Signals Are Now Safe</a></ul><li><a href="#Modules-and-Pragmata">Modules and Pragmata</a><ul><li><a href="#New-Modules">New Modules</a><li><a href="#Updated-And-Improved-Modules-and-Pragmata">Updated And Improved Modules and Pragmata</a></ul><li><a href="#Performance-Enhancements">Performance Enhancements</a><li><a href="#Utility-Changes">Utility Changes</a><li><a href="#New-Documentation">New Documentation</a><ul><li><a href="#perlclib">perlclib</a><li><a href="#perliol">perliol</a><li><a href="#README.aix">README.aix</a><li><a href="#README.bs2000">README.bs2000</a><li><a href="#README.macos">README.macos</a><li><a href="#README.mpeix">README.mpeix</a><li><a href="#README.solaris">README.solaris</a><li><a href="#README.vos">README.vos</a><li><a href="#Porting%2frepository.pod">Porting/repository.pod</a></ul><li><a href="#Installation-and-Configuration-Improvements">Installation and Configuration Improvements</a><ul><li><a href="#New-Or-Improved-Platforms">New Or Improved Platforms</a><li><a href="#Generic-Improvements">Generic Improvements</a></ul><li><a href="#Selected-Bug-Fixes">Selected Bug Fixes</a><ul><li><a href="#Platform-Specific-Changes-and-Fixes">Platform Specific Changes and Fixes</a></ul><li><a href="#New-or-Changed-Diagnostics">New or Changed Diagnostics</a><li><a href="#Changed-Internals">Changed Internals</a><li><a href="#New-Tests">New Tests</a><li><a href="#Known-Problems">Known Problems</a><ul><li><a href="#AIX-vac-5.0.0.0-May-Produce-Buggy-Code-For-Perl">AIX vac 5.0.0.0 May Produce Buggy Code For Perl</a><li><a href="#lib%2fftmp-security-tests-warn-'system-possibly-insecure'">lib/ftmp-security tests warn 'system possibly insecure'</a><li><a href="#lib%2fio_multihomed-Fails-In-LP64-Configured-HP-UX">lib/io_multihomed Fails In LP64-Configured HP-UX</a><li><a href="#Test-lib%2fposix-Subtest-9-Fails-In-LP64-Configured-HP-UX">Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX</a><li><a href="#lib%2fb-test-19">lib/b test 19</a><li><a href="#Linux-With-Sfio-Fails-op%2fmisc-Test-48">Linux With Sfio Fails op/misc Test 48</a><li><a href="#sigaction-test-13-in-VMS">sigaction test 13 in VMS</a><li><a href="#sprintf-tests-129-and-130">sprintf tests 129 and 130</a><li><a href="#Failure-of-Thread-tests">Failure of Thread tests</a><li><a href="#Localising-a-Tied-Variable-Leaks-Memory">Localising a Tied Variable Leaks Memory</a><li><a href="#Self-tying-of-Arrays-and-Hashes-Is-Forbidden">Self-tying of Arrays and Hashes Is Forbidden</a><li><a href="#Building-Extensions-Can-Fail-Because-Of-Largefiles">Building Extensions Can Fail Because Of Largefiles</a><li><a href="#The-Compiler-Suite-Is-Still-Experimental">The Compiler Suite Is Still Experimental</a></ul><li><a href="#Reporting-Bugs">Reporting Bugs</a><li><a href="#SEE-ALSO">SEE ALSO</a><li><a href="#HISTORY">HISTORY</a></ul>
    </div>
    <div id="page_index_footer" class="hud_footer">
      <div id="page_index_bottomleft" class="hud_bottomleft"></div>
      <div id="page_index_bottom" class="hud_bottom"><span class="hud_span_bottom"></span></div>
      <div id="page_index_resize" class="hud_resize"></div>
    </div>
  </div>


	    &nbsp;
          </div>
          <div id="content_footer">
          </div>
        </div>
        <div class="clear"></div>
      </div>
      
    <div id="footer">
      <div id="footer_content">
        <div id="footer_strapline">
          perldoc.perl.org - Official documentation for the Perl programming language
        </div>
        <div id="footer_links">
          <div id="address">
            <p class="name">Contact details</p>
            <p class="address">
	      Site maintained by <a href="http://perl.jonallen.info">Jon Allen (JJ)</a><br>
	      See the <a href="http://perl.jonallen.info/projects/perldoc">project page</a> for more details
	    </p>
            <p class="contact">
              Documentation maintained by the <a href="http://lists.cpan.org/showlist.cgi?name=perl5-porters">Perl 5 Porters</a>
            </p>
          </div>
          <ul class="f1">
            <li>Manual
              <ul class="f2">
                <li><a href="index-overview.html">Overview</a>
                <li><a href="index-tutorials.html">Tutorials</a>
                <li><a href="index-faq.html">FAQs</a>
                <li><a href="index-history.html">Changes</a>
              </ul>
            <li>Reference
              <ul class="f2">
                <li><a href="index-language.html">Language</a>
                <li><a href="index-functions.html">Functions</a>
                <li><a href="perlop.html">Operators</a>
                <li><a href="perlvar.html">Variables</a>
              </ul>
            <li>Modules
              <ul class="f2">
                <li><a href="index-modules-A.html">Modules</a>
                <li><a href="index-pragmas.html">Pragmas</a>
                <li><a href="index-utilities.html">Utilities</a>
              </ul>
            <li>Misc
              <ul class="f2">
                <li><a href="index-licence.html">License</a>
                <li><a href="index-internals.html">Internals</a>
                <li><a href="index-platforms.html">Platforms</a>
              </ul>          </ul>
          <div class="clear"></div>
        </div>
      </div>
      <div id="footer_end">
      </div>
    </div>
      
    </div>
      <script language="JavaScript" type="text/javascript" src="static/exploreperl.js"></script>
      <script language="JavaScript" src="static/combined-20100403.js" type="text/javascript"></script>
<script language="JavaScript" type="text/javascript">
  perldoc.setPath(0);
  perldoc.pageName    = 'perl571delta';
  perldoc.pageAddress = 'perl571delta.html';
  perldoc.contentPage = 1;
  explorePerl.render();
  explorePerl.addEvents('explore_anchor');
</script>
    
  </body>
</html>