snoopyjc / pythonizer

Automatic translator from Perl to Python
https://snoopyjc.org/pythonizer/
Artistic License 2.0
12 stars 1 forks source link

Implement use warnings FATAL => qw(numeric); #332

Closed snoopyjc closed 1 year ago

snoopyjc commented 1 year ago

Implement use warnings FATAL => qw(numeric);

Examples:

use warnings FATAL => qw(numeric);
use warnings FATAL => 'all'; 
use warnings FATAL => 'numeric'; 
use warnings 'FATAL';
snoopyjc commented 1 year ago

Implemented in 1.029