in reply to Re^5: XML::Writer oddness
in thread XML::Writer oddness
After that, $doc is still a blessed object (although $copy isn't). From this, I conclude that I don't understand symbol tables. Why doesn't it work to undef everything about $doc? (For that matter, why isn't $copy a blessed object?) Is there a way to "unbless" $doc and to remove its object flag after it has been mucked with by XML::Writer?my $copy = $doc; undef *doc; $doc = $copy;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: XML::Writer oddness
by shmem (Chancellor) on Feb 25, 2010 at 22:35 UTC | |
|
Re^7: XML::Writer oddness
by ikegami (Patriarch) on Feb 25, 2010 at 23:37 UTC |