Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Devel-StackTrace CPAN distribution.

Report information
The Basics
Id: 32583
Status: resolved
Priority: 0/
Queue: Devel-StackTrace

People
Owner: Nobody in particular
Requestors: jdhedden [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.15
Fixed in: 1.16



Subject: wantarray is now boolean
Change 33022 in blead changes wantarray to return a boolean instead of a number. The attached patch fixes a test that the above change breaks.
Subject: dst.patch
--- t/01-basic.t +++ t/01-basic.t @@ -46,7 +46,7 @@ is( $f[0]->hasargs, 1, "First frame hasargs should be true" ); - is( $f[0]->wantarray, 0, + ok(! $f[0]->wantarray, "First frame wantarray should be false" ); my $trace_text = <<"EOF";
Thanks, the patch is now also available as ANDK/patches/Devel-StackTrace-1.15-JDHEDDEN-01.patch.gz