perl5
perl5 copied to clipboard
🐪 The Perl programming language
On modern macOS the compiler defaults to '-Werror,-Wimplicit-function-declaration' This breaks the build on code which calls a function without a prototype (invalid in C99). Turning the check off with '-Wno-error=implicit-function-declaration'...
I wish to have a simple `atexit()` in `POSIX` because comparing to `END` blocks, `atext()` works better with `fork()`. `POSIX::atexit()` has been stay unimplemented as `END {}` blocks are the...
CPAN distribution [Tie-RefHash-Weak](https://metacpan.org/pod/Tie::RefHash::Weak) has begun to experience test failures on CPANtesters. Sample failure report: http://www.cpantesters.org/cpan/report/c2837ae0-5ce3-11ef-bb02-ec823e4a88bb Excerpt from failure output: ``` PERL_DL_NONLAZY=1 "/usr/home/jkeenan/testing/blead/bin/perl" "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness(0, 'blib/lib', 'blib/arch')"...
Migrated from [rt.perl.org#130997](https://rt-archive.perl.org/perl5/Ticket/Display.html?id=130997) (status was 'open') Searchable as RT130997$
**Description** Some of the built-in functions in `builtin::` crash when called via `goto &builtin::X`. This is (one of) the underlying issue(s) from #22528. I'm reporting it separately so it doesn't...
This fixes GH #22535 Unicode guarantees that \d code points occur in groups of 10 consecutive ones, with the lowest having a numeric value of 0 and the highest having...
Module: **Description** The Perl documentation states that, in a script run, any decimal digits must all come from "the same set of ten". Below is an example where they do...
It is a lot easier for a user to choose which function to use out of multiple similar ones when all such are combined into a single group and the...
perlapi and perlintern are divided into sections that partition the API elements into rough major categories of related functions. This causes an Index to be generated, a mapping from function...