Skip Menu |

This queue is for tickets about the HTML-Perlinfo CPAN distribution.

Report information
The Basics
Id: 78637
Status: resolved
Priority: 0/
Queue: HTML-Perlinfo

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

Bug Information
Severity: Normal
Broken in: 1.62
Fixed in: 1.64



Subject: Use of qw(...) as parentheses is deprecated
The current version of perl, 5.16.0 issues a warning 'Use of qw(...) as parentheses is deprecated' when seeing a construct like $self->has qw(mp) which must now be written as $self->has( qw(mp) ) In the next version of perl this deprecation will become an error. In current bleadperl since commit v5.16.0-235-g417a992 this is already implemented and breaks ACCARDO/HTML-Perlinfo-1.62.tar.gz. HTH&&Thanks&&Regards,
Fixed in version 1.64. Thank you for the report. On Sun Jul 29 05:18:13 2012, ANDK wrote: Show quoted text
> The current version of perl, 5.16.0 issues a warning 'Use of qw(...) as > parentheses is deprecated' when seeing a construct like > > $self->has qw(mp) > > which must now be written as > > $self->has( qw(mp) ) > > In the next version of perl this deprecation will become an error. In > current bleadperl since commit v5.16.0-235-g417a992 > this is already implemented and breaks ACCARDO/HTML-Perlinfo-1.62.tar.gz. > > HTH&&Thanks&&Regards,