Subject: | Cwd does eval $VERSION |
The code for Cwd.pm does "eval $VERSION". I know of no useful reason to do so. Doing so
breaks B::C. Could this be removed in the next release please?
Subject: | patch.txt |
diff --git a/Cwd.pm b/Cwd.pm
index a5e2cda..bf51a32 100644
--- a/Cwd.pm
+++ b/Cwd.pm
@@ -173,7 +173,6 @@ use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION);
$VERSION = '3.31';
my $xs_version = $VERSION;
-$VERSION = eval $VERSION;
@ISA = qw/ Exporter /;
@EXPORT = qw(cwd getcwd fastcwd fastgetcwd);