perldelta: Correct statement
authorKarl Williamson <public@khwilliamson.com>
Fri, 11 May 2012 15:37:37 +0000 (09:37 -0600)
committerKarl Williamson <public@khwilliamson.com>
Fri, 11 May 2012 16:02:13 +0000 (10:02 -0600)
It was pointed out to me after I wrote the text in an earlier perldelta
that this one is extracted from, that it is extremely unlikely to run
out of memory; I had not bothered to really do the math.

pod/perldelta.pod

index 3360af4..d319480 100644 (file)
@@ -859,7 +859,7 @@ property in each regular expression.  Thus, C<qr/\p{foo}abc\p{foo}/>
 would generate two hashes.  Any probes in one instance would be unknown
 to the other, and the hashes could expand separately to be quite large
 if the regular expression were used on many different widely-separated
-code points.  This can lead to running out of memory in extreme cases.
+code points.
 Now, however, there is just one hash shared by all instances of a given
 property.  This means that if C<\p{foo}> is matched against "A" in one
 regular expression in a thread, the result will be known immediately to