diff options
author | Tony Cook <tony@develop-help.com> | 2014-12-15 09:45:23 +1100 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2014-12-15 09:45:23 +1100 |
commit | aef2570ad686f1ac94b680892cc214705101ce8b (patch) | |
tree | 5669b02094c2e47bcea289c96569c37e9453fb22 /dist/Data-Dumper | |
parent | 19606b446b40d13c00d4dac8f89bd25bc6c48f5c (diff) | |
download | perl-aef2570ad686f1ac94b680892cc214705101ce8b.tar.gz |
Useqq no longer forces use of the pure-perl Data::Dumper
Diffstat (limited to 'dist/Data-Dumper')
-rw-r--r-- | dist/Data-Dumper/Dumper.pm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/dist/Data-Dumper/Dumper.pm b/dist/Data-Dumper/Dumper.pm index b54ff582b5..6c4639956d 100644 --- a/dist/Data-Dumper/Dumper.pm +++ b/dist/Data-Dumper/Dumper.pm @@ -1025,9 +1025,7 @@ $Data::Dumper::Useqq I<or> I<$OBJ>->Useqq(I<[NEWVAL]>) When set, enables the use of double quotes for representing string values. Whitespace other than space will be represented as C<[\n\t\r]>, "unsafe" characters will be backslashed, and unprintable characters will be output as -quoted octal integers. Since setting this variable imposes a performance -penalty, the default is 0. C<Dump()> will run slower if this flag is set, -since the fast XSUB implementation doesn't support it yet. +quoted octal integers. The default is 0. =item * @@ -1391,8 +1389,8 @@ to have, you can use the C<Seen> method to pre-seed the internal reference table and make the dumped output point to them, instead. See L</EXAMPLES> above. -The C<Useqq> and C<Deparse> flags makes Dump() run slower, since the -XSUB implementation does not support them. +The C<Deparse> flag makes Dump() run slower, since the XSUB +implementation does not support it. SCALAR objects have the weirdest looking C<bless> workaround. |