On Sep 27, 2008, at 12:37, Eric Wilhelm wrote:
FYI, I'm getting unexpected TODO passes on 5.10. This patch fixes it:That's odd. I'm not.+use Carp; +BEGIN {$SIG{__DIE__} = \&confess };I think we can omit that part?
Yeah, sorry.
# Text::ParseWords bug: - local $TODO = $low_TPW_version && ((keys %$test)[0] =~ m{\\\n}); + local $TODO = 'Text::ParseWords bug' + if $low_TPW_version && ((keys %$test)[0] =~ m{\\\n});That makes sense. Probably results in a better TODO message too.
Yep. Best, David