data-dump
data-dump copied to clipboard
A Perl module for pretty printing of data structures
This is the continuation of issue #2. I've sorted out the issues previously mentioned. 1. Comment '# tied Class' now not shown in single-line dumps. 2. Tests added for comment...
A trivial patch to let the user change the size an object may grow to before it gets wrapped. I left the default at 60 from your code, but changed...
The Perl interpreter does not place any restrictions on class names. However, class names with an '=' sign cause Data::Dump to issue a warning such as: ``` Can't handle >Table2|t2=HASH...
Here is alternative fix for RT#86592, which uses Scalar::Util looks_like_number to do not change the output. B is still used for tests.
Hi I am using Data::Dump v1.23 and found issue that Data::Dump::dump sliently changes string to integer to cause YAML dump print incorrect result. Here are the example code ``` perl...
I have following "test-script.pl": ``` use Data::Dump "pp"; use JSON "to_json"; my $a = ["12"]; print "ORIG 1: ", to_json($a), "\n"; print "PP: ", pp($a), "\n"; print "ORIG 2: ",...
Regex objects (like qr/Foo/) are kind of special in Perl because they have a REGEXP reftype but are blessed into "Regexp" package. That means it is not desirable to dump...
This is not meant to be merged yet, but a first step in the direction of outputting utf8 directly if it is available. Not sure if some non-printable characters need...