diff options
Diffstat (limited to 'dist/Data-Dumper')
-rw-r--r-- | dist/Data-Dumper/Changes | 2 | ||||
-rw-r--r-- | dist/Data-Dumper/Dumper.pm | 4 | ||||
-rw-r--r-- | dist/Data-Dumper/Dumper.xs | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/dist/Data-Dumper/Changes b/dist/Data-Dumper/Changes index 1f319227a1..eca3bb9995 100644 --- a/dist/Data-Dumper/Changes +++ b/dist/Data-Dumper/Changes @@ -328,7 +328,7 @@ C<require 5.002>. MLDBM example removed (as its own module, it has a separate CPAN reality now). -Fixed bugs in handling keys with wierd characters. Perl can be +Fixed bugs in handling keys with weird characters. Perl can be tripped up in its implicit quoting of the word before '=>'. The fix: C<Data::Dumper::Purity>, when set, always triggers quotes around hash keys. diff --git a/dist/Data-Dumper/Dumper.pm b/dist/Data-Dumper/Dumper.pm index f426f3fb5f..5073be17c2 100644 --- a/dist/Data-Dumper/Dumper.pm +++ b/dist/Data-Dumper/Dumper.pm @@ -10,7 +10,7 @@ package Data::Dumper; BEGIN { - $VERSION = '2.156'; # Don't forget to set version and release + $VERSION = '2.157'; # Don't forget to set version and release } # date in POD below! #$| = 1; @@ -1419,7 +1419,7 @@ modify it under the same terms as Perl itself. =head1 VERSION -Version 2.156 (January 20 2014) +Version 2.157 (January 29 2014) =head1 SEE ALSO diff --git a/dist/Data-Dumper/Dumper.xs b/dist/Data-Dumper/Dumper.xs index 70b0c9281e..98b013baff 100644 --- a/dist/Data-Dumper/Dumper.xs +++ b/dist/Data-Dumper/Dumper.xs @@ -440,7 +440,7 @@ DD_dump(pTHX_ SV *val, const char *name, STRLEN namelen, SV *retval, HV *seenhv, if (!val) return 0; - /* If the ouput buffer has less than some arbitrary amount of space + /* If the output buffer has less than some arbitrary amount of space remaining, then enlarge it. For the test case (25M of output), *1.1 was slower, *2.0 was the same, so the first guess of 1.5 is deemed to be good enough. */ |