in reply to exports -- which module exports are used?
One of my scripts uses XML::Tidy, and gave me an unexpected result:
# use XML::Tidy(); # Not used?
So, I did some more poking at it:
$ perl -MXML::Tidy -le 'print $XML::Tidy::VERSION' 1.12.B55J2qn $ exports XML::Tidy Invalid version format (non-numeric data) at exports line ...
It points to the my $version = $mod->VERSION(); line. I'm not sure if there is anything that can be done about modules that use icky versions.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: exports -- which module exports are used? (XML::Tidy)
by tye (Sage) on Sep 16, 2013 at 18:39 UTC | |
by toolic (Bishop) on Sep 16, 2013 at 18:55 UTC |