Description:
perl5-porters@perl.org (Moderated)
|
|
|
mktables gets stuck on Win32
|
| |
Bleadperl currently isn't building on Win32: it gets stuck on the mktables call with CPU running at 100%. The win32/Makefile runs this (from win32/): cd ..\lib\unicore && ..\..\miniperl.exe -I.. -I..\..\cpan\Cwd\lib -I..\..\cpan\Cwd mktables -check ..\lib\unicore\Canonical.pl ..\lib\unicore\Canonical.pl... more »
|
|
mark get_arena() as Maychange
|
| |
this patch fixes get-arenas param names to reflect actual use, and marks call with 'M' for maychange. it needs make regen. I checked in proto.h - git let me, cuz its not in .gitignore, this surprised me mildly, since its generated output, but its also a tracked file. wrt submitted patches, I presume you prefer such files to be included... more »
|
|
add PERL_MEM_LOG to perlrun.pod
|
| |
I noticed that PERL_MEM_LOG is not mentioned in perlrun.pod, should it be ? if so, this patch addresses that lack. Suggestions for better wording/focus are welcome. I also grepped code to compare the uses to those docd in perlrun, and noticed a few omissions, are any of these worthy of mention here ?... more »
|
|
Functional substitution (s///f)
|
| |
Hi, I wrote a patch to scratch an itch I've had over the years. The patch adds a new flag to s/// ("f") to make it functional instead of destructive. So you can do this: $a = s/aaa/bbb/f; Which makes s/// return the replacement instead of changing $_ (or whatever =~ bound it to). In the past I've tried to encapsulate this in some sort of library but... more »
|
|
multiple bugs in perlbug
|
| |
...This is a bug report for perl from wanr...@gmail.com, generated with the help of perlbug 1.36 running under perl 5.10.0. ------------------------------ ------------------------------ ----- [Please enter your report here] After filling bug report and trying to send it away, i got answer: I am terribly sorry, but I cannot find sendmail, or a close... more »
|
|
threads panic
|
| |
The following script: use threads; sub foo { return (sub { }); } my $bar = threads->create(\&foo)->join() ; threads->create(sub { })->join(); produces the following: panic: del_backref during global destruction. I traced this down to Nick's commit a49ba3fcbe357fbacf7b9898df08da a2cbdfc8c4 (perforce change 34354), but... more »
|
|
|