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,