The behaviour you are seeing is actually a feature of Data::Dumper - the $VAR1->{'polished_data'}{'start'} is simply pointing to the first occurrence of what is exactly the same thing. It does this with all references:
use Data::Dumper; use Time::Piece; my $tp = gmtime; my @array = (200,400); my $data = { 'one' => { 'tp' => $tp, 'array' => \@array, }, 'two' => { 'tp' => $tp, 'array' => \@array, }, }; print Dumper $data; Output: $VAR1 = { 'one' => { 'array' => [ [ 200, 400 ] ], 'tp' => bless( [ 35, 2, 2, 24, 2, '116', 4, 83, 0, 1458784955, 0 ], 'Time::Piece' ) }, 'two' => { 'array' => $VAR1->{'one'}{'array'}, 'tp' => $VAR1->{'one'}{'tp'} } };
To prevent it from doing that you can set Deepcopy:
use Data::Dumper; $Data::Dumper::Deepcopy = 1; ... Output: $VAR1 = { 'one' => { 'array' => [ [ 200, 400 ] ], 'tp' => bless( [ 48, 10, 2, 24, 2, '116', 4, 83, 0, 1458785448, 0 ], 'Time::Piece' ) }, 'two' => { 'array' => [ [ 200, 400 ] ], 'tp' => bless( [ 48, 10, 2, 24, 2, '116', 4, 83, 0, 1458785448, 0 ], 'Time::Piece' ) } };

In reply to Re: Very odd behavior assigning Time::Piece object to hash reference inside of an object by tangent
in thread Very odd behavior assigning Time::Piece object to hash reference inside of an object by nysus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.