Subject: | Do not export functions only used internally |
perl -MTest::Deep -MData::Dumper -wle'print Dumper(blessed("foo"))'
gives:
$VAR1 = bless( {
'val' => 'foo'
}, 'Test::Deep::Blessed' );
what the? blessed() is not documented, so why am I getting one exported
into my namespace without being asked? (This obviously conflicts
horribly with Scalar::Util's version.)