cperl
cperl copied to clipboard
A perl5 with classes, types, compilable, company friendly, security
Last week I took most of the changes you did in 2017 to XSConfig and put them on cpan Tests look good http://www.cpantesters.org/distro/X/XSConfig.html . There are 2 commits I didn't...
Testcase: ```perl use Coro; sub _sleep { my $c = Coro::rouse_cb(); Coro::rouse_wait(); } my $child = async { my ($a, $a2, $a3 # remove following line to omit segfault ,...
I'm trying to use -d or Devel::Trace with Coro to debug another error, but debugger itself fail in this place: ``` perl -d coro-trace.pl Loading DB routines from perl5db.pl version...
See https://news.ycombinator.com/item?id=15185383 Looking up COP's to find the error lines is inexact, slow and esp. 8% heavier than using less COP's and moving the opline to each op. I had...
The restricted flag seems to be gone after some splits, but does reappear. Not repro with cperl proper hashes. Storable does it's own hash creation. The failing test regression came...
See https://github.com/rurban/Coro/issues/1 FATAL: Coro SLF calls can only be made normally, not via goto or any other means,
Scan the arenas and free empty ones. The heads (PL_arenaroot), the bodies (PL_body_arenas and the PL_body_roots[type] free-list), The opslab's (CvSTART of all CVs) and ops are correctly freed via cv_undef,...
perl-5.003_02 added an incomplete op_const_sv to check an optree for a single const or pad, and to mark it as CvCONST then. 760ac839 Nothing much changed since then. This is...
returns the type(s) at compile-time. which is string or list of strings or a list of type expressions. currently the string comes from the stash name, but in the future...
See http://tech-blog.cv-library.co.uk/2017/08/31/perl-as-pid-1-under-docker/ linux treats PID 1 (init) esp. on shutdown, adding a 10 sec timeout (by the kernel). `docker run debian perl -E 'sleep 300' ^C [ waits 10s ]`...