NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
no test suite (Score:1)
Unfortunately,
If you call external code in the scope of the change (as E::NW does) this could be a problem. The workarounds are either to localise all oflocal $_isn't safe either. If$_is aliased to a member of a tied hash or array, it isn't localised properly and the value in the hash is affected as well:*_which, besides being ugly, clobbers@_as well, or to useforinstead of assigning to$_at all.fordoesn't suffer from this problem, and neither does 5.10'smy $_.Reply to This
Re: (Score:2)
Oh, nice catch. We've got local workarounds in place, but I'm happy to know that you've spotted more than I did :)