Skip Menu |

This queue is for tickets about the Fault CPAN distribution.

Report information
The Basics
Id: 119026
Status: new
Priority: 0/
Queue: Fault

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.01-2
Fixed in: (no value)



Subject: POSIX::isdigit() was removed
POSIX::isdigit() was removed in newer perl versions, but it seems to be used in your distribution, see: https://metacpan.org/source/DALEAMON/Fault-1.01-2/lib/Fault/Logger.pm#L160 perldoc POSIX says: "isdigit" This function has been removed as of v5.24. It was very similar to matching against "qr/ ^ [[:digit:]]+ $ /x", which you should convert to use instead. See "POSIX Character Classes" in
On 2016-11-28 17:04:09, SREZIC wrote: Show quoted text
> POSIX::isdigit() was removed in newer perl versions, but it seems to > be used in your distribution, see: > https://metacpan.org/source/DALEAMON/Fault-1.01- > 2/lib/Fault/Logger.pm#L160 > > perldoc POSIX says: > > "isdigit" > This function has been removed as of v5.24. It was very > similar > to matching against "qr/ ^ [[:digit:]]+ $ /x", which you > should > convert to use instead. See "POSIX Character Classes" in >
POSIX::isprint() was also removed, and is also used in your distribution.