summaryrefslogtreecommitdiff
path: root/dist/Data-Dumper
Commit message (Collapse)AuthorAgeFilesLines
* bump version of many modulesZefram2010-12-191-2/+2
| | | | | Core-only modules that have changed from v5.13.7, and dual-life modules that have changed from v5.13.7 and didn't show up in earlier passes.
* fix various compiler warnings from XS codeZefram2010-12-111-1/+1
| | | | | | | | | | | Trivial changes to fix warnings of types * unclear precedence * assignment as conditional * signed/unsigned mixing * unused parameter/variable * value computed not used * wrong argument type for a printf format * variable may be used uninitialised (due to unhandled switch case)
* Bump Data::Dumper version as previous commit made a changeChris 'BinGOs' Williams2010-11-201-1/+1
|
* Fix the test fix for older perls (5499dc3d6e47ea78). We're still on 5.13.6Nicholas Clark2010-11-201-1/+1
|
* Skip [perl #72332] DD test on 5.10.1Father Chrysostomos2010-11-191-3/+6
| | | | | | | $ perl5.10.1 -le 'print *{*STDERR{IO}}' Bus error That crash is beyond DD’s control, so the test should be skipped.
* Fix Data::Dumper test on old perlsSteffen Mueller2010-11-201-1/+3
|
* Update Data::Dumper’s change logFather Chrysostomos2010-11-111-1/+5
|
* Increase Data::Dumper’s versionFather Chrysostomos2010-11-111-2/+2
|
* Fix an out of bounds write in Data-Dumper with malformed utf8 inputNiko Tyni2010-11-072-2/+18
| | | | | | When warnings are enabled and Dumper() is called with an invalid utf8 string that still has the UTF8 flag on, esc_q_utf8() miscounts the size of the escaped string.
* Set Data::Dumper’s release date to that of perl 5.13.6Father Chrysostomos2010-10-181-1/+1
| | | | just in case 5.13.6 is released before the next CPAN release of DD.
* Remove a wrong +x bitFlorian Ragwitz2010-09-281-0/+0
|
* [perl #74798] test Data::Dumper with all latin1 charactersSlaven Rezic2010-09-271-2/+29
|
* Data::Dumper version bump and perldeltaFather Chrysostomos2010-09-262-2/+7
|
* $ perl5.6.2 -MData::Dumper -le' Data::Dumper->Dumpxs([*{*STDERR{IO}}])'Father Chrysostomos2010-09-262-2/+7
| | | | | | | Bus error Same in 5.11.4. This is related to bug 71254. It turns out that globs *can* stringify emptily (see bug 65582). This patch makes DD more resilient.
* Add (?^...) regex constructKarl Williamson2010-09-201-1/+1
| | | | | | | | | | | | | | | | | | This adds (?^...) to signify to use the default regex modifiers for the cluster or embedded pattern-match modifier change. The major purpose of this is to simplify regex stringification, so that "^" is output in place of "-xism". As a result, the stringification will not change in the future when new regex modifiers are added, so tests, etc. that rely on a particular stringification will have to change now, but never again. Code that needs to work properly with both old- and new-style regexes can use something like the following: # Accept both old and new-style stringification my $modifiers = (qr/foobar/ =~ /\Q(?^/) ? '^' : '-xism'; This construct is Ben Morrow's idea.
* Upgrade Data::Dumper to 2.128Steffen Mueller2010-09-102-2/+16
|
* rt74170: test case that triggered the problemFather Chrysostomos2010-09-062-1/+153
|
* rt74170: handle the stack changing in the custom sort functionsTony Cook2010-09-061-0/+2
| | | | | Based on work by Father Chrysostomos <sprout@cpan.org>, but all my fault.
* Upgrade Data::Dumper to 2.126 CPAN releaseSteffen Mueller2010-04-152-2/+8
| | | | No significant changes, just synchronization to the exact release.
* Fix Data::Dumper's Fix Terse(1) + Indent(2)Michael G. Schwern2010-04-153-3/+25
| | | | | RT #73604: When $Data::Dumper::Terse is true, the indentation is thrown off. It appears to be acting as if the $VAR1 = is still there.
* Move Data::Dumper from ext/ to dist/Nicholas Clark2009-09-2910-0/+4554