Revision history for Safe-Isa
+ - comment blessed use so people who don't know perl stop trying to break it
+
1.000004 2013-09-18
- fixed slightly mangled metadata from last release
our $_call_if_object = sub {
my ($obj, $method) = (shift, shift);
+ # This is intentionally a truth test, not a defined test, otherwise
+ # we gratuitously break modules like Scalar::Defer, which would be
+ # un-perlish.
return unless blessed($obj);
return $obj->$method(@_);
};