in reply to Re: Say it isn't so, -MO=Deparse!
in thread Say it isn't so, -MO=Deparse!

Well this can't be good.
$ perl -le '$_ = ($x) = (4, 5, 6); print' 3 $ perl -le '($_ = ($x = (4, 5, 6))); print($_)' 6 $ perl -MO=Deparse,-p -le '$_ = ($x) = (4, 5, 6); print' BEGIN { $/ = "\n"; $\ = "\n"; } ($_ = (($x) = (4, 5, 6))); print($_); -e syntax OK $ perl -v This is perl, v5.8.3 built for i586-linux-thread-multi
I would like to upgrade, but this is a managed system..

Replies are listed 'Best First'.
Re^3: Say it isn't so, -MO=Deparse!
by ysth (Canon) on Apr 04, 2005 at 10:01 UTC
    I would like to upgrade, but this is a managed system
    No need, your perl doesn't have the bug. I'm guessing you misunderstood some part of what I said above, but can't guess which part.