-
Notifications
You must be signed in to change notification settings - Fork 556
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"(P) substitution loop" with long string #11742
Comments
From @daximCreated by @daximMunging a 1 GiB XML file before parsing. Following program triggers the grade (P) diagnostic #!/usr/bin/env perl5.14.2 $xml =~ print substr $xml, 0, 250; # did it work? Perl Info
|
From @tonycozOn Wed, Nov 09, 2011 at 10:02:46AM -0800, Lars Dɪ����ᴡ 迪�� wrote:
One-liner: perl -Ilib -E '$x = "a" . ("b" x 2**30); $x =~ s/([^b]+b)/$1xyz/;' Changing maxiters in pp_subst and sbu_maxiters in struct subst to perl -e '$x = "a" . ("b" x 2**31); $x =~ s/b/a/g' changes from "Substitution loop at -e line 1" to what may be an Tony |
The RT System itself - Status changed from 'new' to 'open' |
From @cpansproutFixed in 3c6ef0a. -- Father Chrysostomos |
@cpansprout - Status changed from 'open' to 'pending release' |
From @khwilliamsonThanks for submitting this ticket The issue should be resolved with the release today of Perl v5.22. If you find that the problem persists, feel free to reopen this ticket -- |
@khwilliamson - Status changed from 'pending release' to 'resolved' |
Migrated from rt.perl.org#103260 (status was 'resolved')
Searchable as RT103260$
The text was updated successfully, but these errors were encountered: