Skip Menu |

This queue is for tickets about the Data-Dump CPAN distribution.

Report information
The Basics
Id: 6604
Status: resolved
Priority: 0/
Queue: Data-Dump

People
Owner: Nobody in particular
Requestors: john [...] newchester.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Interaction with Tie::StrictHash
use Tie::StrictHash; use Data::Dump; my $item = { a => foo, b => bar, }; my $dumped = Data::Dump::dump($item)."\n"; print "Before strict hash: $dumped"; $dumped !~ /bar/ and die "No bug here"; strict_hash %$item; ###After strict hash. $dumped = Data::Dump::dump($item); print "After strict hash: $dumped"; $dumped !~ /bar/ and die "There's a bug here";