I didn't expect these results of using Data::Dumper (with Useperl(1)) and
Clone::clone together. This snippet:
#!/usr/bin/perl -w
use strict;
use Clone;
use Data::Dumper;
printf "Clone: %s Data::Dumper %s\n",
$Clone::VERSION,
$Data::Dumper::VERSION;
my $orig = {
# This could be arbitrariliy complicated/nested
# - this suffices for a demo
# of the probem
'array' => [ 1,2,3 ]
};
# Put it throught Data::Dumper with Userperl(1);
my $d = Data::Dumper->new([$orig]);
$d->Useperl(1);
$d->Dump();
# Make a clone - it should be identical, I guess
my $clone = Clone::clone($orig);
# See that the clone has a different structure in array
# (length of $$clone{array} is 0)
printf "orig: %d clone %d\n",
scalar(@{$$orig{array}}),
scalar(@{$$clone{array}});
Produces this output:
Clone: 0.29 Data::Dumper 2.121_14
orig: 3 clone 0
I would have expected
Clone: 0.29 Data::Dumper 2.121_14
orig: 3 clone 3
Since the orig and the clone should have been identical. Right?
Is there a bug here? Where?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.