Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Why eval $version?

by Haarg (Priest)
on Jul 10, 2020 at 10:20 UTC ( [id://11119131]=note: print w/replies, xml ) Need Help??


in reply to Why eval $version?

Other comments have covered various reasons why some code does eval $VERSION and other version number complications, but the local::lib test has some specific concerns. The test needs to be able to run with no non-core modules on perl versions going back to 5.6. This means tools like version.pm are not available to make the version comparisons easier. Additionally, the test needs to check the version of ExtUtils::MakeMaker, and several releases of perl shipped with versions of it that included underscores in the version.

So the intent is to convert a value like "6.57_05" into the number 6.5705 so that it can be compared numerically. This could be done in other ways to avoid using stringy eval, but given the use case there isn't really any danger from using an eval.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (2)
As of 2024-04-20 06:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found