Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

RE: RE: RE: CGI::Carp

by SuperCruncher (Pilgrim)
on Jul 09, 2000 at 01:31 UTC ( [id://21673]=note: print w/replies, xml ) Need Help??


in reply to RE: RE: CGI::Carp
in thread Reviews Quest

As far as I know, the use warnings pragma was introduced as:

- it is easier for people who are on non 'shebang supporting' systems to use.
- it can be disabled for certain blocks etc. Here's an introduction to the new pragma from the What's new in Perl 5.6 page:

Lexical Warnings

'Death is not good. I reject death. I will stay away from trucks today.' - lwall

The way Perl generates warnings has also been completely revised: as a replacement for the -w flag and the $^W special variable, the warnings pragma gives you more flexibility about what warnings you receive and when. In terms of what, you can now specify warnings by category: there are a bunch of standard categories, such as 'syntax', 'io', 'void', and modules will be able to define their own categories. You can also choose to escalate any categories of warning into a fatal error. As for when, the pragma is lexically scoped, so you can switch it on and off as you wish:

use warnings; $a = @a[1]; # This generates a warning. { no warnings; $a = @a[1]; # This does not. }
See perllexwarn for how to use this from programs and modules.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://21673]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (2)
As of 2024-04-19 01:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found