Skip Menu |

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

Report information
The Basics
Id: 54
Status: new
Priority: 0/
Queue: Data-Denter

People
Owner: Nobody in particular
Requestors: pdenis [...] fotango.com
Cc:
AdminCc:

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



Subject: Denter breaks with values containing ' => ' string
On perl v5.6.0 built for i686-linux The following code: ======================================== use Data::Denter; $var = { key => 'Ingy => JAPH'}; $dented = Denter($var); print Undent($dented); ======================================== produces: "Mismatched double quotes for value at line 2" at test.pl line 4 No problem however with this code: ======================================== use Data::Denter; $var = { key => 'Ingy =>JAPH'}; $dented = Denter($var); print Undent($dented); ======================================== or ======================================== use Data::Denter; $var = { key => 'Ingy=> JAPH'}; $dented = Denter($var); print Undent($dented); ========================================