Prune devel/py-EnthoughtBase
[dports.git] / devel / p5-Data-Dumper-Simple / pkg-descr
1 This module allow the user to dump variables in a Data::Dumper format.
2
3 Unlike the default behavior of Data::Dumper, the variables are named
4 (instead of $VAR1, $VAR2, etc.)  Data::Dumper provides an extended 
5 interface that allows the programmer to name the variables, but this
6 interface requires a lot of typing and is prone to tyops (sic).  This 
7 module fixes that.
8
9 Data::Dumper::Simple is actually a source filter that replaces all 
10 instances of Dumper($some, @args) in your code with a call to 
11 Data::Dumper->Dump(). You can use the one function provided to make 
12 dumping variables for debugging a trivial task.
13
14 Note that this is primarily a debugging tool. Data::Dumper offers a 
15 bit more than that, so don't expect this module to be more than it is.
16
17 WWW: http://search.cpan.org/dist/Data-Dumper-Simple/