Data-Printer icon indicating copy to clipboard operation
Data-Printer copied to clipboard

colored pretty-print of Perl data structures and objects

Results 36 Data-Printer issues
Sort by recently updated
recently updated
newest added

Hi there. With tied hashes, the output appears to be incorrect. I've included a `_data_printer` method in my class and all values are reported as being the same as the...

The documentation in lib/Data/Printer.pm and lib/Data/Printer/Object.pm both say that `show_unicode` is on by default. But that is not true. The code in the latter file explicitly defaults the value to...

I'm getting messages like this `Character in 'H' format wrapped in unpack at ... line 14.` when the data has wide characters (obtained from decoding JSON web content). I think...

Sorry I don't have time for a proper bug report or PR right now, but I think we need a line like `return '' unless defined $_[1];` on line 795...

Creating my own theme, I discovered that if using SGR escape sequences for the 'escaped' key in the hash returned from colors, like so: `escaped => "\e[38;5;172;1;3;4;7m",` the additional attributes...

You may or maynot be aware of [Object::Pad](https://metacpan.org/pod/Object::Pad) - in brief it's an experimental syntax module in preparation of a true in-core object system. As part of the periphery around...

DDP is not updated via `carton` How to reproduce: add into `cpanfile` : requires 'DDP' $ carton update DDP should have a `$VERSION`

I love the DB filter for showing DBIC Rows. One thing that could be added is to show prefetched relations. Right now, it just shows the parent row. I'll try...

Pull request #74 had a dependency on the [PPI](https://metacpan.org/pod/PPI) module which made its inclusion into `master` not so attractive for users not using the feature. By refactoring the part of...

Here is my .dataprinter: ``` { use_prototypes => 0, } ``` And here is the test script: ``` perl #!/usr/bin/perl use DDP; foreach (1..2) { p; p $_; } ```...

wishlist