perl5
perl5 copied to clipboard
🐪 The Perl programming language
When `Perl_newSV_type` became an inline function, the idea was that using it to create a specific type known at compile time should result in the call being completely inlined into...
As it's not required to pre-allocate PL_strtab hash before perl_construct() and PL_strtab is not initialized with NULL by default, SIGSEGV could happen in certain circumstances. Particularly, when application links libperl...
Ever since threads and SMP motherboards were invented, C's grammer token errno has been a function call returning an int * and not a extern "C" global data variable. Whether...
Note: this is an (extended) replacement for https://github.com/Perl/perl5/pull/22745 These commits: * Change `Perl_op_scope` so that a bare `OP_STUB` is not wrapped in an `OP_ENTER/OP_LEAVE` pair. * Change `Perl_rpeep` to remove...
Module: NOT!!!! Config.pm **Description** https://github.com/Perl/perl5/issues/21135 "Errno archname/osvers too strict. " I know this bug ticket is closed, but I totally disagree with this fix. $Config{archname} and $Config{osvers} should be be...
This is a manual merge of the `perl541*delta.pod` files in preparation for the 5.42.0 release. Review and comments (especially about omissions and inconsistencies) are very welcome. We wonder if the...
Migrated from [rt.perl.org#75740](https://rt-archive.perl.org/perl5/Ticket/Display.html?id=75740) (status was 'open') Searchable as RT75740$
It would be nice to have a script that merged all the dev releases perldeltas into the perldelta for the stable release. This of course, does not preclude the editorial...
**Description** Compiling the string "\c\\" (double-quote backslash c backlash double-quote) fails. I expect it to produce a one-character string. In ASCII/UTF-8 `ord "\c\"` should be `0x1c` (28.). Adding another character...
`Perl_more_bodies` allocates and sets up a new arena for the likes of SV body, HE, and HVAUX structs. It has traditionally been called with three arguments: * the `svtype` *...