mauke
mauke
For reference, this is the reproducer: ```perl #!/usr/bin/env perl use Encode; use Devel::Peek; my $line = "\xe2\x90\x0a"; chomp(my $str = "\xe2\x90\x0a"); Encode::_utf8_on($line); Encode::_utf8_on($str); for ($line, $str) { Dump($_); # Doesn't...
What does "cl.exe in the prompt is much faster eye" mean?
> The automagical named scalars are useful for beginners and for short subroutines by everyone (I admit, this could be useful in some cases); It's not just beginners and short...
Does `$(head -n1 "$(which perlbrew)" | tail -c +3) -e 'use Cwd'` run without errors? (That is, find the `perlbrew` script, extract the first line (usually something like `#!/usr/bin/perl`), skip...
Probably a duplicate of #23277.
The missing format string symbols have been a problem since perl 5.38, but apparently nobody noticed then.
perlmod says: > Currently CLONE is called with no parameters other than the invocant package name, but code should not assume that this will remain unchanged, as it is likely...
Weirdly, ```perl use re qw(strict); qr/]/ ``` is fine, but ```perl use re qw(strict); qr/]]/ ``` is an error (`Unescaped literal ']' in regex; marked by ```perl > print "]"...
@steve-m-hay Is the following algorithm what you had in mind? 1. For a BLEAD-FINAL release, skip this step. 2. Find all perl versions released chronologically after v5.LAST by carefully scanning...
I can't reproduce your segfaults. I've just built perl from a clean git directory using these exact commands: ```sh ./Configure -Dcc=clang -Accflags='-fsanitize=address' -Aldflags='-fsanitize=address' -Dusedevel -des make ``` Unsurprisingly, gcc also...