Subject: | word plus newline for hash key displayed wrong (Data::Dump::Streamer bug) |
Date: | Thu, 11 Dec 2008 07:45:05 +0100 |
To: | bug-Data-Dump-Streamer [...] rt.cpan.org |
From: | "Zsbán Ambrus" <ambrus [...] math.bme.hu> |
Hello!
Data::Dump::Streamer displays hash keys that consist of a word and a
newline wrong. This was very confusing when I actually debugged a
program that had the newline there as an error.
$ perl -we 'use Data::Dump::Streamer; Dump({"a\n", "b"});'
$HASH1 = { a
=> 'b' };
$
(By the way, DDS still displays !1 wrong too.)
Ambrus